summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-09-19 21:30:26 +0000
committerMike Frysinger <vapier@gentoo.org>2004-09-19 21:30:26 +0000
commit11c48f1e6c4c1f90979a40c9abd727eae8629dcb (patch)
tree2642166b40367e7f5d72068c0bf87b0d36c6c7f6 /sys-apps/groff
parentold (diff)
downloadhistorical-11c48f1e6c4c1f90979a40c9abd727eae8629dcb.tar.gz
historical-11c48f1e6c4c1f90979a40c9abd727eae8629dcb.tar.bz2
historical-11c48f1e6c4c1f90979a40c9abd727eae8629dcb.zip
unused patches
Diffstat (limited to 'sys-apps/groff')
-rw-r--r--sys-apps/groff/Manifest8
-rw-r--r--sys-apps/groff/files/groff-1.17.2-infoext.patch22
-rw-r--r--sys-apps/groff/files/groff-1.17.2-r3-gentoo.diff35
3 files changed, 3 insertions, 62 deletions
diff --git a/sys-apps/groff/Manifest b/sys-apps/groff/Manifest
index 9d90dd324094..fe98f9ab6fb1 100644
--- a/sys-apps/groff/Manifest
+++ b/sys-apps/groff/Manifest
@@ -5,8 +5,6 @@ MD5 b9c630b6fd14be13a38dd0caf3bb5fab ChangeLog 6334
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
MD5 0731e5193754b6fcbc962d13f0eef29b groff-1.18.1-r4.ebuild 3146
MD5 8fec09195793a74f9733ce4fa314dae5 groff-1.19.1-r1.ebuild 3442
-MD5 a48d15e8fbf117ad6d82f9198717be29 files/groff-1.17.2-infoext.patch 594
-MD5 11e713f291a441e744ed38f94a002097 files/groff-1.17.2-r3-gentoo.diff 984
MD5 c43ddaf604dd389afc6107d79b90ce6c files/groff-1.18-infoext.patch 673
MD5 ab6a81383557e8cf8eed1e9b15d45540 files/groff-1.18-no-netpbm-depend.patch 367
MD5 98060417290f3c427f5a3406b21f8da9 files/groff-1.18.1-no-color-segfault.patch 896
@@ -18,7 +16,7 @@ MD5 b70471bdc7015ddf030d176b3a0f2d5f files/groff-1.19.1-stack.patch 3659
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.9.10 (GNU/Linux)
-iD8DBQFBTfohHTu7gpaalycRAn1LAKC5gRuqt3D1bzV5EPzsdItwjnEnmgCcCG6B
-PFJw9AOT2BnOF2gUROjyuYk=
-=bV4s
+iD8DBQFBTfqIHTu7gpaalycRAsOHAKDKkwR7JnEQrsAzgcv2kq8XHoOoHACg8vYM
+9E1q25ZzgLg9R6RbMJGfpqU=
+=fn16
-----END PGP SIGNATURE-----
diff --git a/sys-apps/groff/files/groff-1.17.2-infoext.patch b/sys-apps/groff/files/groff-1.17.2-infoext.patch
deleted file mode 100644
index a7f0359af657..000000000000
--- a/sys-apps/groff/files/groff-1.17.2-infoext.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- groff-1.17.2/doc/Makefile.orig Mon Jul 29 17:41:44 2002
-+++ groff-1.17.2/doc/Makefile Mon Jul 29 17:42:06 2002
-@@ -65,7 +65,7 @@
- .texinfo.dvi:
- texi2dvi -e $<
-
--groff: groff.texinfo
-+groff.info: groff.texinfo
- makeinfo groff.texinfo
-
- install:
---- groff-1.17.2/doc/groff.texinfo.orig Mon Jul 29 17:41:24 2002
-+++ groff-1.17.2/doc/groff.texinfo Mon Jul 29 17:41:37 2002
-@@ -6,7 +6,7 @@
- @c
-
- @c %**start of header (This is for running Texinfo on a region.)
--@setfilename groff
-+@setfilename groff.info
- @settitle The GNU Troff Manual
- @setchapternewpage odd
- @footnotestyle separate
diff --git a/sys-apps/groff/files/groff-1.17.2-r3-gentoo.diff b/sys-apps/groff/files/groff-1.17.2-r3-gentoo.diff
deleted file mode 100644
index f9734de71fad..000000000000
--- a/sys-apps/groff/files/groff-1.17.2-r3-gentoo.diff
+++ /dev/null
@@ -1,35 +0,0 @@
---- groff-1.17.2.orig/src/preproc/pic/pic.y
-+++ groff-1.17.2/src/preproc/pic/pic.y
-@@ -1769,8 +1769,7 @@
- return strsave(form);
- }
- }
-- sprintf(sprintf_buf, form, n);
-- return strsave(sprintf_buf);
-+ return do_sprintf(form, &n, 1);
- }
-
- char *do_sprintf(const char *form, const double *v, int nv)
-@@ -1792,18 +1791,19 @@
- if (*form == '%') {
- one_format += *form++;
- one_format += '\0';
-- sprintf(sprintf_buf, one_format.contents());
-+ snprintf(sprintf_buf, sizeof(sprintf_buf), "%s", one_format.contents());
- }
- else {
- if (i >= nv) {
-- lex_error("too few arguments to sprintf");
-+ lex_error("too few arguments to snprintf");
- result += one_format;
- result += form;
- break;
- }
- one_format += *form++;
- one_format += '\0';
-- sprintf(sprintf_buf, one_format.contents(), v[i++]);
-+ snprintf(sprintf_buf, sizeof(sprintf_buf),
-+ one_format.contents(), v[i++]);
- }
- one_format.clear();
- result += sprintf_buf;