diff options
author | David Seifert <soap@gentoo.org> | 2021-10-17 12:36:28 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-10-17 12:36:28 +0200 |
commit | 6705be58c200931fc6bcc03ccd385a84b6fca232 (patch) | |
tree | 4d7fb74d34eb58e28efac0d608ed57e9d7edba9e /media-video | |
parent | dev-python/zope-testrunner: Remove old (diff) | |
download | gentoo-6705be58c200931fc6bcc03ccd385a84b6fca232.tar.gz gentoo-6705be58c200931fc6bcc03ccd385a84b6fca232.tar.bz2 gentoo-6705be58c200931fc6bcc03ccd385a84b6fca232.zip |
media-video/xvattr: update EAPI 5 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/xvattr/xvattr-1.3-r3.ebuild | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/media-video/xvattr/xvattr-1.3-r3.ebuild b/media-video/xvattr/xvattr-1.3-r3.ebuild index 54db3e63fb5a..7a16d54cbe19 100644 --- a/media-video/xvattr/xvattr-1.3-r3.ebuild +++ b/media-video/xvattr/xvattr-1.3-r3.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -inherit epatch autotools +inherit autotools DESCRIPTION="X11 XVideo Querying/Setting Tool from Ogle project" HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd" @@ -14,25 +14,25 @@ SLOT=0 KEYWORDS="~amd64 ~ppc ~x86" IUSE="gtk" -RDEPEND="x11-libs/libX11 +RDEPEND=" + x11-libs/libX11 x11-libs/libXv x11-libs/libXext gtk? ( x11-libs/gtk+:2 )" DEPEND="${RDEPEND} - x11-libs/libXt - virtual/pkgconfig" + x11-libs/libXt" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-gtk.patch + "${FILESDIR}"/${P}-pod-encoding.patch +) src_prepare() { - epatch "${FILESDIR}"/${P}-gtk.patch - epatch "${FILESDIR}"/${P}-pod-encoding.patch + default eautoreconf } src_configure() { econf $(use_with gtk) } - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README -} |