diff options
author | schmonz <schmonz> | 2002-08-02 15:29:49 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2002-08-02 15:29:49 +0000 |
commit | 75739b31fdc12ab527c8698975aa609ec65a0d72 (patch) | |
tree | a73ba51d57263ccbbdc1bfad93c4745db9a41547 /devel/cvsps/patches | |
parent | e2cad53d52e9e4521a11f4afd767c64c27d8148c (diff) | |
download | pkgsrc-75739b31fdc12ab527c8698975aa609ec65a0d72.tar.gz |
Update to 1.3.2. Changes:
1.3.2 (small feature release)
- added the 'multi-patchset' feature to the -s option, provided in its
entirety by Daiki Ueno <ueno@unixuser.org>
1.3.1 (bugfix release mostly)
- fix bug with updating cache (-u) having to do with matching new and old
revisions
- fix timestamp_fuzz_factor bug where the fuzz was applied to loading
from cache by mistake.
- add a spec file (from Jan IVEN <Jan.Iven@cern.ch>)
- improve the parameterization of Makefile, and make things relocatable
(from many people, esp. Amitai Schlair <schmonz@schmonz.com>)
- fix strip_path_len calculation (again - I had munged the prior fix)
Jeffrey Ebert <ebert@sonicsinc.com>
Diffstat (limited to 'devel/cvsps/patches')
-rw-r--r-- | devel/cvsps/patches/patch-aa | 35 |
1 files changed, 8 insertions, 27 deletions
diff --git a/devel/cvsps/patches/patch-aa b/devel/cvsps/patches/patch-aa index 1002494ca35..d0b3907b38b 100644 --- a/devel/cvsps/patches/patch-aa +++ b/devel/cvsps/patches/patch-aa @@ -1,32 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/12/10 18:24:10 martti Exp $ +$NetBSD: patch-aa,v 1.2 2002/08/02 15:29:51 schmonz Exp $ ---- Makefile.orig Wed Dec 5 17:07:47 2001 +--- Makefile.orig Tue Jul 2 10:20:03 2002 +++ Makefile -@@ -1,7 +1,6 @@ - MAJOR=1 - MINOR=3 --CC=gcc --CFLAGS=-g -O2 -Wall -I. -DVERSION=\"$(MAJOR).$(MINOR)\" -+CFLAGS+=-I. -DVERSION=\"$(MAJOR).$(MINOR)\" +@@ -3,7 +3,7 @@ MINOR=3.2 + CC?=gcc + CFLAGS?=-g -O2 -Wall + CFLAGS+=-I. -DVERSION=\"$(MAJOR).$(MINOR)\" +-prefix?=/usr/local ++prefix?=${PREFIX} 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 |