1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

Update from version 13.5 to version 14.0.

This commit is contained in:
John Polstra 1996-12-14 20:13:27 +00:00
parent 092ba24f2e
commit 35c1e6484a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4973
3 changed files with 21 additions and 4 deletions

View File

@ -1 +1 @@
MD5 (cvsup-13.5.tar.gz) = 82c6dc9290fb1ce055a6027670af57f6
MD5 (cvsup-14.0.tar.gz) = 331bb5c114bac2053eeaa46eaa8f19c3

View File

@ -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

17
net/cvsup/scripts/configure vendored Normal file
View File

@ -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