summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2010-07-17 10:25:40 +0000
committerJeroen Roovers <jer@gentoo.org>2010-07-17 10:25:40 +0000
commit94b0aa7086c5a5f0a03fb1f574a99bd59356b6df (patch)
tree7455ba1216923e50873fb33d602e3693b201bb09 /dev-util/indent/files
parentSilent patchset bump to ooo-build 3.2.1.4, couple of bugfixes (diff)
downloadhistorical-94b0aa7086c5a5f0a03fb1f574a99bd59356b6df.tar.gz
historical-94b0aa7086c5a5f0a03fb1f574a99bd59356b6df.tar.bz2
historical-94b0aa7086c5a5f0a03fb1f574a99bd59356b6df.zip
Old.
Package-Manager: portage-2.2_rc67/cvs/Linux i686
Diffstat (limited to 'dev-util/indent/files')
-rw-r--r--dev-util/indent/files/2.2.10-man.patch14
-rw-r--r--dev-util/indent/files/2.2.10-segfault.patch32
2 files changed, 0 insertions, 46 deletions
diff --git a/dev-util/indent/files/2.2.10-man.patch b/dev-util/indent/files/2.2.10-man.patch
deleted file mode 100644
index 30a6460c07a8..000000000000
--- a/dev-util/indent/files/2.2.10-man.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-* Make sure it's built before it's used (thanks to Drake Wyrm).
-
-
---- indent-2.2.10/man/Makefile.am.orig 2008-03-11 19:50:42.000000000 +0100
-+++ indent-2.2.10/man/Makefile.am 2009-11-23 04:11:17.000000000 +0100
-
-@@ -10,6 +10,6 @@
-
- MAINTAINERCLEANFILES = @PACKAGE@.1 Makefile.in texinfo2man
-
--@PACKAGE@.1: ${srcdir}/@PACKAGE@.1.in ${srcdir}/../doc/@PACKAGE@.texinfo texinfo2man.c Makefile.am
-+@PACKAGE@.1: ${srcdir}/@PACKAGE@.1.in ${srcdir}/../doc/@PACKAGE@.texinfo texinfo2man Makefile.am
- ./texinfo2man ${srcdir}/@PACKAGE@.1.in ${srcdir}/../doc/@PACKAGE@.texinfo > $@
-
diff --git a/dev-util/indent/files/2.2.10-segfault.patch b/dev-util/indent/files/2.2.10-segfault.patch
deleted file mode 100644
index 372a3db2e82f..000000000000
--- a/dev-util/indent/files/2.2.10-segfault.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- indent-2.2.10/man/texinfo2man.c.orig 2008-03-11 19:50:42.000000000 +0100
-+++ indent-2.2.10/man/texinfo2man.c 2009-11-23 06:06:43.000000000 +0100
-@@ -3,6 +3,7 @@
- #include <malloc.h>
- #include <string.h>
- #include <ctype.h>
-+#include <stdlib.h>
-
- /* texinfo2man.
- * Convert a texinfo document to man format.
-@@ -163,7 +164,7 @@
-
- static char value_updated[64], value_edition[64], value_version[64];
-
--process_texi (FILE * in)
-+void process_texi (FILE * in)
- {
- char buf[1024];
- int in_block = 0;
-@@ -253,6 +254,12 @@
- char buf[1024];
- int line_no = 0;
-
-+ if (argc != 3) {
-+ fprintf(stderr, "Usage: %s <man template> <info file>\n", argv[0]);
-+ fprintf(stderr, " The man page will be written to stdout.\n");
-+ return -1;
-+ }
-+
- texinfoname = argv[2];
-
- in = fopen (argv[2], "r");