summaryrefslogtreecommitdiff
path: root/net/cvsup
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1996-12-14 20:13:27 +0000
committerJohn Polstra <jdp@FreeBSD.org>1996-12-14 20:13:27 +0000
commit35c1e6484a0a606420dfb5e86f316d0abaafd753 (patch)
treedeee48734ab97c4b919bbec32a52412a65d09450 /net/cvsup
parentUpdate from version 13.5 to version 14.0. (diff)
Update from version 13.5 to version 14.0.
Notes
Notes: svn path=/head/; revision=4973
Diffstat (limited to 'net/cvsup')
-rw-r--r--net/cvsup/distinfo2
-rw-r--r--net/cvsup/pkg-plist6
-rw-r--r--net/cvsup/scripts/configure17
3 files changed, 21 insertions, 4 deletions
diff --git a/net/cvsup/distinfo b/net/cvsup/distinfo
index adaa74d8791a..19ac30814f9c 100644
--- a/net/cvsup/distinfo
+++ b/net/cvsup/distinfo
@@ -1 +1 @@
-MD5 (cvsup-13.5.tar.gz) = 82c6dc9290fb1ce055a6027670af57f6
+MD5 (cvsup-14.0.tar.gz) = 331bb5c114bac2053eeaa46eaa8f19c3
diff --git a/net/cvsup/pkg-plist b/net/cvsup/pkg-plist
index 5a27d1428aa4..a9e73fba1796 100644
--- a/net/cvsup/pkg-plist
+++ b/net/cvsup/pkg-plist
@@ -1,6 +1,6 @@
-sbin/cvsup
-sbin/cvsupd
-sbin/supconv
+bin/cvsup
+bin/supconv
man/man1/cvsup.1.gz
man/man1/supconv.1.gz
man/man8/cvsupd.8.gz
+sbin/cvsupd
diff --git a/net/cvsup/scripts/configure b/net/cvsup/scripts/configure
new file mode 100644
index 000000000000..e5f60ac54e06
--- /dev/null
+++ b/net/cvsup/scripts/configure
@@ -0,0 +1,17 @@
+#! /bin/sh
+#
+# $Id$
+
+cd ${WRKSRC}
+
+files_to_patch="\
+ client/src/cvsup.1 \
+ server/src/cvsupd.8 \
+ suplib/src/SupMisc.i3 \
+ suplib/src/m3makefile"
+
+for i in ${files_to_patch}; do
+ rm -f ${i}.new
+ sed -e "s|/usr/local/|${PREFIX}/|g" ${i} >${i}.new || exit 1
+ mv -f ${i}.new ${i} || exit 1
+done