freebsd-ports/www/webcheck/Makefile
Joseph Koshy 1076ab2a34 The distfiles for this port are distributed in bzip2 format. Add
a ``USE_BZIP2'' line to reflect this.
2002-05-30 07:33:51 +00:00

39 lines
833 B
Makefile

# New ports collection makefile for: webcheck
# Date created: 10 May, 2002
# Whom: Mike Meyer <mwm@mired.org>
#
# $FreeBSD$
#
PORTNAME= webcheck
PORTVERSION= 1.0
CATEGORIES= www python
MASTER_SITES= http://www.mired.org/webcheck/
EXTRACT_SUFX= .bz2
MAINTAINER= mwm@mired.org
USE_PYTHON= YES
USE_BZIP2= YES
do-install:
@${MKDIR} ${DATADIR}
${CP} ${WRKSRC}/*.py ${DATADIR}
${CP} ${WRKSRC}/*.css ${DATADIR}
.for d in plugins schemes
@${MKDIR} ${DATADIR}/${d}
${CP} ${WRKSRC}/${d}/*.py ${DATADIR}/${d}
.endfor
${LN} -sf ${DATADIR}/webcheck.py ${PREFIX}/bin/webcheck
.ifndef NOPORTDOCS
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/USAGE ${DOCSDIR}
do-build:
${AWK} '/^Running Webcheck/ { output=1 } output' \
< ${WRKSRC}/INSTALL > ${WRKSRC}/USAGE
.else
NO_BUILD= yes
.endif
.include <bsd.port.mk>