Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libva-vdpau-driver/
Date: Sun, 29 Jan 2017 18:13:33
Message-Id: 1485713574.e9f23f1dfce2749e9e994c393175b9cbd464faed.mattst88@gentoo
1 commit: e9f23f1dfce2749e9e994c393175b9cbd464faed
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 18:12:34 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 18:12:54 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9f23f1d
7
8 x11-libs/libva-vdpau-driver: Drop live ebuild.
9
10 There haven't been any commits since the 0.7.4 release, which happened more
11 than four years ago.
12
13 .../libva-vdpau-driver-9999.ebuild | 50 ----------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/x11-libs/libva-vdpau-driver/libva-vdpau-driver-9999.ebuild b/x11-libs/libva-vdpau-driver/libva-vdpau-driver-9999.ebuild
17 deleted file mode 100644
18 index edccaba..00000000
19 --- a/x11-libs/libva-vdpau-driver/libva-vdpau-driver-9999.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=5
27 -
28 -SCM=""
29 -if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
30 - SCM=git-2
31 - EGIT_BRANCH=master
32 - EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/vdpau-driver"
33 -fi
34 -AUTOTOOLS_AUTORECONF="yes"
35 -inherit autotools-multilib ${SCM}
36 -
37 -DESCRIPTION="VDPAU Backend for Video Acceleration (VA) API"
38 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/vaapi"
39 -if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
40 - SRC_URI=""
41 - S="${WORKDIR}/${PN}"
42 -else
43 - SRC_URI="https://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/${P}.tar.bz2"
44 -fi
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -if [ "${PV%9999}" = "${PV}" ] ; then
49 - KEYWORDS="~amd64 ~x86"
50 -else
51 - KEYWORDS=""
52 -fi
53 -IUSE="debug opengl"
54 -
55 -RDEPEND=">=x11-libs/libva-1.2.1-r1[X,opengl?,${MULTILIB_USEDEP}]
56 - opengl? ( >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] )
57 - >=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}]
58 - !x11-libs/vdpau-video"
59 -
60 -DEPEND="${DEPEND}
61 - virtual/pkgconfig"
62 -
63 -DOCS=( NEWS README AUTHORS )
64 -
65 -multilib_src_configure() {
66 - local myeconfargs=(
67 - $(use_enable debug)
68 - $(use_enable opengl glx)
69 - )
70 - autotools-utils_src_configure
71 -}