blob: ab1ca6e05375181d021eea525a02b76ad588ba25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header $
inherit eutils
MY_PN=VBoxGuestAdditions
MY_P=${MY_PN}_${PV}
DESCRIPTION="Guest additions for VirtualBox"
HOMEPAGE="http://www.virtualbox.org/"
SRC_URI="http://virtualbox.org/download/${PV}/${MY_P}.iso"
LICENSE="PUEL"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
RDEPEND="!app-emulation/virtualbox-bin"
RESTRICT="primaryuri"
pkg_setup() {
check_license
}
src_unpack() {
return 0
}
src_install() {
insinto /opt/VirtualBox/additions
newins "${DISTDIR}"/${MY_P}.iso ${MY_PN}.iso
}
|