diff options
author | grant <grant@pkgsrc.org> | 2003-07-02 05:27:04 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-07-02 05:27:04 +0000 |
commit | 859f61b13fa4a87122685f34f4686f5d94dc0dfc (patch) | |
tree | 0c4be8f91cfd23d2097caa2708f95e66d2023e11 | |
parent | 469c5d406564ce156e8c398be60a347e3b69b6da (diff) | |
download | pkgsrc-859f61b13fa4a87122685f34f4686f5d94dc0dfc.tar.gz |
makeinfo: split info files at 50000 (as per texinfo 4.5 and below)
to maintain conistency of the generated files as currently required
by pkgsrc.
bump PKGREVISION.
(perhaps info files will be automatically added to the PLIST in the
future?)
-rw-r--r-- | devel/gtexinfo/Makefile | 3 | ||||
-rw-r--r-- | devel/gtexinfo/PLIST | 19 | ||||
-rw-r--r-- | devel/gtexinfo/distinfo | 3 | ||||
-rw-r--r-- | devel/gtexinfo/patches/patch-aa | 15 |
4 files changed, 37 insertions, 3 deletions
diff --git a/devel/gtexinfo/Makefile b/devel/gtexinfo/Makefile index 79218f519c6..4bedbac8217 100644 --- a/devel/gtexinfo/Makefile +++ b/devel/gtexinfo/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.38 2003/06/23 11:07:57 seb Exp $ +# $NetBSD: Makefile,v 1.39 2003/07/02 05:27:04 grant Exp $ # DISTNAME= texinfo-4.6 +PKGREVISION= 1 PKGNAME= g${DISTNAME} CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=texinfo/} diff --git a/devel/gtexinfo/PLIST b/devel/gtexinfo/PLIST index 5009e3fe16a..be83cbca3cd 100644 --- a/devel/gtexinfo/PLIST +++ b/devel/gtexinfo/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2003/06/23 11:07:57 seb Exp $ +@comment $NetBSD: PLIST,v 1.8 2003/07/02 05:27:04 grant Exp $ bin/info bin/infokey bin/install-info @@ -6,11 +6,28 @@ bin/makeinfo bin/texi2dvi bin/texindex info/info-stnd.info +info/info-stnd.info-1 +info/info-stnd.info-2 +info/info-stnd.info-3 info/info.info +info/info.info-1 +info/info.info-2 info/texinfo info/texinfo-1 +info/texinfo-10 +info/texinfo-11 +info/texinfo-12 +info/texinfo-13 +info/texinfo-14 +info/texinfo-15 info/texinfo-2 info/texinfo-3 +info/texinfo-4 +info/texinfo-5 +info/texinfo-6 +info/texinfo-7 +info/texinfo-8 +info/texinfo-9 man/man1/info.1 man/man1/install-info.1 man/man1/makeinfo.1 diff --git a/devel/gtexinfo/distinfo b/devel/gtexinfo/distinfo index 340531d0002..43ae6e88e9c 100644 --- a/devel/gtexinfo/distinfo +++ b/devel/gtexinfo/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.12 2003/06/12 13:39:27 wiz Exp $ +$NetBSD: distinfo,v 1.13 2003/07/02 05:27:04 grant Exp $ SHA1 (texinfo-4.6.tar.bz2) = 52103579a90d49229fb30968bbe4e55a502857d3 Size (texinfo-4.6.tar.bz2) = 1348113 bytes +SHA1 (patch-aa) = 046f8dade6bec631fb97455e2bfa25f4e2cb01d2 SHA1 (patch-ac) = bf22fe2b8920c88a357ce9c1202690ed291c5b92 SHA1 (patch-ad) = 1c998cdb8b0831e15eef7df6c4f8ef108455619e SHA1 (patch-ai) = 8a1e92497d3a6cd5dec50ec9e9cf35046d214c8c diff --git a/devel/gtexinfo/patches/patch-aa b/devel/gtexinfo/patches/patch-aa new file mode 100644 index 00000000000..a951197eae6 --- /dev/null +++ b/devel/gtexinfo/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.10 2003/07/02 05:27:05 grant Exp $ + +--- makeinfo/makeinfo.h.orig Mon May 12 23:12:32 2003 ++++ makeinfo/makeinfo.h +@@ -272,7 +272,9 @@ DECLARE (int, expensive_validation, 0); + /* Stuff for splitting large files. The numbers for Emacs + texinfo-format-buffer are much smaller, but memory capacities have + increased so much, 50k info files seem a bit tiny these days. */ +-#define DEFAULT_SPLIT_SIZE 300000 ++ ++/* XXX: reduced to 50000 for pkgsrc consistency */ ++#define DEFAULT_SPLIT_SIZE 50000 + DECLARE (int, splitting, 1); /* Defaults to true for now. */ + + #define skip_whitespace() \ |