diff options
author | Michael Imhof <tantive@gentoo.org> | 2002-10-25 17:46:47 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2002-10-25 17:46:47 +0000 |
commit | 32b4a8cba28211fcc6b4b11a22f24137e578d901 (patch) | |
tree | e96357a1089045e245bfeec5bb6b559a9afbf16b /sys-kernel/usermode-sources | |
parent | #9278 debacle (diff) | |
download | historical-32b4a8cba28211fcc6b4b11a22f24137e578d901.tar.gz historical-32b4a8cba28211fcc6b4b11a22f24137e578d901.tar.bz2 historical-32b4a8cba28211fcc6b4b11a22f24137e578d901.zip |
Version bumped. Please test.
Diffstat (limited to 'sys-kernel/usermode-sources')
8 files changed, 260 insertions, 0 deletions
diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r17 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r17 new file mode 100644 index 000000000000..99d61f3fad7d --- /dev/null +++ b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r17 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 84c6e48ccbdb607cd975138324a7a3e6 uml-patch-2.4.19-17.bz2 151933 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r18 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r18 new file mode 100644 index 000000000000..3aaa689d4041 --- /dev/null +++ b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r18 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 2040d41fe2752237f9899f316652b9ef uml-patch-2.4.19-18.bz2 167508 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r19 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r19 new file mode 100644 index 000000000000..dac0e0cab3ee --- /dev/null +++ b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r19 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 27f23bf05b5b19358f19d97a3dcb543c uml-patch-2.4.19-19.bz2 158455 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r20 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r20 new file mode 100644 index 000000000000..26ee541a3794 --- /dev/null +++ b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r20 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 081f0e090b037e1ed3f64f643865db22 uml-patch-2.4.19-20.bz2 158696 diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r17.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r17.ebuild new file mode 100644 index 000000000000..2a5205e25d5c --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r17.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r17.ebuild,v 1.1 2002/10/25 17:46:46 tantive Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +#we use this next variable to avoid duplicating stuff on cvs +GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files +OKV=${PV} +KV=${PVR} +UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\+:\1:'`" +S=${WORKDIR}/linux-${KV} + +# What's in this kernel? + +# INCLUDED: +# User mode linux patch +# http://user-mode-linux.sourceforge.net +# UML clashes with the current Gentoo patch, so I've ignored it for now. + +DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" +HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 -ppc -sparc -sparc64 -alpha" + +#console-tools is needed to solve the loadkeys fiasco. +#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. +DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" +RDEPEND=">=sys-libs/ncurses-5.2" + +[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" + +src_unpack() { + + cd ${WORKDIR} + unpack linux-${OKV}.tar.bz2 + mv linux-${OKV} linux-${KV} || die + cd ${S} + bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 + echo "Preparing for compilation..." + + #fix silly permissions in tarball + cd ${WORKDIR} + chown -R 0.0 * + chmod -R a+r-w+X,u+w * + +} + +src_compile() { + echo "Nothing to compile. That's up to the user" +} + +src_install() { + dodir /usr/src/uml + cd ${S} + echo ">>> Copying sources..." + mv ${WORKDIR}/* ${D}/usr/src/uml + cd ${D}/usr/src/uml + ln -sf linux-${KV} linux +} + + diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r18.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r18.ebuild new file mode 100644 index 000000000000..e05bdf10d3ed --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r18.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r18.ebuild,v 1.1 2002/10/25 17:46:46 tantive Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +#we use this next variable to avoid duplicating stuff on cvs +GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files +OKV=${PV} +KV=${PVR} +UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\+:\1:'`" +S=${WORKDIR}/linux-${KV} + +# What's in this kernel? + +# INCLUDED: +# User mode linux patch +# http://user-mode-linux.sourceforge.net +# UML clashes with the current Gentoo patch, so I've ignored it for now. + +DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" +HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 -ppc -sparc -sparc64 -alpha" + +#console-tools is needed to solve the loadkeys fiasco. +#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. +DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" +RDEPEND=">=sys-libs/ncurses-5.2" + +[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" + +src_unpack() { + + cd ${WORKDIR} + unpack linux-${OKV}.tar.bz2 + mv linux-${OKV} linux-${KV} || die + cd ${S} + bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 + echo "Preparing for compilation..." + + #fix silly permissions in tarball + cd ${WORKDIR} + chown -R 0.0 * + chmod -R a+r-w+X,u+w * + +} + +src_compile() { + echo "Nothing to compile. That's up to the user" +} + +src_install() { + dodir /usr/src/uml + cd ${S} + echo ">>> Copying sources..." + mv ${WORKDIR}/* ${D}/usr/src/uml + cd ${D}/usr/src/uml + ln -sf linux-${KV} linux +} + + diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r19.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r19.ebuild new file mode 100644 index 000000000000..5126ea7a44d1 --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r19.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r19.ebuild,v 1.1 2002/10/25 17:46:46 tantive Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +#we use this next variable to avoid duplicating stuff on cvs +GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files +OKV=${PV} +KV=${PVR} +UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\+:\1:'`" +S=${WORKDIR}/linux-${KV} + +# What's in this kernel? + +# INCLUDED: +# User mode linux patch +# http://user-mode-linux.sourceforge.net +# UML clashes with the current Gentoo patch, so I've ignored it for now. + +DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" +HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 -ppc -sparc -sparc64 -alpha" + +#console-tools is needed to solve the loadkeys fiasco. +#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. +DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" +RDEPEND=">=sys-libs/ncurses-5.2" + +[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" + +src_unpack() { + + cd ${WORKDIR} + unpack linux-${OKV}.tar.bz2 + mv linux-${OKV} linux-${KV} || die + cd ${S} + bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 + echo "Preparing for compilation..." + + #fix silly permissions in tarball + cd ${WORKDIR} + chown -R 0.0 * + chmod -R a+r-w+X,u+w * + +} + +src_compile() { + echo "Nothing to compile. That's up to the user" +} + +src_install() { + dodir /usr/src/uml + cd ${S} + echo ">>> Copying sources..." + mv ${WORKDIR}/* ${D}/usr/src/uml + cd ${D}/usr/src/uml + ln -sf linux-${KV} linux +} + + diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild new file mode 100644 index 000000000000..0502d3cd08ea --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild,v 1.1 2002/10/25 17:46:46 tantive Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +#we use this next variable to avoid duplicating stuff on cvs +GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files +OKV=${PV} +KV=${PVR} +UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\+:\1:'`" +S=${WORKDIR}/linux-${KV} + +# What's in this kernel? + +# INCLUDED: +# User mode linux patch +# http://user-mode-linux.sourceforge.net +# UML clashes with the current Gentoo patch, so I've ignored it for now. + +DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" +HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 -ppc -sparc -sparc64 -alpha" + +#console-tools is needed to solve the loadkeys fiasco. +#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. +DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" +RDEPEND=">=sys-libs/ncurses-5.2" + +[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" + +src_unpack() { + + cd ${WORKDIR} + unpack linux-${OKV}.tar.bz2 + mv linux-${OKV} linux-${KV} || die + cd ${S} + bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 + echo "Preparing for compilation..." + + #fix silly permissions in tarball + cd ${WORKDIR} + chown -R 0.0 * + chmod -R a+r-w+X,u+w * + +} + +src_compile() { + echo "Nothing to compile. That's up to the user" +} + +src_install() { + dodir /usr/src/uml + cd ${S} + echo ">>> Copying sources..." + mv ${WORKDIR}/* ${D}/usr/src/uml + cd ${D}/usr/src/uml + ln -sf linux-${KV} linux +} + + |