Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/xvattr/
Date: Sun, 17 Oct 2021 10:36:46
Message-Id: 1634466988.6705be58c200931fc6bcc03ccd385a84b6fca232.soap@gentoo
1 commit: 6705be58c200931fc6bcc03ccd385a84b6fca232
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 10:36:28 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 10:36:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6705be58
7
8 media-video/xvattr: update EAPI 5 -> 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 media-video/xvattr/xvattr-1.3-r3.ebuild | 24 ++++++++++++------------
13 1 file changed, 12 insertions(+), 12 deletions(-)
14
15 diff --git a/media-video/xvattr/xvattr-1.3-r3.ebuild b/media-video/xvattr/xvattr-1.3-r3.ebuild
16 index 54db3e63fb5..7a16d54cbe1 100644
17 --- a/media-video/xvattr/xvattr-1.3-r3.ebuild
18 +++ b/media-video/xvattr/xvattr-1.3-r3.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2021 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=5
24 +EAPI=8
25
26 -inherit epatch autotools
27 +inherit autotools
28
29 DESCRIPTION="X11 XVideo Querying/Setting Tool from Ogle project"
30 HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd"
31 @@ -14,25 +14,25 @@ SLOT=0
32 KEYWORDS="~amd64 ~ppc ~x86"
33 IUSE="gtk"
34
35 -RDEPEND="x11-libs/libX11
36 +RDEPEND="
37 + x11-libs/libX11
38 x11-libs/libXv
39 x11-libs/libXext
40 gtk? ( x11-libs/gtk+:2 )"
41 DEPEND="${RDEPEND}
42 - x11-libs/libXt
43 - virtual/pkgconfig"
44 + x11-libs/libXt"
45 +BDEPEND="virtual/pkgconfig"
46 +
47 +PATCHES=(
48 + "${FILESDIR}"/${P}-gtk.patch
49 + "${FILESDIR}"/${P}-pod-encoding.patch
50 +)
51
52 src_prepare() {
53 - epatch "${FILESDIR}"/${P}-gtk.patch
54 - epatch "${FILESDIR}"/${P}-pod-encoding.patch
55 + default
56 eautoreconf
57 }
58
59 src_configure() {
60 econf $(use_with gtk)
61 }
62 -
63 -src_install() {
64 - emake DESTDIR="${D}" install
65 - dodoc AUTHORS ChangeLog NEWS README
66 -}