blob: d4d17fe40b4ade9ecb37e5543949d3daad7b8307 (
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
|
# New ports collection makefile for: cvs2cl
# Date created: 6 June 2000
# Whom: knu@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= cvs2cl
PORTVERSION= 2.38
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= knu
MAINTAINER= knu@FreeBSD.org
USE_PERL5= YES
NO_BUILD= YES
WRKSRC= ${WRKDIR}/${PORTNAME}
DOCDIR= ${PREFIX}/share/doc/${PORTNAME}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCDIR}
cd ${WRKSRC} && ${INSTALL_DATA} README TODO index.html [cC]hange[lL]og* ${DOCDIR}
${LN} -s ${PREFIX}/bin/${PORTNAME} ${DOCDIR}/${PORTNAME}.pl
.endif
.include <bsd.port.mk>
|