summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1998-03-24 04:20:27 +0000
committerJohn Polstra <jdp@FreeBSD.org>1998-03-24 04:20:27 +0000
commit9e5135c7ac16d7eccd1b7bab6acd0dfde73b3186 (patch)
treeec8814d190d8cc089728b482fea18909130ff0c8 /net
parentAttempt to undo previous commit (upgrade to 1.7.1 that broke japanese/plan). (diff)
Update port for CVSup release 15.3 (from 15.2).
Approved by: asami
Notes
Notes: svn path=/head/; revision=10305
Diffstat (limited to 'net')
-rw-r--r--net/cvsup/Makefile9
-rw-r--r--net/cvsup/distinfo2
-rw-r--r--net/cvsup/pkg-plist2
-rw-r--r--net/cvsup/scripts/configure5
4 files changed, 10 insertions, 8 deletions
diff --git a/net/cvsup/Makefile b/net/cvsup/Makefile
index 2362e1264f44..c57946d212b5 100644
--- a/net/cvsup/Makefile
+++ b/net/cvsup/Makefile
@@ -1,12 +1,12 @@
# New ports collection makefile for: cvsup
-# Version required: 15.2
+# Version required: 15.3
# Date created: 7 August 1996
# Whom: asami
#
-# $Id: Makefile,v 1.21 1997/09/28 21:33:41 jdp Exp $
+# $Id: Makefile,v 1.22 1998/02/11 18:03:22 jdp Exp $
#
-DISTNAME= cvsup-15.2
+DISTNAME= cvsup-15.3
CATEGORIES= devel net
MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/CVSup/ \
ftp://ftp.cs.tu-berlin.de/pub/FreeBSD/CVSup/ \
@@ -17,6 +17,9 @@ MAINTAINER= jdp@FreeBSD.org
BUILD_DEPENDS= m3build-5:${PORTSDIR}/lang/modula-3
LIB_DEPENDS= m3\\.5\\.:${PORTSDIR}/lang/modula-3-lib
+MAN1= cvsup.1
+MAN8= cvsupd.8
+
# To build the client without GUI support:
#MAKE_ENV= M3FLAGS=-DNOGUI
# To link the programs statically:
diff --git a/net/cvsup/distinfo b/net/cvsup/distinfo
index 22ca7ea1b611..12ef988c7ca8 100644
--- a/net/cvsup/distinfo
+++ b/net/cvsup/distinfo
@@ -1 +1 @@
-MD5 (cvsup-15.2.tar.gz) = c6db5e798f8136a646947d4beefe6e35
+MD5 (cvsup-15.3.tar.gz) = 04438ae30094b8a81f2a3b0c48511b8f
diff --git a/net/cvsup/pkg-plist b/net/cvsup/pkg-plist
index a9e73fba1796..cd01c4363aa1 100644
--- a/net/cvsup/pkg-plist
+++ b/net/cvsup/pkg-plist
@@ -1,6 +1,4 @@
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
index e5f60ac54e06..feb96ddbe262 100644
--- a/net/cvsup/scripts/configure
+++ b/net/cvsup/scripts/configure
@@ -1,10 +1,11 @@
#! /bin/sh
#
-# $Id$
+# $Id: configure,v 1.1 1996/12/14 20:13:27 jdp Exp $
cd ${WRKSRC}
files_to_patch="\
+ Makefile \
client/src/cvsup.1 \
server/src/cvsupd.8 \
suplib/src/SupMisc.i3 \
@@ -12,6 +13,6 @@ files_to_patch="\
for i in ${files_to_patch}; do
rm -f ${i}.new
- sed -e "s|/usr/local/|${PREFIX}/|g" ${i} >${i}.new || exit 1
+ sed -e "s|/usr/local|${PREFIX}|g" ${i} >${i}.new || exit 1
mv -f ${i}.new ${i} || exit 1
done