1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Update port for CVSup release 15.3 (from 15.2).

Approved by:	asami
This commit is contained in:
John Polstra 1998-03-24 04:20:27 +00:00
parent a4b5fe91e3
commit 9e5135c7ac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=10305
4 changed files with 10 additions and 8 deletions

View File

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

View File

@ -1 +1 @@
MD5 (cvsup-15.2.tar.gz) = c6db5e798f8136a646947d4beefe6e35
MD5 (cvsup-15.3.tar.gz) = 04438ae30094b8a81f2a3b0c48511b8f

View File

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

View File

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