# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/xen-sources/xen-sources-2.6.12.6.ebuild,v 1.1 2005/12/06 15:14:56 chrb Exp $ ETYPE="sources" inherit kernel-2 eutils detect_arch detect_version [ "${PR}" == "r0" ] && KV=${PV/_/-}-xen || KV=${PV/_/-}-xen-${PR} EXTRAVERSION=".${KV_EXTRA}-xen" DESCRIPTION="Full sources for a dom0/domU Linux kernel to run under Xen" HOMEPAGE="http://www.cl.cam.ac.uk/Research/SRG/netos/xen/index.html" DATE="20051206" MY_P="xen-3.0-testing-${DATE}" SRC_URI="${KERNEL_URI} mirror://gentoo/${MY_P}.tar.bz2" KEYWORDS="~x86" DEPEND=">=app-emulation/xen-3.0.0" S="${WORKDIR}" RESTRICT="nostrip" src_unpack() { unpack ${MY_P}.tar.bz2 cd ${MY_P} epatch ${FILESDIR}/mkbuildtree.patch # the echo is because the current sources seem to have no default for XEN_NETDEV_PIPELINED_TRANSMITTER echo "n" | make LINUX_SRC_PATH=${DISTDIR} -f buildconfigs/mk.linux-2.6-xen \ linux-2.6.12-xen/include/linux/autoconf.h t=linux-2.6.12-xen cp XEN-VERSION ${t} echo ARCH=xen | cat - ${t}/Makefile >${t}/Makefile.0 mv ${t}/Makefile.0 ${t}/Makefile mv ${t} ${WORKDIR}/linux-${KV} rm -rf ${WORKDIR}/${MY_P} }