diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-09 20:27:07 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-09 20:33:51 +0100 |
commit | b0dc15366b6071842dc7a73e94304a7aa705c5ad (patch) | |
tree | 8b36160e90186a232fb915b81f6e1f8c4f4559d9 /media-video/subtitleripper | |
parent | media-video/sub2srt: Bump to EAPI 7 (diff) | |
download | gentoo-b0dc15366b6071842dc7a73e94304a7aa705c5ad.tar.gz gentoo-b0dc15366b6071842dc7a73e94304a7aa705c5ad.tar.bz2 gentoo-b0dc15366b6071842dc7a73e94304a7aa705c5ad.zip |
media-video/subtitleripper: Bump to EAPI 7
Bug: https://bugs.gentoo.org/697264
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-video/subtitleripper')
-rw-r--r-- | media-video/subtitleripper/subtitleripper-0.3.4-r4.ebuild | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/media-video/subtitleripper/subtitleripper-0.3.4-r4.ebuild b/media-video/subtitleripper/subtitleripper-0.3.4-r4.ebuild index 226c2b9531a7..e547faecaf76 100644 --- a/media-video/subtitleripper/subtitleripper-0.3.4-r4.ebuild +++ b/media-video/subtitleripper/subtitleripper-0.3.4-r4.ebuild @@ -1,19 +1,21 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 -inherit versionator eutils toolchain-funcs +inherit toolchain-funcs -MY_PV="$(replace_version_separator 2 "-")" +MY_PV="$(ver_rs 2 "-")" DESCRIPTION="DVD Subtitle Ripper for Linux" HOMEPAGE="http://subtitleripper.sourceforge.net/" -LICENSE="GPL-2" -KEYWORDS="amd64 ppc ppc64 x86" SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tgz" + +LICENSE="GPL-2" SLOT="0" +KEYWORDS="amd64 ppc ppc64 x86" IUSE="" + RDEPEND=">=media-libs/netpbm-10.41.0 media-libs/libpng sys-libs/zlib @@ -22,23 +24,28 @@ DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}" -src_unpack() { - unpack ${A} - cd "${S}" +PATCHES=( + "${FILESDIR}"/${P}-linkingorder.patch + "${FILESDIR}"/${P}-libpng.patch + "${FILESDIR}"/${P}-glibc210.patch + "${FILESDIR}"/${P}-respect-ldflags.patch +) + +src_prepare() { # PPM library is libnetppm - sed -i -e "s:ppm:netpbm:g" Makefile + sed -i -e "s:ppm:netpbm:g" Makefile || die # fix for bug 210435 - sed -i -e "s:#include <ppm.h>:#include <netpbm/ppm.h>:g" spudec.c subtitle2pgm.c + sed -i -e "s:#include <ppm.h>:#include <netpbm/ppm.h>:g" \ + spudec.c subtitle2pgm.c || die # we will install the gocrfilters into /usr/share/subtitleripper - sed -i -e 's:~/sourceforge/subtitleripper/src/:/usr/share/subtitleripper:' pgm2txt + sed -i -e 's:~/sourceforge/subtitleripper/src/:/usr/share/subtitleripper:' \ + pgm2txt || die + + default - epatch "${FILESDIR}/${P}-linkingorder.patch" - epatch "${FILESDIR}"/${P}-libpng.patch - epatch "${FILESDIR}"/${P}-glibc210.patch - # respect CC and LDFLAGS + # respect CC sed -i -e "s:CC =.*:CC = $(tc-getCC):" \ -e "/^CFLAGS/s: = :& ${CFLAGS} :" "${S}"/Makefile - epatch "${FILESDIR}"/${P}-respect-ldflags.patch } src_install () { |