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