summaryrefslogtreecommitdiff
path: root/app-misc/cdctl/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-02-10 15:40:27 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-02-10 15:40:27 +0000
commit6bc2e4d7c5906e46a8f275a876ead6ec41aca5bb (patch)
treecee0a97398040001220ece3cd48c3d568bcddb4a /app-misc/cdctl/files
parent1db00cc6e94b90c08090bb5b8c406622946c4ae5 (diff)
gentoo resync : 10.02.2019
Diffstat (limited to 'app-misc/cdctl/files')
-rw-r--r--app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch56
-rw-r--r--app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch13
2 files changed, 0 insertions, 69 deletions
diff --git a/app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch b/app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch
deleted file mode 100644
index 6d8e11502fcc..000000000000
--- a/app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch
+++ /dev/null
@@ -1,56 +0,0 @@
---- Makefile.in.orig 2003-02-20 21:57:38.000000000 -0800
-+++ Makefile.in 2003-02-20 22:27:10.000000000 -0800
-@@ -2,10 +2,12 @@
- CFLAGS=-Wall -g
- BINS=cdctl sndreset
- OBJS=cdctl.o version.o ioctls.o iso_header.o
--DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README SEGFAULTS
-+DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README
- MANS=cdctl.1
- MOS=cdctl.mo
-
-+prefix = @prefix@
-+exec_prefix = @exec_prefix@
- bindir = @bindir@
- mandir = @mandir@
- datadir = @datadir@
-@@ -16,6 +18,10 @@
- INSTALL = @INSTALL@
- INSTALL_DATA = $(INSTALL) -m 644
-
-+DESTDIR =
-+
-+man1dir = $(mandir)/man1
-+
- all: $(BINS)
-
- cdctl: $(OBJS)
-@@ -26,21 +32,21 @@
- version.o: version.c
- iso_header.o: iso_header.c
-
--install: install-bins install-docs install-mans install-mos
-+install: install-bins install-mans install-mos
-
- install-bins: $(BINS)
-- $(INSTALL) -s $(BINS) $(bindir)
--
--install-docs: $(DOCS)
-- $(INSTALL_DATA) $(DOCS) $(datadir)
-+ $(INSTALL) -d $(DESTDIR)$(bindir)
-+ $(INSTALL) $(BINS) $(DESTDIR)$(bindir)
-
- install-mans: $(MANS)
-- $(INSTALL_DATA) $(MANS) $(mandir)
-+ $(INSTALL) -d $(DESTDIR)$(man1dir)
-+ $(INSTALL_DATA) $(MANS) $(DESTDIR)$(man1dir)
-
- # FIXME: need to deal with other languages besides German
-
- install-mos: cdctl.mo
-- $(INSTALL_DATA) $(MOS) $(localedir)/de/LC_MESSAGES
-+ $(INSTALL) -d $(DESTDIR)$(localedir)/de/LC_MESSAGES
-+ $(INSTALL_DATA) $(MOS) $(DESTDIR)$(localedir)/de/LC_MESSAGES
-
- cdctl.mo: cdctl.po
- msgfmt cdctl.po -o cdctl.mo
diff --git a/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch b/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch
deleted file mode 100644
index 8e440955907b..000000000000
--- a/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -Naurp cdctl-0.15-orig/cdctl.c cdctl-0.15/cdctl.c
---- cdctl-0.15-orig/cdctl.c 2006-08-08 23:18:44.000000000 +0200
-+++ cdctl-0.15/cdctl.c 2006-08-08 23:19:33.000000000 +0200
-@@ -337,7 +337,9 @@ int do_print_capabilities(int cdrom) {
- printf("Can report media change: %i\n", (ret & CDC_MEDIA_CHANGED)?1:0);
- printf("Can play audio discs : %i\n", (ret & CDC_PLAY_AUDIO)?1:0);
- printf("Can do a hard reset : %i\n", (ret & CDC_RESET)?1:0);
-+#ifdef CDC_IOCTLS
- printf("Has non-standard ioctls: %i\n", (ret & CDC_IOCTLS)?1:0);
-+#endif
- printf("Can report drive status: %i\n", (ret & CDC_DRIVE_STATUS)?1:0);
-
- #ifdef CDROM_CHANGER_NSLOTS