mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
96a38c7c3a
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category W. CR: D510 Approved by: portmgr (bapt)
26 lines
671 B
Makefile
26 lines
671 B
Makefile
# Created by: Yasuhiro Fukuma <yasuf@big.or.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= npc
|
|
PORTVERSION= 0.83
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www2.biglobe.ne.jp/%7Enir/soft/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Animated web counter
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
MAKE_ARGS= INDEX_DIR="${INDEX_DIR}"
|
|
|
|
INDEX_DIR= ${PREFIX}/etc/npc
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/www/cgi-bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/npc.cgi ${STAGEDIR}${PREFIX}/www/cgi-bin
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/examples/npc
|
|
(cd ${WRKSRC}/../conf && \
|
|
${INSTALL_DATA} sample1.idx sample2.idx ${STAGEDIR}${PREFIX}/share/examples/npc)
|
|
${MKDIR} ${STAGEDIR}${INDEX_DIR}
|
|
|
|
.include <bsd.port.mk>
|