blob: 578a5a566b31a3711faf614e46f3b1f6018707cb (
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
|
# New ports collection makefile for: cvsutils
# Date created: 6 June 2000
# Whom: knu@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= cvsutils
PORTVERSION= 0.1.5
CATEGORIES= devel
MASTER_SITES= ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/knu/
MAINTAINER= knu@FreeBSD.org
USE_AUTOMAKE= YES
AUTOMAKE= ./bootstrap
USE_PERL5= YES
WRKSRC= ${WRKDIR}/${PORTNAME}
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/cvsutils
.for f in AUTHORS ChangeLog FAQ NEWS README TODO
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/cvsutils/
.endfor
.endif
.include <bsd.port.mk>
|