diff options
author | 2003-01-07 14:02:11 +0000 | |
---|---|---|
committer | 2003-01-07 14:02:11 +0000 | |
commit | 3ba669a3ca534d69973040c1fddbe77f9e4bbccf (patch) | |
tree | 072bdff4fc211c31810eb2b4aabef17c50c8b94f /sys-kernel/sparc-sources | |
parent | Cleanup and new portage (diff) | |
download | gentoo-2-3ba669a3ca534d69973040c1fddbe77f9e4bbccf.tar.gz gentoo-2-3ba669a3ca534d69973040c1fddbe77f9e4bbccf.tar.bz2 gentoo-2-3ba669a3ca534d69973040c1fddbe77f9e4bbccf.zip |
Added sparc-sources-2.4.20-r1 which includes grsecurity 1.9.8
Diffstat (limited to 'sys-kernel/sparc-sources')
-rw-r--r-- | sys-kernel/sparc-sources/ChangeLog | 9 | ||||
-rw-r--r-- | sys-kernel/sparc-sources/files/digest-sparc-sources-2.4.20-r1 | 2 | ||||
-rw-r--r-- | sys-kernel/sparc-sources/sparc-sources-2.4.20-r1.ebuild | 46 |
3 files changed, 56 insertions, 1 deletions
diff --git a/sys-kernel/sparc-sources/ChangeLog b/sys-kernel/sparc-sources/ChangeLog index a913b48278c5..723f6a4730c4 100644 --- a/sys-kernel/sparc-sources/ChangeLog +++ b/sys-kernel/sparc-sources/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-kernel/sparc-sources # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/ChangeLog,v 1.8 2002/12/18 00:12:48 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/ChangeLog,v 1.9 2003/01/07 14:02:11 joker Exp $ + +*sparc-sources-2.4.20-r1 (07 Jan 2003) + + 07 Jan 2003; Christian Birchinger <joker@gentoo.org>: + sparc-sources-2.4.20-r1.ebuild files/digest-sparc-sources-2.4.20-r1 : + + Added grsecurity 1.9.8 to patches-2.4.20-r1-sparc.tar.bz2 17 Dec 2002; Brandon Low <lostlogic@gentoo.org>: Make all kernel-sources SLOT="${KV}" diff --git a/sys-kernel/sparc-sources/files/digest-sparc-sources-2.4.20-r1 b/sys-kernel/sparc-sources/files/digest-sparc-sources-2.4.20-r1 new file mode 100644 index 000000000000..cb0544a02d7a --- /dev/null +++ b/sys-kernel/sparc-sources/files/digest-sparc-sources-2.4.20-r1 @@ -0,0 +1,2 @@ +MD5 c439d5c93d7fc9a1480a90842465bb97 linux-2.4.20.tar.bz2 27421046 +MD5 16f11c3dd9fbc86d437ce87681b04165 patches-2.4.20-r1-sparc.tar.bz2 113346 diff --git a/sys-kernel/sparc-sources/sparc-sources-2.4.20-r1.ebuild b/sys-kernel/sparc-sources/sparc-sources-2.4.20-r1.ebuild new file mode 100644 index 000000000000..863944ab9cba --- /dev/null +++ b/sys-kernel/sparc-sources/sparc-sources-2.4.20-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/sparc-sources-2.4.20-r1.ebuild,v 1.1 2003/01/07 14:02:11 joker Exp $ + +IUSE="build" + +# OKV=original kernel version, KV=patched kernel version. They can be the +# same. +KV=${PV} + +# 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. + +# This kernel also has support for the local USE flag acpi4linux which +# activates the latest code from acpi.sourceforge.net instead of the +# very out of date vanilla version + +ETYPE="sources" + +inherit kernel || die + +# Documentation on the patches contained in this kernel will be installed +# to /usr/share/doc/sparc-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 + mirror://gentoo/patches-${PVR}-sparc.tar.bz2" +KEYWORDS="~x86 -ppc ~sparc" +SLOT="${KV}" + +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! + + kernel_src_unpack +} |