diff options
author | Guy Martin <gmsoft@gentoo.org> | 2003-05-10 18:40:07 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2003-05-10 18:40:07 +0000 |
commit | 0b8e37557fed9d5c00c94e6f1fc7a811355f76c1 (patch) | |
tree | 3c750ee1291d5d2f9d72e7761d5e067bc532e415 /sys-kernel | |
parent | Add comments and tkinter function. also deprecating mydoc in favour of DOCS. (diff) | |
download | gentoo-2-0b8e37557fed9d5c00c94e6f1fc7a811355f76c1.tar.gz gentoo-2-0b8e37557fed9d5c00c94e6f1fc7a811355f76c1.tar.bz2 gentoo-2-0b8e37557fed9d5c00c94e6f1fc7a811355f76c1.zip |
Incremented patch level. This fix SMP build.
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/hppa-sources/ChangeLog | 9 | ||||
-rw-r--r-- | sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.20_p35 | 2 | ||||
-rw-r--r-- | sys-kernel/hppa-sources/hppa-sources-2.4.20_p35.ebuild | 36 |
3 files changed, 45 insertions, 2 deletions
diff --git a/sys-kernel/hppa-sources/ChangeLog b/sys-kernel/hppa-sources/ChangeLog index b5dc66f2b880..0869abf86ee4 100644 --- a/sys-kernel/hppa-sources/ChangeLog +++ b/sys-kernel/hppa-sources/ChangeLog @@ -1,10 +1,15 @@ # ChangeLog for sys-kernel/hppa-sources # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hppa-sources/ChangeLog,v 1.6 2003/04/09 00:28:43 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hppa-sources/ChangeLog,v 1.7 2003/05/10 18:40:07 gmsoft Exp $ + +*hppa-sources-2.4.20_35 (10 May 2003) + + 10 May 2003; Guy Martin <gmsoft@gentoo.org> hppa-sources-2.4.20_p35.ebuild : + Incremented patch level. This fix SMP build. *hppa-sources-2.4.20_32 (09 Apr 2003) - 09 Apr 2003; Guy Martin <gmsoft@gentoo.org> hppa-sources-2.4.20_p27.ebuild : + 09 Apr 2003; Guy Martin <gmsoft@gentoo.org> hppa-sources-2.4.20_p32.ebuild : Incremented patch level. Marked stable. Done some improvements in the ebuild. *hppa-sources-2.4.20_p27 (19 Feb 2003) diff --git a/sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.20_p35 b/sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.20_p35 new file mode 100644 index 000000000000..aff9b140fb7b --- /dev/null +++ b/sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.20_p35 @@ -0,0 +1,2 @@ +MD5 c439d5c93d7fc9a1480a90842465bb97 linux-2.4.20.tar.bz2 27421046 +MD5 7fcc443c30ad35218428dc0e3ab0f843 patch-2.4.20-pa35.diff.gz 761011 diff --git a/sys-kernel/hppa-sources/hppa-sources-2.4.20_p35.ebuild b/sys-kernel/hppa-sources/hppa-sources-2.4.20_p35.ebuild new file mode 100644 index 000000000000..04db685d8858 --- /dev/null +++ b/sys-kernel/hppa-sources/hppa-sources-2.4.20_p35.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hppa-sources/hppa-sources-2.4.20_p35.ebuild,v 1.1 2003/05/10 18:40:07 gmsoft Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +ETYPE="sources" +inherit kernel +OKV="${PV/_p*/}" +PATCH_LEVEL="${PV/${OKV}_p/}" +KV=${OKV}-pa${PATCH_LEVEL} +EXTRAVERSION="-pa${PATCH_LEVEL}" +S=${WORKDIR}/linux-${KV} + +# What's in this kernel? + +# INCLUDED: +# stock 2.4.20 kernel sources +# patches for hppa + +DESCRIPTION="Full sources for the Linux kernel with patch for hppa" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://ftp.parisc-linux.org/cvs/patch-${KV}.diff.gz" +HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/ http://parisc-linux.org" +KEYWORDS="hppa -*" +SLOT="${KV}" + + +src_unpack() { + unpack linux-${OKV}.tar.bz2 + mv ${WORKDIR}/linux-${OKV} ${WORKDIR}/linux-${KV} + cd ${S} + unpack patch-${KV}.diff.gz + patch -p 1 < ${S}/patch-${KV}.diff + + + kernel_universal_unpack +} |