blob: f9495ec43d352ba0796a5f6a2b2f159167fcf524 (
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
|
# Created by: Dryice Liu <dryice@dryice.name>
# $FreeBSD$
PORTNAME= cw
PORTVERSION= 1.0.16
CATEGORIES= sysutils
MASTER_SITES= http://cwrapper.sourceforge.net/ \
http://www.fakehalo.us/cw/
MAINTAINER= ports@FreeBSD.org
COMMENT= Non-intrusive color wrapper for common commands
GNU_CONFIGURE= yes
MANCOMPRESSED= yes
MAN1= cw.1 cwe.1 cwu.1
OPTIONS_DEFINE= DOCS
PORTDOCS= *
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
. for file in CHANGES CONTRIB FILES INSTALL PLATFORM README VERSION
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>
|