diff options
author | David Seifert <soap@gentoo.org> | 2019-12-10 01:41:31 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-10 01:41:31 +0100 |
commit | 69ae4b3b9a2538c9c4507e2a329663ef0303c3b3 (patch) | |
tree | 6a1b1086582b439f1215e410c59b1b1bae66ad32 /media-sound/cdtool/files | |
parent | media-sound/ptabtools: Port to EAPI 7 (diff) | |
download | gentoo-69ae4b3b9a2538c9c4507e2a329663ef0303c3b3.tar.gz gentoo-69ae4b3b9a2538c9c4507e2a329663ef0303c3b3.tar.bz2 gentoo-69ae4b3b9a2538c9c4507e2a329663ef0303c3b3.zip |
media-sound/cdtool: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/cdtool/files')
-rw-r--r-- | media-sound/cdtool/files/cdtool-2.1.8-fix-build-system.patch | 40 |
1 files changed, 40 insertions, 0 deletions
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 index 000000000000..c059a645112f --- /dev/null +++ b/media-sound/cdtool/files/cdtool-2.1.8-fix-build-system.patch @@ -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; \ |