diff options
author | wiz <wiz@pkgsrc.org> | 2003-03-22 06:05:26 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-03-22 06:05:26 +0000 |
commit | e21108c56ca7c9a1b1be012921ef34d66eab0372 (patch) | |
tree | cd6bf92fa6dcd0f4e6318936b53ae95c0a16c27a | |
parent | 05263990f90d999a16fafc3c68e251a3f043b296 (diff) | |
download | pkgsrc-e21108c56ca7c9a1b1be012921ef34d66eab0372.tar.gz |
Remove obsolete "-y" flag from sort call; bump PKGREVISION.
Patch from Istvan Marko in PR 19425.
-rw-r--r-- | devel/cscope/Makefile | 3 | ||||
-rw-r--r-- | devel/cscope/distinfo | 3 | ||||
-rw-r--r-- | devel/cscope/patches/patch-ae | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/devel/cscope/Makefile b/devel/cscope/Makefile index 29bae219bc6..743fd023671 100644 --- a/devel/cscope/Makefile +++ b/devel/cscope/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.20 2002/10/13 14:06:04 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2003/03/22 06:05:26 wiz Exp $ # DISTNAME= cscope-15.3 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cscope/} diff --git a/devel/cscope/distinfo b/devel/cscope/distinfo index 7b990d3a2c2..181b13aa163 100644 --- a/devel/cscope/distinfo +++ b/devel/cscope/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2002/06/12 13:16:50 seb Exp $ +$NetBSD: distinfo,v 1.6 2003/03/22 06:05:26 wiz Exp $ SHA1 (cscope-15.3.tar.gz) = ece72d2ede173dec0536003c4f8ab0fe7b0b3f11 Size (cscope-15.3.tar.gz) = 196580 bytes @@ -6,3 +6,4 @@ SHA1 (patch-aa) = 0212dd5ee9777bb2987cc57dca3747299b065f4f SHA1 (patch-ab) = 6390a64ebb7b03b9b29af1f71fac3137b5d7957c SHA1 (patch-ac) = 46fb2edc1ddec03c0ac50f87acde2b59f907e12b SHA1 (patch-ad) = 4864f8afa7b6090d60d5509d1544b913cb4fcd51 +SHA1 (patch-ae) = ec8cc3c59f6a765a903e62ad4b1e391c74052fee diff --git a/devel/cscope/patches/patch-ae b/devel/cscope/patches/patch-ae new file mode 100644 index 00000000000..f09d79c09eb --- /dev/null +++ b/devel/cscope/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.3 2003/03/22 06:05:27 wiz Exp $ + +--- src/main.c.orig Fri Jun 1 14:43:24 2001 ++++ src/main.c +@@ -1056,7 +1056,7 @@ build(void) + } + (void) fstat(fileno(postings), &statstruct); + (void) fclose(postings); +- (void) sprintf(sortcommand, "env LC_ALL=C sort -y -T %s %s", tmpdir, temp1); ++ (void) sprintf(sortcommand, "env LC_ALL=C sort -T %s %s", tmpdir, temp1); + if ((postings = mypopen(sortcommand, "r")) == NULL) { + (void) fprintf(stderr, "cscope: cannot open pipe to sort command\n"); + cannotindex(); |