diff options
author | 2011-08-07 11:18:29 +0000 | |
---|---|---|
committer | 2011-08-07 11:18:29 +0000 | |
commit | 8fa4655bacc5d7049f589fc54c24ab57079d6d57 (patch) | |
tree | 7cf536540c84165ba39ac3ac1114ab7fb8cea343 /app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild | |
parent | Initial commit policy for pan (diff) | |
download | historical-8fa4655bacc5d7049f589fc54c24ab57079d6d57.tar.gz historical-8fa4655bacc5d7049f589fc54c24ab57079d6d57.tar.bz2 historical-8fa4655bacc5d7049f589fc54c24ab57079d6d57.zip |
Fixed kernel panic on suspend (bug #377229)
Package-Manager: portage-2.2.0_alpha50/cvs/Linux x86_64
Diffstat (limited to 'app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild')
-rw-r--r-- | app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild b/app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild new file mode 100644 index 000000000000..48e4b98944f2 --- /dev/null +++ b/app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-modules/virtualbox-modules-4.1.0-r1.ebuild,v 1.1 2011/08/07 11:18:29 polynomial-c Exp $ + +# XXX: the tarball here is just the kernel modules split out of the binary +# package that comes from virtualbox-bin + +EAPI=2 + +inherit eutils linux-mod + +MY_P=vbox-kernel-module-src-${PV} +DESCRIPTION="Kernel Modules for Virtualbox" +HOMEPAGE="http://www.virtualbox.org/" +SRC_URI="http://dev.gentoo.org/~polynomial-c/virtualbox/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!=app-emulation/virtualbox-9999" + +S=${WORKDIR} + +BUILD_TARGETS="all" +BUILD_TARGET_ARCH="${ARCH}" +MODULE_NAMES="vboxdrv(misc:${S}) vboxnetflt(misc:${S}) vboxnetadp(misc:${S}) vboxpci(misc:${S})" + +pkg_setup() { + linux-mod_pkg_setup + BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR}" + enewgroup vboxusers +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-vboxbug9305.patch + + if kernel_is -ge 2 6 33 ; then + # evil patch for new kernels - header moved + grep -lR linux/autoconf.h * | xargs sed -i -e 's:<linux/autoconf.h>:<generated/autoconf.h>:' + fi +} + +src_install() { + linux-mod_src_install +} + +pkg_postinst() { + linux-mod_pkg_postinst + elog "Starting with the 3.x release new kernel modules were added," + elog "be sure to load all the needed modules." + elog "" + elog "Please add \"vboxdrv\", \"vboxnetflt\" and \"vboxnetadp\" to:" + if has_version sys-apps/openrc; then + elog "/etc/conf.d/modules" + else + elog "/etc/modules.autoload.d/kernel-${KV_MAJOR}.${KV_MINOR}" + fi +} |