diff options
author | wiz <wiz@pkgsrc.org> | 2004-05-05 13:25:27 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-05-05 13:25:27 +0000 |
commit | f70122675249cdc338e1c5f6125226c40749a58e (patch) | |
tree | 55b1661a4737f3cc062041e4c52715c4398117e3 /devel | |
parent | a9466af654ce8312772bf797793448532ed685bd (diff) | |
download | pkgsrc-f70122675249cdc338e1c5f6125226c40749a58e.tar.gz |
Add patch from Kailash Sethuraman in PR 25471 that removes an obsolete
sort(1) flag. PKGREVISION=2.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cscope/Makefile | 4 | ||||
-rw-r--r-- | devel/cscope/distinfo | 3 | ||||
-rw-r--r-- | devel/cscope/patches/patch-ae | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/devel/cscope/Makefile b/devel/cscope/Makefile index 16b7a0d4bb4..b7caf83021a 100644 --- a/devel/cscope/Makefile +++ b/devel/cscope/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.33 2004/02/15 23:46:17 minskim Exp $ +# $NetBSD: Makefile,v 1.34 2004/05/05 13:25:27 wiz Exp $ # DISTNAME= cscope-15.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cscope/} diff --git a/devel/cscope/distinfo b/devel/cscope/distinfo index 0f0d91e6135..aa959526c9e 100644 --- a/devel/cscope/distinfo +++ b/devel/cscope/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2003/07/12 07:04:32 wiz Exp $ +$NetBSD: distinfo,v 1.8 2004/05/05 13:25:27 wiz Exp $ SHA1 (cscope-15.4.tar.gz) = 4b70bc0b3c87e5b3f032f9bd93af09ac861ca539 Size (cscope-15.4.tar.gz) = 224057 bytes @@ -6,3 +6,4 @@ SHA1 (patch-aa) = 0212dd5ee9777bb2987cc57dca3747299b065f4f SHA1 (patch-ab) = 66042af02a5af64111a914aebcb4d7a74f421442 SHA1 (patch-ac) = 46fb2edc1ddec03c0ac50f87acde2b59f907e12b SHA1 (patch-ad) = b3975c7abfcbd2081fc63b9857b0f162400dc075 +SHA1 (patch-ae) = b57c9bc91a88064dfa8dcb7592cd862eb926c7f1 diff --git a/devel/cscope/patches/patch-ae b/devel/cscope/patches/patch-ae new file mode 100644 index 00000000000..8e76a3247f3 --- /dev/null +++ b/devel/cscope/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.5 2004/05/05 13:25:27 wiz Exp $ + +--- src/build.c.orig 2001-11-22 18:38:19.000000000 +0100 ++++ src/build.c +@@ -443,7 +443,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(); |