Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libvdpau: libvdpau-0.9.ebuild ChangeLog
Date: Tue, 30 Dec 2014 07:12:51
Message-Id: 20141230071246.AFE55E79F@oystercatcher.gentoo.org
1 williamh 14/12/30 07:12:46
2
3 Modified: ChangeLog
4 Added: libvdpau-0.9.ebuild
5 Log:
6 version bump approved by ssuominen
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x30C46538)
9
10 Revision Changes Path
11 1.36 x11-libs/libvdpau/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 20 Jul 2014 19:26:04 -0000 1.35
24 +++ ChangeLog 30 Dec 2014 07:12:46 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/libvdpau
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v 1.35 2014/07/20 19:26:04 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v 1.36 2014/12/30 07:12:46 williamh Exp $
30 +
31 +*libvdpau-0.9 (30 Dec 2014)
32 +
33 + 30 Dec 2014; William Hubbs <williamh@g.o> +libvdpau-0.9.ebuild:
34 + version bump approved by ssuominen
35
36 20 Jul 2014; Samuli Suominen <ssuominen@g.o> libvdpau-0.8.ebuild:
37 Use virtualx.eclass for the testsuite wrt #517604 by Nikoli
38
39
40
41 1.1 x11-libs/libvdpau/libvdpau-0.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/libvdpau-0.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/libvdpau-0.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libvdpau-0.9.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/libvdpau-0.9.ebuild,v 1.1 2014/12/30 07:12:46 williamh Exp $
51
52 EAPI=5
53 VIRTUALX_REQUIRED="test"
54 inherit autotools-multilib virtualx
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="~alpha ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd"
63 IUSE="doc dri"
64
65 RDEPEND=">=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
66 dri? ( >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] )
67 !=x11-drivers/nvidia-drivers-180*
68 !=x11-drivers/nvidia-drivers-185*
69 !=x11-drivers/nvidia-drivers-190*
70 abi_x86_32? ( !app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] )"
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig
73 doc? (
74 app-doc/doxygen
75 media-gfx/graphviz
76 virtual/latex-base
77 )
78 dri? ( >=x11-proto/dri2proto-2.2 )"
79
80 src_configure() {
81 local myeconfargs=(
82 --docdir="${EPREFIX}"/usr/share/doc/${PF}
83 $(use_enable doc documentation)
84 $(use dri || echo --disable-dri2)
85 )
86
87 autotools-multilib_src_configure
88 }
89
90 multilib_src_test() {
91 Xemake check
92 }
93
94 src_install() {
95 autotools-multilib_src_install
96 prune_libtool_files --modules
97 }