Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/vdpau-video: ChangeLog vdpau-video-0.7.3.ebuild
Date: Sun, 27 Feb 2011 13:47:32
Message-Id: 20110227134723.1ACA320054@flycatcher.gentoo.org
1 aballier 11/02/27 13:47:23
2
3 Modified: ChangeLog
4 Added: vdpau-video-0.7.3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 x11-libs/vdpau-video/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vdpau-video/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 3 Feb 2011 14:17:01 -0000 1.10
24 +++ ChangeLog 27 Feb 2011 13:47:23 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/vdpau-video
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vdpau-video/ChangeLog,v 1.10 2011/02/03 14:17:01 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vdpau-video/ChangeLog,v 1.11 2011/02/27 13:47:23 aballier Exp $
30 +
31 +*vdpau-video-0.7.3 (27 Feb 2011)
32 +
33 + 27 Feb 2011; Alexis Ballier <aballier@g.o> +vdpau-video-0.7.3.ebuild:
34 + version bump
35
36 03 Feb 2011; Alexis Ballier <aballier@g.o> -vdpau-video-0.7.2.ebuild,
37 -vdpau-video-0.7.3_pre2.ebuild, -files/vdpau-video-nogl.patch:
38
39
40
41 1.1 x11-libs/vdpau-video/vdpau-video-0.7.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/vdpau-video-0.7.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/vdpau-video-0.7.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vdpau-video-0.7.3.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vdpau-video/vdpau-video-0.7.3.ebuild,v 1.1 2011/02/27 13:47:23 aballier Exp $
51
52 EAPI="2"
53 inherit autotools
54
55 MY_P=${P/_/.}
56 DESCRIPTION="VDPAU Backend for Video Acceleration (VA) API"
57 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
58 SRC_URI="http://www.splitted-desktop.com/~gbeauchesne/${PN}/${MY_P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="debug opengl"
64
65 RDEPEND="x11-libs/libva[opengl?]
66 opengl? ( virtual/opengl )
67 x11-libs/libvdpau"
68
69 DEPEND="${DEPEND}
70 dev-util/pkgconfig"
71
72 S=${WORKDIR}/${MY_P}
73
74 src_prepare() {
75 eautoreconf
76 }
77
78 src_configure() {
79 econf \
80 $(use_enable debug) \
81 $(use_enable opengl glx)
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "make install failed"
86 dodoc NEWS README AUTHORS
87 find "${D}" -name '*.la' -delete
88 }