diff options
author | John Polstra <jdp@FreeBSD.org> | 1996-12-14 20:13:27 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 1996-12-14 20:13:27 +0000 |
commit | 35c1e6484a0a606420dfb5e86f316d0abaafd753 (patch) | |
tree | deee48734ab97c4b919bbec32a52412a65d09450 /net/cvsup | |
parent | 092ba24f2eefd065a9ef1006288a8820fde0cd37 (diff) |
Notes
Diffstat (limited to 'net/cvsup')
-rw-r--r-- | net/cvsup/distinfo | 2 | ||||
-rw-r--r-- | net/cvsup/pkg-plist | 6 | ||||
-rw-r--r-- | net/cvsup/scripts/configure | 17 |
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 |