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: metadata.xml ChangeLog vdpau-video-0.6.9.ebuild
Date: Tue, 11 May 2010 09:29:08
Message-Id: 20100511092905.D03202C4F8@corvid.gentoo.org
1 aballier 10/05/11 09:29:05
2
3 Added: metadata.xml ChangeLog vdpau-video-0.6.9.ebuild
4 Log:
5 initial import, bug #317317, ebuild by Frank Richter <res@××××××××××××××.org> with small modifications by me
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 x11-libs/vdpau-video/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>x11</herd>
20 <maintainer>
21 <email>aballier@g.o</email>
22 <name>Alexis Ballier</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 x11-libs/vdpau-video/ChangeLog
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for x11-libs/vdpau-video
36 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vdpau-video/ChangeLog,v 1.1 2010/05/11 09:29:05 aballier Exp $
38
39 *vdpau-video-0.6.9 (11 May 2010)
40
41 11 May 2010; Alexis Ballier <aballier@g.o>
42 +vdpau-video-0.6.9.ebuild, +metadata.xml:
43 initial import, bug #317317, ebuild by Frank Richter
44 <res@××××××××××××××.org> with small modifications by me
45
46
47
48
49 1.1 x11-libs/vdpau-video/vdpau-video-0.6.9.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/vdpau-video-0.6.9.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vdpau-video/vdpau-video-0.6.9.ebuild?rev=1.1&content-type=text/plain
53
54 Index: vdpau-video-0.6.9.ebuild
55 ===================================================================
56 # Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vdpau-video/vdpau-video-0.6.9.ebuild,v 1.1 2010/05/11 09:29:05 aballier Exp $
59
60 EAPI="2"
61 inherit eutils autotools
62
63 DESCRIPTION="VDPAU Backend for Video Acceleration (VA) API"
64 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
65 SRC_URI="http://www.splitted-desktop.com/~gbeauchesne/${PN}/${P}.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64"
70 IUSE="debug opengl"
71
72 RDEPEND="x11-libs/libva[opengl?]
73 opengl? ( virtual/opengl )
74 x11-libs/libvdpau"
75
76 DEPEND="${DEPEND}
77 dev-util/pkgconfig"
78
79 src_prepare() {
80 eautoreconf
81 }
82
83 src_configure() {
84 econf \
85 $(use_enable debug) \
86 $(use_enable opengl glx)
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "make install failed"
91 dodoc NEWS README AUTHORS
92 find "${D}" -name '*.la' -delete
93 }