blob: 1c9e45db7c3a982e7edab5cf8e9af2c9ecbb623f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# New ports collection makefile for: cvsup-bin
# Version required: 15.3
# Date created: 12 November 1997
# Whom: Sheldon Hearn <axl@iafrica.com>
#
# $Id: Makefile,v 1.2 1998/02/11 18:04:24 jdp Exp $
#
DISTNAME= cvsup-bin-15.3
CATEGORIES= devel net
MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/CVSup/ \
ftp://ftp.cs.tu-berlin.de/pub/FreeBSD/CVSup/ \
ftp://ftp.polstra.com/pub/FreeBSD/CVSup/
DISTFILES= cvsup-bin-15.3.tar.gz
MAINTAINER= axl@iafrica.com
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.3.tar.gz
MAN8= cvsupd.8
PLIST= ${PKGDIR}/PLIST.cvsupd
.endif
do-install:
cd ${WRKDIR}/cvsup-bin-15.3; \
${INSTALL_PROGRAM} cvsup ${PREFIX}/bin; \
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
.ifdef USE_CVSUPD
cd ${WRKDIR}/cvsupd-bin-15.3; \
${INSTALL_PROGRAM} cvsupd ${PREFIX}/sbin; \
${INSTALL_MAN} ${MAN8} ${PREFIX}/man/man8
.endif
.include <bsd.port.mk>
|