d80cdd71b8
git-svn-id: http://svn.sabayonlinux.org/overlay@2209 d7aec97c-591d-0410-af39-a8856400b30a
48 lines
1.1 KiB
Bash
48 lines
1.1 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-modules/virtualbox-modules-1.5.6.ebuild,v 1.1 2008/02/25 21:59:19 flameeyes Exp $
|
|
|
|
inherit eutils linux-mod
|
|
|
|
MY_P=vbox-kernel-module-src-${PV}
|
|
DESCRIPTION="Modules for Virtualbox OSE"
|
|
HOMEPAGE="http://www.virtualbox.org/"
|
|
SRC_URI="http://www.virtualbox.org/download/${PV}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="!=app-emulation/virtualbox-9999"
|
|
|
|
S=${WORKDIR}/vboxdrv
|
|
|
|
BUILD_TARGETS="all"
|
|
BUILD_TARGET_ARCH="${ARCH}"
|
|
MODULE_NAMES="vboxdrv(misc:${S})"
|
|
|
|
pkg_setup() {
|
|
linux-mod_pkg_setup
|
|
BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR}"
|
|
enewgroup vboxusers
|
|
}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd ${S}
|
|
epatch "${FILESDIR}"/${PN/-modules/}_2.6.25.patch
|
|
}
|
|
|
|
src_install() {
|
|
linux-mod_src_install
|
|
|
|
# udev rule for vboxdrv
|
|
dodir /etc/udev/rules.d
|
|
echo 'KERNEL=="vboxdrv", GROUP="vboxusers" MODE=660' >> "${D}/etc/udev/rules.d/60-virtualbox.rules"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
linux-mod_pkg_postinst
|
|
}
|