diff options
author | jdp <jdp@FreeBSD.org> | 1998-08-17 21:44:57 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1998-08-17 21:44:57 +0000 |
commit | c1ecc3404a7058256ad7f397fc1081cd0a2ebf6e (patch) | |
tree | 05c4a62d29c8dcb46ceee290b69115215336d571 /net | |
parent | d2bd9a0973600d7834ff8cd582b30a48b9c08cd1 (diff) | |
download | FreeBSD-ports-c1ecc3404a7058256ad7f397fc1081cd0a2ebf6e.zip FreeBSD-ports-c1ecc3404a7058256ad7f397fc1081cd0a2ebf6e.tar.gz |
Remove support for USE_CVSUPD. The server port has been split out
into a separate port (cvsupd-bin).
Submitted by: Sheldon Hearn <axl@iafrica.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/cvsup-bin/Makefile | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/net/cvsup-bin/Makefile b/net/cvsup-bin/Makefile index 371bda6..12a5101 100644 --- a/net/cvsup-bin/Makefile +++ b/net/cvsup-bin/Makefile @@ -3,7 +3,7 @@ # Date created: 12 November 1997 # Whom: Sheldon Hearn <axl@iafrica.com> # -# $Id: Makefile,v 1.4 1998/04/28 22:25:52 jdp Exp $ +# $Id: Makefile,v 1.5 1998/07/07 03:22:33 jdp Exp $ # DISTNAME= cvsup-bin-15.4.2 @@ -19,23 +19,12 @@ NO_BUILD= yes MAN1= cvsup.1 -# Uncomment the next line if you want cvsupd as well -# USE_CVSUPD= yes - -.ifdef USE_CVSUPD -DISTFILES+= cvsupd-bin-15.4.2.tar.gz -MAN8= cvsupd.8 -PLIST= ${PKGDIR}/PLIST.cvsupd -.endif +do-configure: + cd ${WRKSRC}; gunzip cvsup.1.gz do-install: - cd ${WRKDIR}/cvsup-bin-15.4.2; \ + cd ${WRKSRC}; \ ${INSTALL_PROGRAM} cvsup ${PREFIX}/bin; \ ${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1 -.ifdef USE_CVSUPD - cd ${WRKDIR}/cvsupd-bin-15.4.2; \ - ${INSTALL_PROGRAM} cvsupd ${PREFIX}/sbin; \ - ${INSTALL_MAN} ${MAN8} ${PREFIX}/man/man8 -.endif .include <bsd.port.mk> |