diff options
author | martti <martti@pkgsrc.org> | 2001-12-10 18:24:10 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2001-12-10 18:24:10 +0000 |
commit | 66e09d55d0ef523824d16b1e206bc07c20d258ab (patch) | |
tree | 3ade228354598acdeefdec8164f923d87585aa93 /devel/cvsps/patches | |
parent | c2f822fdc32b45faca859a85fe303c51537d0a0f (diff) | |
download | pkgsrc-66e09d55d0ef523824d16b1e206bc07c20d258ab.tar.gz |
Added cvsps-1.3 (provided by Amitai Schlair in pkg/14878)
CVSps is a program for generating 'patchset' information from a
CVS repository. A patchset in this case is defined as a set of
changes made to a collection of files, and all committed at the
same time (using a single 'cvs commit' command). This information
is valuable to seeing the big picture of the evolution of a cvs
project. While cvs tracks revision information, it is often difficult
to see what changes were committed 'atomically' to the repository.
Diffstat (limited to 'devel/cvsps/patches')
-rw-r--r-- | devel/cvsps/patches/patch-aa | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/devel/cvsps/patches/patch-aa b/devel/cvsps/patches/patch-aa new file mode 100644 index 00000000000..1002494ca35 --- /dev/null +++ b/devel/cvsps/patches/patch-aa @@ -0,0 +1,32 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/12/10 18:24:10 martti Exp $ + +--- Makefile.orig Wed Dec 5 17:07:47 2001 ++++ Makefile +@@ -1,7 +1,6 @@ + MAJOR=1 + MINOR=3 +-CC=gcc +-CFLAGS=-g -O2 -Wall -I. -DVERSION=\"$(MAJOR).$(MINOR)\" ++CFLAGS+=-I. -DVERSION=\"$(MAJOR).$(MINOR)\" + OBJS=\ + cbtcommon/debug.o\ + cbtcommon/hash.o\ +@@ -9,13 +8,13 @@ + cvsps.o + + cvsps: $(OBJS) +- gcc -o cvsps $(OBJS) ++ ${CC} -o cvsps $(OBJS) + + install: +- [ -d /usr/local/bin ] || mkdir -p /usr/local/bin +- [ -d /usr/local/man/man1 ] || mkdir -p /usr/local/man/man1 +- install cvsps /usr/local/bin +- install -m 644 cvsps.1 /usr/local/man/man1 ++ [ -d ${PREFIX}/bin ] || mkdir -p ${PREFIX}/bin ++ [ -d ${PREFIX}/man/man1 ] || mkdir -p ${PREFIX}/man/man1 ++ install cvsps ${PREFIX}/bin ++ install -m 644 cvsps.1 ${PREFIX}/man/man1 + + clean: + rm -f cvsps *.o cbtcommon/*.o core |