mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
3e921fd612
Submitted by: Sheldon Hearn <axl@iafrica.com>
43 lines
995 B
Makefile
43 lines
995 B
Makefile
# New ports collection makefile for: cvsup-bin
|
|
# Version required: 15.2
|
|
# Date created: 12 November 1997
|
|
# Whom: Sheldon Hearn <axl@iafrica.com>
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= cvsup-bin-15.2
|
|
CATEGORIES= devel net
|
|
MASTER_SITES= ftp://hub.freebsd.org/pub/CVSup/ \
|
|
ftp://ftp.cs.tu-berlin.de/pub/FreeBSD/CVSup/ \
|
|
ftp://ftp.polstra.com/pub/FreeBSD/CVSup/
|
|
DISTFILES= cvsup-bin-15.2.tar.gz
|
|
|
|
MAINTAINER= axl@iafrica.com
|
|
|
|
NO_BUILD= yes
|
|
|
|
MAN1= cvsup.1 supconv.1
|
|
|
|
# Uncomment the next line if you want cvsupd as well
|
|
# USE_CVSUPD= yes
|
|
|
|
.ifdef USE_CVSUPD
|
|
DISTFILES+= cvsupd-bin-15.2.tar.gz
|
|
MAN8= cvsupd.8
|
|
PLIST= ${PKGDIR}/PLIST.cvsupd
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKDIR}/cvsup-bin-15.2; \
|
|
${INSTALL_PROGRAM} cvsup ${PREFIX}/bin; \
|
|
${INSTALL_SCRIPT} supconv ${PREFIX}/bin; \
|
|
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
|
|
.ifdef USE_CVSUPD
|
|
cd ${WRKDIR}/cvsupd-bin-15.2; \
|
|
${INSTALL_PROGRAM} cvsupd ${PREFIX}/sbin; \
|
|
${INSTALL_MAN} ${MAN8} ${PREFIX}/man/man8
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|