mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
7bde5a0d11
- Manpages are now installed in STAGEDIR and added to pkg-plist [1] - Fix shebangs (they had STAGEDIR in them previously due to useage of the cwu update tool...we'll use shebangfix instead) - Allow build by non-priviledged user and actually do build during build target instead of install target - Add LICENSE (GPLv2) - Simplify PORTDOCS installation - Strip binaries - Bump PORTREVISION since manpages were lost and shebangs were wrong Reported by: Redports QAT [1]
38 lines
750 B
Makefile
38 lines
750 B
Makefile
# Created by: Dryice Liu <dryice@dryice.name>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cw
|
|
PORTVERSION= 1.0.16
|
|
PORTREVISION= 1
|
|
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
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= shebangfix
|
|
|
|
SHEBANG_FILES= def/*
|
|
SHEBANG_LANG= cw
|
|
cw_OLD_CMD= /cw
|
|
cw_CMD= ${PREFIX}/bin/cw
|
|
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET= local
|
|
|
|
PORTDOCS= CHANGES CONTRIB FILES INSTALL PLATFORM README VERSION
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
.for file in cw cwu
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${file}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|