diff options
author | David Seifert <soap@gentoo.org> | 2019-10-16 13:39:39 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-10-16 13:39:39 +0200 |
commit | 9d5f3f70e787dcd5b833fe99048ac849d218e4da (patch) | |
tree | 7223545723b143acfe5581638940664debd8046d /media-sound/dcd/files | |
parent | media-sound/cdplay: Port to EAPI 7 (diff) | |
download | gentoo-9d5f3f70e787dcd5b833fe99048ac849d218e4da.tar.gz gentoo-9d5f3f70e787dcd5b833fe99048ac849d218e4da.tar.bz2 gentoo-9d5f3f70e787dcd5b833fe99048ac849d218e4da.zip |
media-sound/dcd: Port to EAPI 7
Bug: https://bugs.gentoo.org/697274
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/dcd/files')
-rw-r--r-- | media-sound/dcd/files/dcd-0.95-Wimplicit-function-declaration.patch | 20 | ||||
-rw-r--r-- | media-sound/dcd/files/dcd-0.95-makefile.patch | 6 |
2 files changed, 22 insertions, 4 deletions
diff --git a/media-sound/dcd/files/dcd-0.95-Wimplicit-function-declaration.patch b/media-sound/dcd/files/dcd-0.95-Wimplicit-function-declaration.patch new file mode 100644 index 000000000000..d3160424fc20 --- /dev/null +++ b/media-sound/dcd/files/dcd-0.95-Wimplicit-function-declaration.patch @@ -0,0 +1,20 @@ +--- a/dcd.c ++++ b/dcd.c +@@ -23,6 +23,7 @@ + #include <stdlib.h> + #include <ctype.h> + #include <getopt.h> ++#include <time.h> + + #define ZERO 0 + #define MAX_TRACKS 103 +--- a/screenop.c ++++ b/screenop.c +@@ -10,6 +10,7 @@ + #include "cdindex.h" + #include <unistd.h> + #include <stdio.h> ++#include <string.h> + + void disk_directory(void) { + u_char ct = cd_current_track(); diff --git a/media-sound/dcd/files/dcd-0.95-makefile.patch b/media-sound/dcd/files/dcd-0.95-makefile.patch index b59fedb6180c..c5ea478beb1d 100644 --- a/media-sound/dcd/files/dcd-0.95-makefile.patch +++ b/media-sound/dcd/files/dcd-0.95-makefile.patch @@ -1,7 +1,5 @@ -Index: dcd-0.95/Makefile -=================================================================== ---- dcd-0.95.orig/Makefile -+++ dcd-0.95/Makefile +--- a/Makefile ++++ b/Makefile @@ -114,7 +114,7 @@ all: ${PROGS} $(CC) -c $(CFLAGS) ${EXTRA_CFLAGS} $< -o $@ |