Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libvdpau: libvdpau-0.5-r1.ebuild ChangeLog
Date: Tue, 26 Feb 2013 16:37:42
Message-Id: 20130226163739.0394D2171D@flycatcher.gentoo.org
1 mgorny 13/02/26 16:37:38
2
3 Modified: ChangeLog
4 Added: libvdpau-0.5-r1.ebuild
5 Log:
6 Enable multilib.
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
9
10 Revision Changes Path
11 1.27 x11-libs/libvdpau/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 22 Nov 2012 10:06:42 -0000 1.26
24 +++ ChangeLog 26 Feb 2013 16:37:38 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/libvdpau
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v 1.26 2012/11/22 10:06:42 ago Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/ChangeLog,v 1.27 2013/02/26 16:37:38 mgorny Exp $
31 +
32 +*libvdpau-0.5-r1 (26 Feb 2013)
33 +
34 + 26 Feb 2013; Michał Górny <mgorny@g.o> +libvdpau-0.5-r1.ebuild:
35 + Enable multilib.
36
37 22 Nov 2012; Agostino Sarubbo <ago@g.o> libvdpau-0.5.ebuild:
38 Stable for x86, tested by Vincent Olivert Riera <peratu@×××××××××.com>, wrt
39 @@ -112,4 +117,3 @@
40 +metadata.xml:
41 initial version. this library wraps VDPAU. marked as mirror restrict until
42 upstream creates a make dist tarball and we switch to that
43 -
44
45
46
47 1.1 x11-libs/libvdpau/libvdpau-0.5-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/libvdpau-0.5-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libvdpau/libvdpau-0.5-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: libvdpau-0.5-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libvdpau/libvdpau-0.5-r1.ebuild,v 1.1 2013/02/26 16:37:38 mgorny Exp $
57
58 EAPI=5
59 inherit autotools-multilib
60
61 DESCRIPTION="VDPAU wrapper and trace libraries"
62 HOMEPAGE="http://www.freedesktop.org/wiki/Software/VDPAU"
63 SRC_URI="http://people.freedesktop.org/~aplattner/vdpau/${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd"
68 IUSE="doc dri"
69
70 RDEPEND="x11-libs/libX11[${MULTILIB_USEDEP}]
71 dri? ( x11-libs/libXext[${MULTILIB_USEDEP}] )
72 !=x11-drivers/nvidia-drivers-180*
73 !=x11-drivers/nvidia-drivers-185*
74 !=x11-drivers/nvidia-drivers-190*
75 abi_x86_32? ( !<=app-emulation/emul-linux-x86-xlibs-20130224 )"
76 DEPEND="${RDEPEND}
77 virtual/pkgconfig
78 doc? (
79 app-doc/doxygen
80 media-gfx/graphviz
81 virtual/latex-base
82 )
83 dri? ( >=x11-proto/dri2proto-2.2 )"
84
85 src_configure() {
86 local myeconfargs=(
87 --docdir="${EPREFIX}"/usr/share/doc/${PF}
88 $(use_enable doc documentation)
89 $(use dri || echo --disable-dri2)
90 )
91
92 autotools-multilib_src_configure
93 }
94
95 src_install() {
96 autotools-multilib_src_install
97 prune_libtool_files --modules
98 }