diff options
Diffstat (limited to 'sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild')
-rw-r--r-- | sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild deleted file mode 100644 index 52eca068769c..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -# -# 2002-07-23/UBa -# i decided to "upgrade" this ebuild to uml-patch-2.4.37 because this -# is the one i successfully use on debian these days. -# -UML_PATCH="uml-patch-${PV}-37" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - |