summaryrefslogtreecommitdiff
path: root/app-text/rman/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-text/rman/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-text/rman/files')
-rw-r--r--app-text/rman/files/rman-3.2-format-security.patch16
-rw-r--r--app-text/rman/files/rman-3.2-gentoo.diff19
-rw-r--r--app-text/rman/files/rman-3.2-ldflags.patch13
3 files changed, 0 insertions, 48 deletions
diff --git a/app-text/rman/files/rman-3.2-format-security.patch b/app-text/rman/files/rman-3.2-format-security.patch
deleted file mode 100644
index 77070026bdb9..000000000000
--- a/app-text/rman/files/rman-3.2-format-security.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- rman.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/rman.c b/rman.c
-index d09e547..e5fc88d 100644
---- a/rman.c
-+++ b/rman.c
-@@ -1372,7 +1372,7 @@ HTML(enum command cmd) {
- break;
- case BEGINSECTION: break;
- case ENDSECTION:
-- if (sectheadid==NAME && message!=NULL) printf(message);
-+ if (sectheadid==NAME && message!=NULL) printf("%s", message);
- break;
- case BEGINSUBSECTION: break;
- case ENDSUBSECTION: break;
diff --git a/app-text/rman/files/rman-3.2-gentoo.diff b/app-text/rman/files/rman-3.2-gentoo.diff
deleted file mode 100644
index ece1e3807e66..000000000000
--- a/app-text/rman/files/rman-3.2-gentoo.diff
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -urN rman-3.2.orig/Makefile rman-3.2/Makefile
---- rman-3.2.orig/Makefile 2003-07-26 12:15:00.000000000 -0700
-+++ rman-3.2/Makefile 2005-07-12 01:01:37.000000000 -0700
-@@ -15,13 +15,8 @@
- # this must be a directory that's in your bin PATH.
- # MANDIR holds the man page.
-
--BINDIR = /opt/local/bin
--#BINDIR = /usr/local/bin
--#BINDIR = //C/bin
--MANDIR = /usr/local/man/man1
--# popular alternative
--#BINDIR = /opt/local/bin
--#MANDIR = /opt/local/man/man1
-+BINDIR = /usr/bin
-+MANDIR = /usr/share/man/man1
-
-
- ### if you have GNU gcc, use these definitions
diff --git a/app-text/rman/files/rman-3.2-ldflags.patch b/app-text/rman/files/rman-3.2-ldflags.patch
deleted file mode 100644
index 4a6f5f5d9eab..000000000000
--- a/app-text/rman/files/rman-3.2-ldflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: rman-3.2/Makefile
-===================================================================
---- rman-3.2.orig/Makefile
-+++ rman-3.2/Makefile
-@@ -102,7 +102,7 @@ all: rman
-
- # everyone but me zaps assertions with the -DNDEBUG flag
- rman: rman.c Makefile
-- $(CC) -DNDEBUG $(defs) -DPOLYGLOTMANVERSION=\"$(version)\" $(CFLAGS) -o rman rman.c
-+ $(CC) $(LDFLAGS) -DNDEBUG $(defs) -DPOLYGLOTMANVERSION=\"$(version)\" $(CFLAGS) -o rman rman.c
-
-
- debug: