diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-29 19:59:38 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-29 19:59:38 +0100 |
commit | f1ed4200a86a180e683b9446d92920bcde0a2c27 (patch) | |
tree | fa5e651e80b48bbc99495cbd9b2dd2e89808c6d7 /media-video | |
parent | media-video/ogmrip: Port to EAPI 7 (diff) | |
download | gentoo-f1ed4200a86a180e683b9446d92920bcde0a2c27.tar.gz gentoo-f1ed4200a86a180e683b9446d92920bcde0a2c27.tar.bz2 gentoo-f1ed4200a86a180e683b9446d92920bcde0a2c27.zip |
media-video/videotrans: Port to EAPI 8
Closes: https://bugs.gentoo.org/819423
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/videotrans/videotrans-1.6.1-r2.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/media-video/videotrans/videotrans-1.6.1-r2.ebuild b/media-video/videotrans/videotrans-1.6.1-r2.ebuild index ea33b07bb2a6..93db7f9ec91e 100644 --- a/media-video/videotrans/videotrans-1.6.1-r2.ebuild +++ b/media-video/videotrans/videotrans-1.6.1-r2.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils +EAPI=8 DESCRIPTION="A package to convert movies to DVD format and to build DVDs with" HOMEPAGE="http://videotrans.sourceforge.net/" @@ -10,6 +9,7 @@ SRC_URI="mirror://sourceforge/videotrans/${P}.tar.bz2" LICENSE="BSD" SLOT="0" +KEYWORDS="~amd64" DEPEND=" media-video/mplayer @@ -25,10 +25,11 @@ RDEPEND="${DEPEND} sys-devel/bc " -DOCS="aspects.txt CHANGES THANKS TODO" +DOCS=( aspects.txt CHANGES THANKS TODO ) src_prepare() { + default # fixing LDFLAGS usage - sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in + sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in || die } |