summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorgdt <gdt>2013-08-05 02:10:07 +0000
committergdt <gdt>2013-08-05 02:10:07 +0000
commitbef2b58d1e0dde897903dadbb1e10d6c8e9f14c0 (patch)
tree6d4eaf2f89347baeafc3b7029ee19168a8546b8e /devel
parente6ae3f9fd22f4ccff6acdba1fc216ceb0cb81132 (diff)
downloadpkgsrc-bef2b58d1e0dde897903dadbb1e10d6c8e9f14c0.tar.gz
Update to 0.5 (ok apb@).
0.5 @ 2013-05-21 CVS-NT support. Code is Coverity-clean.
Diffstat (limited to 'devel')
-rw-r--r--devel/cvs-fast-export/Makefile4
-rw-r--r--devel/cvs-fast-export/distinfo10
-rw-r--r--devel/cvs-fast-export/patches/patch-Makefile22
3 files changed, 21 insertions, 15 deletions
diff --git a/devel/cvs-fast-export/Makefile b/devel/cvs-fast-export/Makefile
index 1471e3c9b32..0f5cc286260 100644
--- a/devel/cvs-fast-export/Makefile
+++ b/devel/cvs-fast-export/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2013/05/26 01:52:40 ryoon Exp $
+# $NetBSD: Makefile,v 1.3 2013/08/05 02:10:07 gdt Exp $
#
-DISTNAME= cvs-fast-export-0.4
+DISTNAME= cvs-fast-export-0.5
CATEGORIES= devel
MASTER_SITES= http://www.catb.org/~esr/cvs-fast-export/
diff --git a/devel/cvs-fast-export/distinfo b/devel/cvs-fast-export/distinfo
index 19fb621f5b1..0c441915359 100644
--- a/devel/cvs-fast-export/distinfo
+++ b/devel/cvs-fast-export/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2013/05/26 01:52:40 ryoon Exp $
+$NetBSD: distinfo,v 1.3 2013/08/05 02:10:07 gdt Exp $
-SHA1 (cvs-fast-export-0.4.tar.gz) = 528fa1881996c93b4afb3652b8445d2ec6bfd09e
-RMD160 (cvs-fast-export-0.4.tar.gz) = 7fdd19bfd050bac1a6f46fee6245922b2314553e
-Size (cvs-fast-export-0.4.tar.gz) = 83390 bytes
-SHA1 (patch-Makefile) = abbc0f75ba1276630588d3787805888f471633bf
+SHA1 (cvs-fast-export-0.5.tar.gz) = b7ccd8fd348afc859c54a98dda18b92c6b62db1a
+RMD160 (cvs-fast-export-0.5.tar.gz) = b1701d4656ce1ab0e0d9c58981ad7858598b8b21
+Size (cvs-fast-export-0.5.tar.gz) = 83565 bytes
+SHA1 (patch-Makefile) = 2b30aaf8d83b7372173aa0190afc858a2f85fbe9
diff --git a/devel/cvs-fast-export/patches/patch-Makefile b/devel/cvs-fast-export/patches/patch-Makefile
index 13cd3ad3d16..a68c7e36423 100644
--- a/devel/cvs-fast-export/patches/patch-Makefile
+++ b/devel/cvs-fast-export/patches/patch-Makefile
@@ -1,26 +1,32 @@
-$NetBSD: patch-Makefile,v 1.2 2013/05/26 01:52:40 ryoon Exp $
+$NetBSD: patch-Makefile,v 1.3 2013/08/05 02:10:07 gdt Exp $
* Add "all" target.
* Use ${PREFIX} variable.
* Install man pages in ${PREFIX}/${PKGMANDIR}, not ${PREFIX}/share/man.
---- Makefile.orig 2013-05-16 16:52:16.000000000 +0000
+--- Makefile.orig 2013-05-22 03:23:56.000000000 +0000
+++ Makefile
-@@ -2,9 +2,12 @@
- #
+@@ -3,8 +3,9 @@
# Build requirements: A C compiler, yacc, lex, and asciidoc.
-+all: cvs-fast-export cvs-fast-export.1
-+
INSTALL = install
-prefix?=/usr/local
+prefix=$(PREFIX)
target=$(DESTDIR)$(prefix)
+mandir=$(PKGMANDIR)
+ LEX=/usr/bin/flex
+
+ VERSION=0.5
+@@ -25,6 +26,8 @@ OBJS=gram.o lex.o main.o cvsutil.o revdi
+ revlist.o atom.o revcvs.o generate.o export.o \
+ nodehash.o tags.o authormap.o graph.o
- VERSION=0.4
++all: cvs-fast-export cvs-fast-export.1
++
+ cvs-fast-export: $(OBJS)
+ cc $(CFLAGS) -o $@ $(OBJS)
-@@ -49,9 +52,9 @@ clean:
+@@ -56,9 +59,9 @@ clean:
install: cvs-fast-export.1 all
$(INSTALL) -d "$(target)/bin"