blob: 5c69f8fd325334f119053b373973062100bcab50 (
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
|
# ex:ts=8
# Ports collection makefile for: cvsps
# Date Created: Feb 9, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= cvsps
DISTVERSION= 2.2b1
CATEGORIES= devel
MASTER_SITES= http://www.cobite.com/cvsps/
PKGNAMESUFFIX?= -devel
MAINTAINER= ports@FreeBSD.org
COMMENT= Create patchset information from CVS
USE_GMAKE= yes
ALL_TARGET= cvsps
CONFLICTS= cvsps-[12].[01]*
MAN1= cvsps.1
PLIST_FILES= bin/cvsps
.if !defined(NOPORTDOCS)
PORTDOCS= README
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cvsps ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/cvsps.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
|