aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjdp <jdp@FreeBSD.org>1998-03-24 12:20:27 +0800
committerjdp <jdp@FreeBSD.org>1998-03-24 12:20:27 +0800
commit5459c29d11f9eb67a62077405956f792e22b4d6e (patch)
tree7c86daf61db885cb41f17ea05e075377d1c0751c
parent92b007b9200bd90a712ed3c517e430c847654fc5 (diff)
downloadfreebsd-ports-graphics-5459c29d11f9eb67a62077405956f792e22b4d6e.tar.gz
freebsd-ports-graphics-5459c29d11f9eb67a62077405956f792e22b4d6e.tar.zst
freebsd-ports-graphics-5459c29d11f9eb67a62077405956f792e22b4d6e.zip
Update port for CVSup release 15.3 (from 15.2).
Approved by: asami
-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 2362e1264f4..c57946d212b 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 22ca7ea1b61..12ef988c7ca 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 a9e73fba179..cd01c4363aa 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 e5f60ac54e0..feb96ddbe26 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