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/libva-vdpau-driver: metadata.xml libva-vdpau-driver-0.7.3.ebuild libva-vdpau-driver-0.7.4.ebuild ChangeLog
Date: Wed, 21 Nov 2012 17:39:50
Message-Id: 20121121173939.D1EE620C9F@flycatcher.gentoo.org
1 aballier 12/11/21 17:39:39
2
3 Added: metadata.xml libva-vdpau-driver-0.7.3.ebuild
4 libva-vdpau-driver-0.7.4.ebuild ChangeLog
5 Log:
6 Move from x11-libs/vdpau-video to the new upstream name.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.1 x11-libs/libva-vdpau-driver/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>x11</herd>
22 <maintainer>
23 <email>aballier@g.o</email>
24 <name>Alexis Ballier</name>
25 </maintainer>
26 </pkgmetadata>
27
28
29
30 1.1 x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.3.ebuild
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.3.ebuild?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.3.ebuild?rev=1.1&content-type=text/plain
34
35 Index: libva-vdpau-driver-0.7.3.ebuild
36 ===================================================================
37 # Copyright 1999-2012 Gentoo Foundation
38 # Distributed under the terms of the GNU General Public License v2
39 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.3.ebuild,v 1.1 2012/11/21 17:39:39 aballier Exp $
40
41 EAPI="2"
42 inherit autotools
43
44 MY_P=vdpau-video-${PV}
45 DESCRIPTION="VDPAU Backend for Video Acceleration (VA) API"
46 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
47 SRC_URI="http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/${MY_P}.tar.gz"
48
49 LICENSE="GPL-2"
50 SLOT="0"
51 KEYWORDS="amd64 x86"
52 IUSE="debug opengl"
53
54 RDEPEND="x11-libs/libva[opengl?]
55 opengl? ( virtual/opengl )
56 x11-libs/libvdpau
57 !x11-libs/vdpau-video"
58
59 DEPEND="${DEPEND}
60 virtual/pkgconfig"
61
62 S=${WORKDIR}/${MY_P}
63
64 src_prepare() {
65 eautoreconf
66 }
67
68 src_configure() {
69 econf \
70 $(use_enable debug) \
71 $(use_enable opengl glx)
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die "make install failed"
76 dodoc NEWS README AUTHORS
77 find "${D}" -name '*.la' -delete
78 }
79
80
81
82 1.1 x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.4.ebuild
83
84 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.4.ebuild?rev=1.1&view=markup
85 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.4.ebuild?rev=1.1&content-type=text/plain
86
87 Index: libva-vdpau-driver-0.7.4.ebuild
88 ===================================================================
89 # Copyright 1999-2012 Gentoo Foundation
90 # Distributed under the terms of the GNU General Public License v2
91 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-vdpau-driver/libva-vdpau-driver-0.7.4.ebuild,v 1.1 2012/11/21 17:39:39 aballier Exp $
92
93 EAPI="2"
94 inherit autotools eutils
95
96 DESCRIPTION="VDPAU Backend for Video Acceleration (VA) API"
97 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
98 SRC_URI="http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/${P}.tar.bz2"
99
100 LICENSE="GPL-2"
101 SLOT="0"
102 KEYWORDS="~amd64 ~x86"
103 IUSE="debug opengl"
104
105 RDEPEND=">=x11-libs/libva-1.1.0[X,opengl?]
106 opengl? ( virtual/opengl )
107 x11-libs/libvdpau
108 !x11-libs/vdpau-video"
109
110 DEPEND="${DEPEND}
111 virtual/pkgconfig"
112
113 src_prepare() {
114 epatch "${FILESDIR}/${P}-glext-missing-definition.patch"
115 eautoreconf
116 }
117
118 src_configure() {
119 econf \
120 --disable-silent-rules \
121 $(use_enable debug) \
122 $(use_enable opengl glx)
123 }
124
125 src_install() {
126 emake DESTDIR="${D}" install || die "make install failed"
127 dodoc NEWS README AUTHORS
128 find "${D}" -name '*.la' -delete
129 }
130
131
132
133 1.1 x11-libs/libva-vdpau-driver/ChangeLog
134
135 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/ChangeLog?rev=1.1&view=markup
136 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/ChangeLog?rev=1.1&content-type=text/plain
137
138 Index: ChangeLog
139 ===================================================================
140 # ChangeLog for x11-libs/libva-vdpau-driver
141 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
142 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-vdpau-driver/ChangeLog,v 1.1 2012/11/21 17:39:39 aballier Exp $
143
144 *libva-vdpau-driver-0.7.4 (21 Nov 2012)
145 *libva-vdpau-driver-0.7.3 (21 Nov 2012)
146
147 21 Nov 2012; Alexis Ballier <aballier@g.o>
148 +libva-vdpau-driver-0.7.3.ebuild, +libva-vdpau-driver-0.7.4.ebuild,
149 +files/libva-vdpau-driver-0.7.4-glext-missing-definition.patch,
150 +metadata.xml:
151 Move from x11-libs/vdpau-video to the new upstream name.
152
153 21 Nov 2012; Alexis Ballier <aballier@g.o> vdpau-video-0.7.4.ebuild:
154 disable silent rules, bug #443330
155
156 20 Oct 2012; Alexis Ballier <aballier@g.o> vdpau-video-0.7.4.ebuild,
157 +files/vdpau-video-0.7.4-glext-missing-definition.patch:
158 Fix build with mesa opengl, bug #438180, patch ported from gstreamer-vaapi by
159 Steven Newbury
160
161 *vdpau-video-0.7.4 (11 Oct 2012)
162
163 11 Oct 2012; Alexis Ballier <aballier@g.o> +vdpau-video-0.7.4.ebuild:
164 version bump
165
166 05 May 2012; Jeff Horelick <jdhore@g.o> vdpau-video-0.7.3.ebuild:
167 dev-util/pkgconfig -> virtual/pkgconfig
168
169 06 Jul 2011; Alexis Ballier <aballier@g.o> -vdpau-video-0.6.10.ebuild:
170 remove old
171
172 26 Mar 2011; Christian Faulhammer <fauli@g.o>
173 vdpau-video-0.7.3.ebuild:
174 x86 stable, bug 359059
175
176 21 Mar 2011; Markos Chandras <hwoarang@g.o> vdpau-video-0.7.3.ebuild:
177 Stable on amd64 wrt bug #359059
178
179 27 Feb 2011; Alexis Ballier <aballier@g.o>
180 -vdpau-video-0.7.3_pre6.ebuild:
181 remove old
182
183 *vdpau-video-0.7.3 (27 Feb 2011)
184
185 27 Feb 2011; Alexis Ballier <aballier@g.o> +vdpau-video-0.7.3.ebuild:
186 version bump
187
188 03 Feb 2011; Alexis Ballier <aballier@g.o> -vdpau-video-0.7.2.ebuild,
189 -vdpau-video-0.7.3_pre2.ebuild, -files/vdpau-video-nogl.patch:
190 remove old
191
192 *vdpau-video-0.7.3_pre6 (03 Feb 2011)
193
194 03 Feb 2011; Alexis Ballier <aballier@g.o>
195 +vdpau-video-0.7.3_pre6.ebuild:
196 version bump
197
198 *vdpau-video-0.7.3_pre2 (24 Dec 2010)
199
200 24 Dec 2010; Alexis Ballier <aballier@g.o>
201 +vdpau-video-0.7.3_pre2.ebuild, +files/vdpau-video-nogl.patch:
202 version bump and fix build with USE=-opengl, bug #341717
203
204 *vdpau-video-0.7.2 (10 Oct 2010)
205
206 10 Oct 2010; Alexis Ballier <aballier@g.o>
207 +vdpau-video-0.7.2.ebuild:
208 version bump
209
210 10 Oct 2010; Tomáš Chvátal <scarabeus@g.o>
211 -vdpau-video-0.6.9.ebuild:
212 old
213
214 24 Sep 2010; Markos Chandras <hwoarang@g.o>
215 vdpau-video-0.6.10.ebuild:
216 Stable on amd64 wrt bug #332361
217
218 17 Sep 2010; Christian Faulhammer <fauli@g.o>
219 vdpau-video-0.6.10.ebuild:
220 stable x86, security bug 332361
221
222 *vdpau-video-0.6.10 (20 Jul 2010)
223
224 20 Jul 2010; Alexis Ballier <aballier@g.o>
225 +vdpau-video-0.6.10.ebuild:
226 version bump
227
228 22 Jun 2010; Christian Faulhammer <fauli@g.o>
229 vdpau-video-0.6.9.ebuild:
230 add ~x86 for bug 319261
231
232 *vdpau-video-0.6.9 (11 May 2010)
233
234 11 May 2010; Alexis Ballier <aballier@g.o>
235 +vdpau-video-0.6.9.ebuild, +metadata.xml:
236 initial import, bug #317317, ebuild by Frank Richter
237 <res@××××××××××××××.org> with small modifications by me