diff options
Diffstat (limited to 'sys-kernel/usermode-sources/usermode-sources-2.6.1-r1.ebuild')
-rw-r--r-- | sys-kernel/usermode-sources/usermode-sources-2.6.1-r1.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/sys-kernel/usermode-sources/usermode-sources-2.6.1-r1.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.6.1-r1.ebuild new file mode 100644 index 000000000000..8afee9eed86d --- /dev/null +++ b/sys-kernel/usermode-sources/usermode-sources-2.6.1-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2004 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.6.1-r1.ebuild,v 1.1 2004/01/28 09:21:42 spock Exp $ + +ETYPE="sources" +inherit kernel + +UML_PATCH="uml-patch-2.6.1-1" + +# we patch against vanilla-sources only +DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" +SRC_URI="mirror://kernel/linux/kernel/v2.6/linux-${PV}.tar.bz2 +mirror://sourceforge/user-mode-linux/${UML_PATCH}.bz2" +HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" +LICENSE="GPL-2" +SLOT="${PV}" +KEYWORDS="x86" +EXTRAVERSION=${PR} + +# 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 dev-lang/perl" +RDEPEND=">=sys-libs/ncurses-5.2" + +S=${WORKDIR}/linux-${PV} + +src_unpack() { + # unpack vanilla sources + cd ${WORKDIR} + unpack linux-${PV}.tar.bz2 + + # apply usermode patch + cd ${S} + epatch ${DISTDIR}/${UML_PATCH}.bz2 + + kernel_universal_unpack +} + +src_compile() { + true +} + +src_install() { + mkdir -p ${D}/usr/src/uml + + # fix silly permissions in tarball + cd ${WORKDIR} + chown -R root:root * + chmod -R a+r-w+X,u+w * + + mv linux-${PV} ${D}/usr/src/uml/ +} + +pkg_postinst() { + # create linux symlink + if [ ! -e ${ROOT}usr/src/uml/linux ] + then + rm -f ${ROOT}usr/src/uml/linux + ln -sf ${ROOT}usr/src/uml/linux-${PV} ${ROOT}usr/src/uml/linux + fi +} |