diff options
author | Bryon Roche <kain@gentoo.org> | 2003-02-12 04:32:50 +0000 |
---|---|---|
committer | Bryon Roche <kain@gentoo.org> | 2003-02-12 04:32:50 +0000 |
commit | 00a1483855ea94c173fba4e1b8c70931c0a13bc6 (patch) | |
tree | 97d1414512dc179043dd27feb65ad6809120a456 | |
parent | Update Copyright years (diff) | |
download | historical-00a1483855ea94c173fba4e1b8c70931c0a13bc6.tar.gz historical-00a1483855ea94c173fba4e1b8c70931c0a13bc6.tar.bz2 historical-00a1483855ea94c173fba4e1b8c70931c0a13bc6.zip |
New PPC kernel
-rw-r--r-- | sys-kernel/ppc-sources/ChangeLog | 10 | ||||
-rw-r--r-- | sys-kernel/ppc-sources/files/digest-ppc-sources-2.4.20-r3 | 2 | ||||
-rw-r--r-- | sys-kernel/ppc-sources/ppc-sources-2.4.20-r3.ebuild | 44 |
3 files changed, 55 insertions, 1 deletions
diff --git a/sys-kernel/ppc-sources/ChangeLog b/sys-kernel/ppc-sources/ChangeLog index d69a7aeb1b20..614b0e07b485 100644 --- a/sys-kernel/ppc-sources/ChangeLog +++ b/sys-kernel/ppc-sources/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for sys-kernel/ppc-sources # Copyright 2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ppc-sources/ChangeLog,v 1.16 2003/02/10 16:33:05 doctomoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ppc-sources/ChangeLog,v 1.17 2003/02/12 04:32:50 kain Exp $ + + 11 Feb 2003; Bryon Roche <kain@kain.org> ppc-sources-2.4.20-r3.ebuild: + + New PPC kernel. Included patches are: ext2/3 xattr+ACL patch (upgraded to + 0.8.55),2.4.20-ben5,Super FreeS/WAN 1.99-p4, and a reversion of the dmasound + code, which should fix some sound issues. + +*ppc-sources-2.4.20-r3 (11 Feb 2003) 10 Feb 2003; Olivier Reisch <doctomoe@gentoo.org> ppc-sources-2.4.20-r2.ebuild: Added missing SLOT to ebuild. diff --git a/sys-kernel/ppc-sources/files/digest-ppc-sources-2.4.20-r3 b/sys-kernel/ppc-sources/files/digest-ppc-sources-2.4.20-r3 new file mode 100644 index 000000000000..c9ea04706dea --- /dev/null +++ b/sys-kernel/ppc-sources/files/digest-ppc-sources-2.4.20-r3 @@ -0,0 +1,2 @@ +MD5 c439d5c93d7fc9a1480a90842465bb97 linux-2.4.20.tar.bz2 27421046 +MD5 43706a94de654fb1d016d4cd33e316a3 patches-2.4.20-ppc-r3.tar.bz2 1200652 diff --git a/sys-kernel/ppc-sources/ppc-sources-2.4.20-r3.ebuild b/sys-kernel/ppc-sources/ppc-sources-2.4.20-r3.ebuild new file mode 100644 index 000000000000..51f641c69df3 --- /dev/null +++ b/sys-kernel/ppc-sources/ppc-sources-2.4.20-r3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ppc-sources/ppc-sources-2.4.20-r3.ebuild,v 1.1 2003/02/12 04:32:50 kain Exp $ + +IUSE="build crypt" + +# OKV=original kernel version, KV=patched kernel version. They can be the same. + +# Kernel ebuilds using the kernel.eclass can remove any patch that you +# do not want to apply by simply setting the KERNEL_EXCLUDE shell +# variable to the string you want to exclude (for instance +# KERNEL_EXCLUDE="evms" would not patch any patches whose names match +# *evms*). Kernels are only tested in the default configuration, but +# this may be useful if you know that a particular patch is causing a +# conflict with a patch you personally want to apply, or some other +# similar situation. + +ETYPE="sources" + +inherit kernel || die + +# Documentation on the patches contained in this kernel will be installed +# to /usr/share/doc/gentoo-sources-${PV}/patches.txt.gz + +DESCRIPTION="Full sources for the Gentoo Linux kernel" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 + http://cvs.gentoo.org/~kain/ppc/patches-${KV}.tar.bz2" +KEYWORDS="-x86 ~ppc -sparc -alpha" + +src_unpack() { + unpack ${A} + mv linux-${OKV} linux-${KV} || die + + cd ${KV} + # Kill patches we aren't suppposed to use, don't worry about + # failures, if they aren't there that is a good thing! + + # This is the ratified crypt USE flag, enables IPSEC + [ `use crypt` ] || rm 6* + + kernel_src_unpack + + [ `use xfs` ] && ewarn "XFS is no longer included!" +} |