diff options
author | 2010-03-28 13:43:43 +0000 | |
---|---|---|
committer | 2010-03-28 13:43:43 +0000 | |
commit | bba93c68820c570bd1d94d166a9e709d55ed5699 (patch) | |
tree | 274d004a0f0a9194a722e1ef518d161af780fb53 /app-emulation | |
parent | Bump (diff) | |
download | gentoo-2-bba93c68820c570bd1d94d166a9e709d55ed5699.tar.gz gentoo-2-bba93c68820c570bd1d94d166a9e709d55ed5699.tar.bz2 gentoo-2-bba93c68820c570bd1d94d166a9e709d55ed5699.zip |
Bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/virtualbox-modules/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/virtualbox-modules/virtualbox-modules-3.1.6.ebuild | 72 |
2 files changed, 79 insertions, 1 deletions
diff --git a/app-emulation/virtualbox-modules/ChangeLog b/app-emulation/virtualbox-modules/ChangeLog index 7aba6dfe2fe3..0401dce3fe4d 100644 --- a/app-emulation/virtualbox-modules/ChangeLog +++ b/app-emulation/virtualbox-modules/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/virtualbox-modules # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-modules/ChangeLog,v 1.58 2010/02/14 00:01:54 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-modules/ChangeLog,v 1.59 2010/03/28 13:43:43 patrick Exp $ + +*virtualbox-modules-3.1.6 (28 Mar 2010) + + 28 Mar 2010; Patrick Lauer <patrick@gentoo.org> + +virtualbox-modules-3.1.6.ebuild: + Bump *virtualbox-modules-3.1.4 (13 Feb 2010) diff --git a/app-emulation/virtualbox-modules/virtualbox-modules-3.1.6.ebuild b/app-emulation/virtualbox-modules/virtualbox-modules-3.1.6.ebuild new file mode 100644 index 000000000000..8120552bc93c --- /dev/null +++ b/app-emulation/virtualbox-modules/virtualbox-modules-3.1.6.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-modules/virtualbox-modules-3.1.6.ebuild,v 1.1 2010/03/28 13:43:43 patrick 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://gentooexperimental.org/~patrick/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!=app-emulation/virtualbox-ose-9999" + +S=${WORKDIR} + +BUILD_TARGETS="all" +BUILD_TARGET_ARCH="${ARCH}" +MODULE_NAMES="vboxdrv(misc:${S}) vboxnetflt(misc:${S}) vboxnetadp(misc:${S})" + +pkg_setup() { + linux-mod_pkg_setup + BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR}" + enewgroup vboxusers +} + +src_prepare() { + 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 + + # udev rule for vboxdrv + dodir /etc/udev/rules.d + echo '#SUBSYSTEM=="usb_device", GROUP="vboxusers", MODE="0644"' \ + > "${D}/etc/udev/rules.d/10-virtualbox.rules" + echo '#SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="vboxusers", MODE="0644"' \ + >> "${D}/etc/udev/rules.d/10-virtualbox.rules" +} + +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 + elog "" + elog "If you are experiencing problems on your guests" + elog "with USB support and app-emulation/virtualbox-bin," + elog "uncomment the udev rules placed in:" + elog "" + elog "/etc/udev/rules.d/10-virtualbox.rules" + elog "" +} |