media-sound/cdtool: Port to EAPI 7
authorDavid Seifert <soap@gentoo.org>
Tue, 10 Dec 2019 00:41:31 +0000 (01:41 +0100)
committerDavid Seifert <soap@gentoo.org>
Tue, 10 Dec 2019 00:41:31 +0000 (01:41 +0100)
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
media-sound/cdtool/cdtool-2.1.8-r1.ebuild
media-sound/cdtool/files/cdtool-2.1.8-fix-build-system.patch [new file with mode: 0644]

index 6706ada72f63a6c8aad5ebc7a634841b9635dffd..0d81cefca1801e88ec52433f3ebd9905cfb7048c 100644 (file)
@@ -1,8 +1,7 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="4"
-inherit eutils
+EAPI=7
 
 DESCRIPTION="collection of command-line utilities to control cdrom devices"
 HOMEPAGE="http://hinterhof.net/cdtool/"
@@ -15,11 +14,7 @@ IUSE=""
 
 RDEPEND="!media-sound/cdplay"
 
-src_prepare() {
-       epatch "${FILESDIR}"/${P}-glibc-2.10.patch
-       sed -i \
-               -e '/INSTALL/s:-o root::' \
-               -e '/LINKTARGET/s:/lib/:/$(notdir $(libdir))/:' \
-               -e '/^install-links:/s:$: install-files:' \
-               Makefile.in || die
-}
+PATCHES=(
+       "${FILESDIR}"/${P}-glibc-2.10.patch
+       "${FILESDIR}"/${P}-fix-build-system.patch
+)
diff --git a/media-sound/cdtool/files/cdtool-2.1.8-fix-build-system.patch b/media-sound/cdtool/files/cdtool-2.1.8-fix-build-system.patch
new file mode 100644 (file)
index 0000000..c059a64
--- /dev/null
@@ -0,0 +1,40 @@
+--- a/Makefile.in
++++ b/Makefile.in
+@@ -44,11 +44,11 @@
+ install: install-files install-links
+ install-files:
+       mkdir -p $(DESTDIR)$(bindir)
+-      $(INSTALL) cdctrl $(DESTDIR)$(bindir) -o root
+-      $(INSTALL) cdloop $(DESTDIR)$(bindir) -o root
+-      $(INSTALL) cdadd $(DESTDIR)$(bindir) -o root
+-      $(INSTALL) cdown $(DESTDIR)$(bindir) -o root
+-      $(INSTALL) cdtool2cddb $(DESTDIR)$(bindir) -o root
++      $(INSTALL) cdctrl $(DESTDIR)$(bindir)
++      $(INSTALL) cdloop $(DESTDIR)$(bindir)
++      $(INSTALL) cdadd $(DESTDIR)$(bindir)
++      $(INSTALL) cdown $(DESTDIR)$(bindir)
++      $(INSTALL) cdtool2cddb $(DESTDIR)$(bindir)
+       mkdir -p $(DESTDIR)$(mandir)/man1
+       $(INSTALL) cdctrl.1 $(DESTDIR)$(mandir)/man1
+@@ -59,9 +59,9 @@
+       $(INSTALL) cdtool2cddb.1 $(DESTDIR)$(mandir)/man1
+       mkdir -p $(DESTDIR)$(libdir)/cdtool
+-      $(INSTALL) cdtool $(DESTDIR)$(libdir)/cdtool -o root
++      $(INSTALL) cdtool $(DESTDIR)$(libdir)/cdtool
+  
+-LINKTARGET = ../lib/cdtool/cdtool
++LINKTARGET = ../$(notdir $(libdir))/cdtool/cdtool
+ LINKS = cdplay cdpause cdstop cdclose cdeject cdir cdinfo cdreset \
+         cdvolume cdshuffle
+@@ -69,7 +69,7 @@
+ install-links-local: bindir = .
+ install-links-local: install-links
+-install-links:
++install-links: install-files
+       for command in $(LINKS); do \
+         if ! test -h $(DESTDIR)$(bindir)/$$command; then \
+           echo installing $$command; \