mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
d84d9aa11f
command. cw is designed to simulate the environment of the commands being executed, so that if a person types 'du', 'df', 'ping', etc. in their shell it will automatically color the output in real-time according to a definition file containing the color format desired. cw has support for wildcard match coloring, tokenized coloring, headers/footers, case scenario coloring, command line dependent definition coloring, and includes over 50 pre-made definition files. WWW: http://cwrapper.sourceforge.net/ PR: ports/106291 Submitted by: Dryice Liu <dryice at dryice.name>
36 lines
746 B
Makefile
36 lines
746 B
Makefile
# New ports collection makefile for: cw
|
|
# Date created: 4 December 2006
|
|
# Whom: Dryice Liu <dryice@dryice.name>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cw
|
|
PORTVERSION= 1.0.14
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://cwrapper.sourceforge.net/ \
|
|
http://www.fakehalo.us/cw/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= A non-intrusive color wrapper for common commands
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= cw.1 cwe.1 cwu.1
|
|
MANCOMPRESSED= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= CHANGES CONTRIB COPYING FILES INSTALL PLATFORM README \
|
|
VERSION
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|