diff options
author | Michael Imhof <tantive@gentoo.org> | 2002-09-10 21:14:21 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2002-09-10 21:14:21 +0000 |
commit | 07cd7a5bbdcc9b8112928cb497e8e2d6a04cdeaf (patch) | |
tree | 15e246c779c92ef4bef9a16bf1cde894069ceb2e /sys-kernel | |
parent | Masked usermode-sources-2.4.19 (diff) | |
download | gentoo-2-07cd7a5bbdcc9b8112928cb497e8e2d6a04cdeaf.tar.gz gentoo-2-07cd7a5bbdcc9b8112928cb497e8e2d6a04cdeaf.tar.bz2 gentoo-2-07cd7a5bbdcc9b8112928cb497e8e2d6a04cdeaf.zip |
Version bumped
Diffstat (limited to 'sys-kernel')
5 files changed, 153 insertions, 1 deletions
diff --git a/sys-kernel/usermode-sources/ChangeLog b/sys-kernel/usermode-sources/ChangeLog index e9d25005454b..afc7d6c1bff8 100644 --- a/sys-kernel/usermode-sources/ChangeLog +++ b/sys-kernel/usermode-sources/ChangeLog @@ -1,6 +1,18 @@ # ChangeLog for sys-kernel/usermode-sources # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/ChangeLog,v 1.3 2002/07/23 13:23:13 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/ChangeLog,v 1.4 2002/09/10 21:14:21 tantive Exp $ + + + +*usermode-sources-2.4.19-r2 (10 Sep 2002) + + 10 Sep 2002; Michael Imhof <tantive@gentoo.org> + Version bumped, including um-patch-2.4.19-2 + +*usermode-sources-2.4.19-r1 (10 Sep 2002) + + 10 Sep 2002; Michael Imhof <tantive@gentoo.org> + Version bumped, including um-patch-2.4.19-1 *usermode-sources-2.4.18-r2 (23 Jul 2002) diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r1 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r1 new file mode 100644 index 000000000000..70d8177085c5 --- /dev/null +++ b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r1 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 b95b93c1e31724fbb19465d2191e131a uml-patch-2.4.19-1.bz2 141738 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r2 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r2 new file mode 100644 index 000000000000..323e4ceee4ac --- /dev/null +++ b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r2 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 8ed58b46be26365c8bab48c3b65ab724 uml-patch-2.4.19-2.bz2 140639 diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r1.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r1.ebuild new file mode 100644 index 000000000000..a36ccec74849 --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r1.ebuild,v 1.1 2002/09/10 21:14:21 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} +# +# 2002-09-10 Michael Imhof <tantive@gentoo.org> +# Version bumped to 2.4.19-1 +# +# +UML_PATCH="uml-patch-${PV}-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" + +#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-r2.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r2.ebuild new file mode 100644 index 000000000000..6ff6cca1eec6 --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r2.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r2.ebuild,v 1.1 2002/09/10 21:14:21 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} +# +# 2002-09-10 Michael Imhof <tantive@gentoo.org> +# Version bumped to 2.4.19-2 +# +# +UML_PATCH="uml-patch-${PV}-2" +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" + +#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 +} + + |