public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/zgv/, media-gfx/zgv/files/
@ 2020-10-04 23:20 Sam James
  0 siblings, 0 replies; only message in thread
From: Sam James @ 2020-10-04 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     92286876cdcb2909101096daf5cd5b1515d89f40
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  4 23:20:20 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  4 23:20:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92286876

media-gfx/zgv: port to EAPI 7

Closes: https://bugs.gentoo.org/746023
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch  |  5 ++--
 media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff |  4 +--
 media-gfx/zgv/files/zgv-5.9-libpng15.patch     |  4 +--
 media-gfx/zgv/zgv-5.9.ebuild                   | 40 ++++++++++++++------------
 4 files changed, 28 insertions(+), 25 deletions(-)

diff --git a/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch b/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch
index e4569547d17..6d3a1341ecb 100644
--- a/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch
+++ b/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch
@@ -1,6 +1,5 @@
-diff -NrU5 zgv-5.9.original/src/Makefile zgv-5.9/src/Makefile
---- zgv-5.9.original/src/Makefile	2009-09-28 15:31:29.000000000 -0600
-+++ zgv-5.9/src/Makefile	2009-09-28 15:56:26.000000000 -0600
+--- a/src/Makefile	2009-09-28 15:31:29.000000000 -0600
++++ b/src/Makefile	2009-09-28 15:56:26.000000000 -0600
 @@ -45,11 +45,11 @@
  	readbmp.o readtga.o readpng.o readpcx.o \
  	readxvpic.o readmrf.o readxbm.o readxpm.o \

diff --git a/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff b/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff
index e510a4ba9ec..662838c57ee 100644
--- a/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff
+++ b/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff
@@ -1,5 +1,5 @@
---- zgv-5.9/src/readjpeg.c	Sun Oct 31 14:54:26 2004
-+++ zgv/src/readjpeg.c	Wed Sep 21 21:03:22 2005
+--- a/src/readjpeg.c	Sun Oct 31 14:54:26 2004
++++ b/src/readjpeg.c	Wed Sep 21 21:03:22 2005
 @@ -92,11 +92,13 @@
  	int *real_width,int *real_height)
  {

diff --git a/media-gfx/zgv/files/zgv-5.9-libpng15.patch b/media-gfx/zgv/files/zgv-5.9-libpng15.patch
index 2f12532831d..3d7e4ecb5df 100644
--- a/media-gfx/zgv/files/zgv-5.9-libpng15.patch
+++ b/media-gfx/zgv/files/zgv-5.9-libpng15.patch
@@ -1,7 +1,7 @@
 http://bugs.gentoo.org/389591
 
---- src/readpng.c
-+++ src/readpng.c
+--- a/src/readpng.c
++++ b/src/readpng.c
 @@ -63,7 +63,7 @@
  use_errmsg=1;
  

diff --git a/media-gfx/zgv/zgv-5.9.ebuild b/media-gfx/zgv/zgv-5.9.ebuild
index c5761d43e5f..c22ba876d4a 100644
--- a/media-gfx/zgv/zgv-5.9.ebuild
+++ b/media-gfx/zgv/zgv-5.9.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-inherit eutils toolchain-funcs
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="A svgalib console image viewer"
 HOMEPAGE="http://www.svgalib.org/rus/zgv/"
@@ -11,24 +12,27 @@ SRC_URI="http://www.svgalib.org/rus/zgv/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="x86"
-IUSE=""
 
-RDEPEND=">=media-libs/svgalib-1.4.2
-	virtual/jpeg
+RDEPEND="
 	media-libs/libpng
+	>=media-libs/svgalib-1.4.2
 	>=media-libs/tiff-3.5.5
+	sys-apps/gawk
 	>=sys-libs/zlib-1.1.4
-	sys-apps/gawk"
+	virtual/jpeg
+"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+	"${FILESDIR}"/${P}-Makefile-QA.patch
+	"${FILESDIR}"/${P}-cmyk-yccl-fix.diff
+	"${FILESDIR}"/${P}-libpng15.patch
+)
+
 src_prepare() {
 	sed -i -e "/^CFLAGS=/s:=.*:=${CFLAGS}:" config.mk || die
 	sed -i -e 's:$(RM):echo:' doc/Makefile || die
-
-	epatch \
-		"${FILESDIR}"/${P}-Makefile-QA.patch \
-		"${FILESDIR}"/${P}-cmyk-yccl-fix.diff \
-		"${FILESDIR}"/${P}-libpng15.patch
+	default
 }
 
 src_compile() {
@@ -39,18 +43,18 @@ src_install() {
 	dodir /usr/bin /usr/share/info /usr/share/man/man1
 
 	emake \
-		PREFIX="${D}"/usr \
-		INFODIR="${D}"/usr/share/info \
-		MANDIR="${D}"/usr/share/man/man1 \
+		PREFIX="${ED}"/usr \
+		INFODIR="${ED}"/usr/share/info \
+		MANDIR="${ED}"/usr/share/man/man1 \
 		install
 
 	dodoc AUTHORS ChangeLog INSTALL NEWS README* SECURITY TODO
 
 	# Fix info files
 	cd "${D}"/usr/share/info
-	rm dir*
-	mv zgv zgv.info
+	rm dir* || die
+	mv zgv zgv.info || die
 	for i in 1 2 3 4 ; do
-		mv zgv-$i zgv.info-$i
+		mv zgv-$i zgv.info-$i || die
 	done
 }


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-10-04 23:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-04 23:20 [gentoo-commits] repo/gentoo:master commit in: media-gfx/zgv/, media-gfx/zgv/files/ Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox