blob: 148c14246baf7eb7ce59982a8eb2b82a73fd3cea (
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: cvsutils
# Date created: 6 June 2000
# Whom: knu@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= cvsutils
PORTVERSION= 0.2.5
PORTEPOCH= 1
CATEGORIES= devel
MASTER_SITES= http://www.red-bean.com/cvsutils/releases/
MAINTAINER= mva@sysfault.org
COMMENT= CVS utilities which facilitate working with local working directories
USE_PERL5= yes
GNU_CONFIGURE= yes
MAN1= cvsutils.1
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in AUTHORS ChangeLog NEWS README
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
.endfor
.endif
.include <bsd.port.mk>
|