Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-virtualbox: ChangeLog xf86-video-virtualbox-1.6.4.ebuild
Date: Sun, 10 Aug 2008 14:45:38
Message-Id: E1KSCAo-00070I-2x@stork.gentoo.org
1 jokey 08/08/10 14:45:34
2
3 Modified: ChangeLog
4 Added: xf86-video-virtualbox-1.6.4.ebuild
5 Log:
6 Add version bump wrt bug #233683
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo i686)
8
9 Revision Changes Path
10 1.2 x11-drivers/xf86-video-virtualbox/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-virtualbox/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-virtualbox/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-virtualbox/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-virtualbox/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 18 Mar 2008 22:06:33 -0000 1.1
23 +++ ChangeLog 10 Aug 2008 14:45:33 -0000 1.2
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-drivers/xf86-video-virtualbox
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-virtualbox/ChangeLog,v 1.1 2008/03/18 22:06:33 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-virtualbox/ChangeLog,v 1.2 2008/08/10 14:45:33 jokey Exp $
29 +
30 +*xf86-video-virtualbox-1.6.4 (10 Aug 2008)
31 +
32 + 10 Aug 2008; Markus Ullmann <jokey@g.o>
33 + +files/xf86-video-virtualbox-1.6.4-fix-missing-makefiles.patch,
34 + +xf86-video-virtualbox-1.6.4.ebuild:
35 + Add version bump wrt bug #233683
36
37 *xf86-video-virtualbox-1.5.6 (18 Mar 2008)
38
39
40
41
42 1.1 x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-1.6.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-1.6.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-1.6.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-video-virtualbox-1.6.4.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-1.6.4.ebuild,v 1.1 2008/08/10 14:45:33 jokey Exp $
52
53 inherit x-modular eutils
54
55 MY_P=VirtualBox-${PV}-OSE
56 DESCRIPTION="VirtualBox video driver"
57 HOMEPAGE="http://www.virtualbox.org/"
58 SRC_URI="http://www.virtualbox.org/download/${PV}/${MY_P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 RDEPEND="x11-base/xorg-server"
66 DEPEND="${RDEPEND}
67 x11-proto/fontsproto
68 x11-proto/randrproto
69 x11-proto/renderproto
70 x11-proto/xextproto
71 x11-proto/xineramaproto
72 x11-proto/xproto"
73
74 S=${WORKDIR}/${MY_P/-OSE/}
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79
80 # Fix missing makefiles
81 epatch "${FILESDIR}/${P}-fix-missing-makefiles.patch"
82 }
83
84 src_compile() {
85 # build the user-space tools, warnings are harmless
86 ./configure --nofatal \
87 --disable-xpcom \
88 --disable-sdl-ttf \
89 --disable-pulse \
90 --disable-alsa \
91 --build-headless || die "configure failed"
92 source ./env.sh
93
94 cd "${S}/src/VBox/Additions/linux/xgraphics"
95
96 MAKE="kmk" emake || die "kmk failed"
97 }
98
99 src_install() {
100 cd "${S}/out/linux.${ARCH}/release/bin/additions"
101 insinto /usr/lib/xorg/modules/drivers
102
103 if has_version "<x11-base/xorg-server-1.4" ; then
104 newins vboxvideo_drv_13.so vboxvideo_drv.so
105 else
106 newins vboxvideo_drv_14.so vboxvideo_drv.so
107 fi
108 }
109
110 pkg_postinst() {
111 elog "You need to edit the file /etc/X11/xorg.conf and set:"
112 elog ""
113 elog " Driver \"vboxvideo\""
114 elog ""
115 elog "in the Graphics device section (Section \"Device\")"
116 elog ""
117 }