diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-05-26 19:49:44 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-26 20:15:01 -0400 |
commit | f22c81540c5a50d664e9f0c35680ed1181705f94 (patch) | |
tree | 8094b5cd93acd8f801e2a22368f0ea4d86d69b8e /media-sound/xineadump | |
parent | media-sound/synaesthesia: bump EAPI (diff) | |
download | gentoo-f22c81540c5a50d664e9f0c35680ed1181705f94.tar.gz gentoo-f22c81540c5a50d664e9f0c35680ed1181705f94.tar.bz2 gentoo-f22c81540c5a50d664e9f0c35680ed1181705f94.zip |
media-sound/xineadump: bump EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'media-sound/xineadump')
-rw-r--r-- | media-sound/xineadump/xineadump-0.1-r1.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/media-sound/xineadump/xineadump-0.1-r1.ebuild b/media-sound/xineadump/xineadump-0.1-r1.ebuild index 44abf590ccd6..be2a60915563 100644 --- a/media-sound/xineadump/xineadump-0.1-r1.ebuild +++ b/media-sound/xineadump/xineadump-0.1-r1.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit eutils +EAPI=6 DESCRIPTION="Utility for Xine decoding support in transKode" HOMEPAGE="https://sourceforge.net/projects/transkode" @@ -19,12 +18,12 @@ DEPEND="${RDEPEND}" S=${WORKDIR}/${PN} -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc-4.3.patch \ - "${FILESDIR}"/${P}-gcc-4.4.patch -} +PATCHES=( + "${FILESDIR}/${P}-gcc-4.3.patch" + "${FILESDIR}/${P}-gcc-4.4.patch" +) src_install() { emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS + default } |