diff options
Diffstat (limited to 'sys-kernel/ck-sources/ck-sources-2.4.23-r1.ebuild')
-rw-r--r-- | sys-kernel/ck-sources/ck-sources-2.4.23-r1.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/sys-kernel/ck-sources/ck-sources-2.4.23-r1.ebuild b/sys-kernel/ck-sources/ck-sources-2.4.23-r1.ebuild deleted file mode 100644 index 1613a42571b9..000000000000 --- a/sys-kernel/ck-sources/ck-sources-2.4.23-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ck-sources/ck-sources-2.4.23-r1.ebuild,v 1.4 2004/04/27 21:57:29 agriffis Exp $ - -IUSE="build" - -# OKV=original kernel version, KV=patched kernel version. - -ETYPE="sources" - -inherit kernel eutils - -# CKV=con kolivas release version -CKV=ck${PR/r/} -# KV=patched kernel version -KV="${PV/_/-}-${CKV}" -# OKV=original kernel version as provided by ebuild -OKV="`echo ${KV} | cut -d- -f1`" -# OKVLAST=(working) last digit of OKV -OKVLAST="`echo ${OKV} | cut -d. -f3`" -# OKVLASTPR=the previous kernel version (for a marcelo pre/rc release) -OKVLASTPR="`expr ${OKVLAST} - 1`" -# If _ isn't there, then it's a stable+ac, otherwise last-stable+pre/rc+ac -PRERC="`echo ${PV}|grep \_`" - -# Other working variables -S=${WORKDIR}/linux-${KV} -EXTRAVERSION="`echo ${KV}|sed -e 's:[^-]*\(-.*$\):\1:'`" -BASE="`echo ${KV}|sed -e s:${EXTRAVERSION}::`" - -# If it's a last-stable+pre/rc+ac (marcelo), we need to handle it differently -# ourkernel is the stable kernel we'll be working with (previous or current) -if [ ${PRERC} ]; then - OURKERNEL="2.4.${OKVLASTPR}" - SRC_URI="mirror://kernel/linux/kernel/v2.4/linux-${OURKERNEL}.tar.bz2 - http://members.optusnet.com.au/ckolivas/kernel/patch-${KV}.bz2 - mirror://kernel/linux/kernel/v2.4/testing/patch-${PV/_/-}.bz2" -else - OURKERNEL="2.4.${OKVLAST}" - SRC_URI="mirror://kernel//linux/kernel/v2.4/linux-${OURKERNEL}.tar.bz2 - http://ck.kolivas.org/patches/2.4/${BASE}/${KV}/patch-${KV}.bz2" -fi - -DESCRIPTION="Full sources for the Stock Linux kernel Con Kolivas's high performance patchset" -HOMEPAGE="http://members.optusnet.com.au/ckolivas/kernel/" - -KEYWORDS="x86 -ppc" -SLOT="${KV}" - -src_unpack() { - unpack linux-${OURKERNEL}.tar.bz2 - mv linux-${OURKERNEL} linux-${KV} || die - cd linux-${KV} - - # if we need a pre/rc patch, then use it - if [ ${PRERC} ]; then - bzcat ${DISTDIR}/patch-${PV/_/-}.bz2|patch -p1 || die "-marcelo patch failed" - fi - - bzcat ${DISTDIR}/patch-${KV}.bz2|patch -p1 || die "-ck patch failed" - - epatch ${FILESDIR}/${PN}.CAN-2003-0985.patch || die "Failed to patch mremap() vulnerability!" - epatch ${FILESDIR}/${PN}.rtc_fix.patch || die "Failed to patch RTC vulnerabilities!" - - kernel_universal_unpack -} - |