Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libvdpau: ChangeLog libvdpau-0.3-r1.ebuild
Date: Mon, 04 Jan 2010 08:19:58
Message-Id: E1NRiAO-00061E-81@stork.gentoo.org
1 cardoe 10/01/04 08:19:56
2
3 Modified: ChangeLog
4 Added: libvdpau-0.3-r1.ebuild
5 Log:
6 revert the change that 0.3 makes to assume that VDPAU libraries are in /usr/lib/vdpau because the usage of dlopen() is incorrect in this case. Need to discuss this with upstream further
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 x11-libs/libvdpau/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libvdpau/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libvdpau/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libvdpau/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 21 Nov 2009 03:13:39 -0000 1.6
23 +++ ChangeLog 4 Jan 2010 08:19:55 -0000 1.7
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-libs/libvdpau
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v 1.6 2009/11/21 03:13:39 cardoe Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v 1.7 2010/01/04 08:19:55 cardoe Exp $
30 +
31 +*libvdpau-0.3-r1 (04 Jan 2010)
32 +
33 + 04 Jan 2010; Doug Goldstein <cardoe@g.o> +libvdpau-0.3-r1.ebuild:
34 + revert the change that 0.3 makes to assume that VDPAU libraries are in
35 + /usr/lib/vdpau because the usage of dlopen() is incorrect in this case.
36 + Need to discuss this with upstream further
37
38 *libvdpau-0.3 (21 Nov 2009)
39
40
41
42
43 1.1 x11-libs/libvdpau/libvdpau-0.3-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libvdpau/libvdpau-0.3-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libvdpau/libvdpau-0.3-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libvdpau-0.3-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/libvdpau-0.3-r1.ebuild,v 1.1 2010/01/04 08:19:55 cardoe Exp $
53
54 EAPI="2"
55
56 DESCRIPTION="VDPAU wrapper and trace libraries"
57 HOMEPAGE="http://www.freedesktop.org/wiki/Software/VDPAU"
58 SRC_URI="http://people.freedesktop.org/~aplattner/vdpau/${P}.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
63 IUSE="doc"
64
65 #unfortunately, there's driver versions in between that this works with
66 RDEPEND="x11-libs/libX11
67 !=x11-drivers/nvidia-drivers-180.29
68 !=x11-drivers/nvidia-drivers-180.60
69 !=x11-drivers/nvidia-drivers-185.18.14
70 !=x11-drivers/nvidia-drivers-185.18.29
71 !=x11-drivers/nvidia-drivers-185.18.31
72 !=x11-drivers/nvidia-drivers-185.18.36
73 !=x11-drivers/nvidia-drivers-190.18
74 !=x11-drivers/nvidia-drivers-190.25
75 !=x11-drivers/nvidia-drivers-190.32
76 !=x11-drivers/nvidia-drivers-190.36
77 !=x11-drivers/nvidia-drivers-190.40"
78 DEPEND="${RDEPEND}
79 x11-proto/xproto
80 doc? ( app-doc/doxygen
81 media-gfx/graphviz
82 dev-tex/pdftex )"
83
84 src_configure() {
85 econf --with-module-dir="/usr/$(get_libdir)"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "make install failed"
90 }