summaryrefslogtreecommitdiff
path: root/devel/cvsps
diff options
context:
space:
mode:
authorschmonz <schmonz>2002-08-02 15:29:49 +0000
committerschmonz <schmonz>2002-08-02 15:29:49 +0000
commit75739b31fdc12ab527c8698975aa609ec65a0d72 (patch)
treea73ba51d57263ccbbdc1bfad93c4745db9a41547 /devel/cvsps
parente2cad53d52e9e4521a11f4afd767c64c27d8148c (diff)
downloadpkgsrc-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')
-rw-r--r--devel/cvsps/Makefile6
-rw-r--r--devel/cvsps/distinfo8
-rw-r--r--devel/cvsps/patches/patch-aa35
3 files changed, 15 insertions, 34 deletions
diff --git a/devel/cvsps/Makefile b/devel/cvsps/Makefile
index c7e6d2838eb..189c3b189d5 100644
--- a/devel/cvsps/Makefile
+++ b/devel/cvsps/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.2 2002/07/22 00:13:14 schmonz Exp $
+# $NetBSD: Makefile,v 1.3 2002/08/02 15:29:49 schmonz Exp $
#
-DISTNAME= cvsps-1.3
+DISTNAME= cvsps-1.3.2
CATEGORIES= devel
-MASTER_SITES= http://www.cobite.com/cvsps/
+MASTER_SITES= ${HOMEPAGE}
MAINTAINER= schmonz@netbsd.org
HOMEPAGE= http://www.cobite.com/cvsps/
diff --git a/devel/cvsps/distinfo b/devel/cvsps/distinfo
index 2e7934508fc..4486d954fc6 100644
--- a/devel/cvsps/distinfo
+++ b/devel/cvsps/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2001/12/10 18:24:10 martti Exp $
+$NetBSD: distinfo,v 1.2 2002/08/02 15:29:49 schmonz Exp $
-SHA1 (cvsps-1.3.tar.gz) = 065edfc3d4a4c3f1a877a30889f498baa1a8f9fe
-Size (cvsps-1.3.tar.gz) = 25082 bytes
-SHA1 (patch-aa) = 4b712246eaab4fa13b7e6fa1419dfe35486a3598
+SHA1 (cvsps-1.3.2.tar.gz) = ddc7e28855026b903e10a0d0836921e4bd186e7a
+Size (cvsps-1.3.2.tar.gz) = 26551 bytes
+SHA1 (patch-aa) = 0bd050fb7052a48292bf535b246d0c48ca8d701c
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