blob: bc2738ed7de0a542f09fbe0af12829a35dd22d65 (
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: C4
# Date created: 2 September 2001
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= c4
PORTVERSION= 1.6
CATEGORIES+= devel
MASTER_SITES= ftp://ftp.perforce.com/perforce/utils/c4/
DISTNAME= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A CVS-like Frontend to Perforce
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
ALL_TARGET= c4
MAN1= c4.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/c4 ${PREFIX}/bin/
.if !defined(NOPORTDOCS)
${INSTALL_MAN} ${WRKSRC}/c4.1 ${PREFIX}/man/man1/
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/index.html ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|