22d7896c17
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories T-V. CR: D509 Approved by: portmgr (antoine)
27 lines
625 B
Makefile
27 lines
625 B
Makefile
# Created by: Patrick Li <pat@databits.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= replaceit
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://pldaniels.com/replaceit/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Light replacement to the combination of sed/awk/grep/head/tail
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
MAKE_ARGS= CC="${CC}" PRF="${CFLAGS}"
|
|
|
|
PORTDOCS= CHANGELOG README
|
|
PLIST_FILES= bin/replaceit
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/replaceit ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|