Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/vdpauinfo/
Date: Fri, 13 Sep 2019 15:34:54
Message-Id: 1568388888.5b127f93c804b90aa0323ed6a9a96111a25257aa.jer@gentoo
1 commit: 5b127f93c804b90aa0323ed6a9a96111a25257aa
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 13 15:34:39 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 13 15:34:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b127f93
7
8 x11-misc/vdpauinfo: Add live ebuild
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 x11-misc/vdpauinfo/vdpauinfo-99999.ebuild | 28 ++++++++++++++++++++++++++++
14 1 file changed, 28 insertions(+)
15
16 diff --git a/x11-misc/vdpauinfo/vdpauinfo-99999.ebuild b/x11-misc/vdpauinfo/vdpauinfo-99999.ebuild
17 new file mode 100644
18 index 00000000000..7f4ca7b3d7b
19 --- /dev/null
20 +++ b/x11-misc/vdpauinfo/vdpauinfo-99999.ebuild
21 @@ -0,0 +1,28 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit autotools git-r3
27 +
28 +DESCRIPTION="Displays info about your card's VDPAU support"
29 +HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU"
30 +EGIT_REPO_URI="https://gitlab.freedesktop.org/vdpau/vdpauinfo"
31 +
32 +LICENSE="MIT"
33 +SLOT="0"
34 +KEYWORDS=""
35 +
36 +RDEPEND="
37 + x11-libs/libX11
38 + >=x11-libs/libvdpau-1.3
39 +"
40 +DEPEND="
41 + ${RDEPEND}
42 + virtual/pkgconfig
43 + x11-base/xorg-proto
44 +"
45 +
46 +src_prepare() {
47 + default
48 + eautoreconf
49 +}