# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/openmosix-sources/openmosix-sources-2.4.19-r3.ebuild,v 1.10 2003/03/24 23:34:01 drobbins 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=2.4.19 KV=2.4.19-openmosix-r3 S=${WORKDIR}/linux-${KV} ETYPE="sources" # What's in this kernel? # INCLUDED: # 2.4.19, plus: # 2.4.19 openmosix-2.4.19-3 # 2.4.19 evms-1.1.0 (evms-linux-2.4.19-common-files, evms-1.1.0-linux-2.4.patch, linux-2.4.19.VFS-lock.patch) DESCRIPTION="Full sources for the Gentoo openMosix Linux kernel" SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://www.ibiblio.org/gentoo/distfiles/linux-gentoo-${KV}.patch.bz2" PROVIDE="virtual/linux-sources" HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/ http://www.openmosix.org/" LICENSE="GPL-2" SLOT="${KV}" KEYWORDS="x86 -ppc -sparc -alpha" DEPEND="Makefile || die # test, remove me if Makefile ok rm Makefile.orig } src_compile() { if [ "$ETYPE" = "headers" ] then yes "" | make oldconfig echo "Ignore any errors from the yes command above." fi } src_install() { if [ "$ETYPE" = "sources" ] then dodir /usr/src echo ">>> Copying sources..." mv ${WORKDIR}/* ${D}/usr/src else #linux-headers dodir /usr/include/linux cp -ax ${S}/include/linux/* ${D}/usr/include/linux rm -rf ${D}/usr/include/linux/modules dodir /usr/include/asm cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm fi } pkg_preinst() { if [ "$ETYPE" = "headers" ] then [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm true fi } pkg_postinst() { [ "$ETYPE" = "headers" ] && return if [ ! -e ${ROOT}usr/src/linux ] then rm -f ${ROOT}usr/src/linux ln -sf linux-${KV} ${ROOT}/usr/src/linux fi }