summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Luzzardi <scox@gentoo.org>2004-01-07 18:33:29 +0000
committerAndrea Luzzardi <scox@gentoo.org>2004-01-07 18:33:29 +0000
commit5545ff1a1554f845c13edbb08bdbc7405277909b (patch)
tree370ec4c33e74510a671fc12023ee31762d9e19a5 /sys-kernel/xfs-sources
parentadded dvdr flag and upped the nautilus-cd-burner dependency (diff)
downloadgentoo-2-5545ff1a1554f845c13edbb08bdbc7405277909b.tar.gz
gentoo-2-5545ff1a1554f845c13edbb08bdbc7405277909b.tar.bz2
gentoo-2-5545ff1a1554f845c13edbb08bdbc7405277909b.zip
removed package.mask'ed xfs-sources-2.4.22-r1
Diffstat (limited to 'sys-kernel/xfs-sources')
-rw-r--r--sys-kernel/xfs-sources/files/digest-xfs-sources-2.4.22-r12
-rw-r--r--sys-kernel/xfs-sources/xfs-sources-2.4.22-r1.ebuild72
2 files changed, 0 insertions, 74 deletions
diff --git a/sys-kernel/xfs-sources/files/digest-xfs-sources-2.4.22-r1 b/sys-kernel/xfs-sources/files/digest-xfs-sources-2.4.22-r1
deleted file mode 100644
index 9394b057e9ea..000000000000
--- a/sys-kernel/xfs-sources/files/digest-xfs-sources-2.4.22-r1
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 75dc85149b06ac9432106b8941eb9f7b linux-2.4.22.tar.bz2 29528612
-MD5 6940c38612564f9e03736fde8f79c4d3 patches-2.4.22-xfs.tar.bz2 1406293
diff --git a/sys-kernel/xfs-sources/xfs-sources-2.4.22-r1.ebuild b/sys-kernel/xfs-sources/xfs-sources-2.4.22-r1.ebuild
deleted file mode 100644
index 1c6634e307e1..000000000000
--- a/sys-kernel/xfs-sources/xfs-sources-2.4.22-r1.ebuild
+++ /dev/null
@@ -1,72 +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/xfs-sources/xfs-sources-2.4.22-r1.ebuild,v 1.1 2004/01/07 13:55:10 plasmaroo 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
-OKV=2.4.22
-EXTRAVERSION=-${P/-sources-2.4.22}-${PR}
-KV=${OKV}${EXTRAVERSION}
-S=${WORKDIR}/linux-${KV}
-
-# Documentation on the patches contained in this kernel will be installed
-# to /usr/share/doc/xfs-sources-${PV}/patches.txt.gz
-
-DESCRIPTION="Full sources for the XFS Specialized Gentoo Linux kernel"
-SRC_URI="mirror://kernel/linux/kernel/v2.4/linux-${OKV}.tar.bz2
- mirror://gentoo/patches-${OKV}-xfs.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!
-
- # If the compiler isn't gcc3 drop the gcc3 patches
- if [[ "${COMPILER}" == "gcc3" ]];then
- einfo "You are using gcc3, check out the special"
- einfo "processor types just for you"
- else
- einfo "Your compiler is not gcc3, dropping patches..."
- for file in *gcc3*;do
- einfo "Dropping ${file}..."
- rm -f ${file}
- done
- fi
-
- # This is the ratified crypt USE flag, enables IPSEC and patch-int
- if [ -z "`use crypt`" ]; then
- einfo "No Cryptographic support, dropping patches..."
- for file in 8*;do
- einfo "Dropping ${file}..."
- rm -f ${file}
- done
- else
- einfo "Cryptographic support enabled..."
- fi
-
- cd ${S}
- epatch ${FILESDIR}/do_brk_fix.patch || die "Failed to patch do_brk() vulnerability!"
- epatch ${FILESDIR}/${PN}.CAN-2003-0985.patch || die "Failed to patch mremap() vulnerability!"
- epatch ${FILESDIR}/${P}.rtc_fix.patch || die "Failed to patch RTC vulnerabilities!"
-
- kernel_src_unpack
-}