diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-05-15 15:33:01 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-05-15 15:33:01 +0000 |
commit | 85b49cb4c6b393e34596fc20cb8eecf75f88fe1d (patch) | |
tree | 1f60259337afb9a0be0d1436c14c10bf97b37cfd /www/webcheck/Makefile | |
parent | 6221eb736b162c401efe195a9402acd7ddc20f57 (diff) | |
download | FreeBSD-ports-85b49cb4c6b393e34596fc20cb8eecf75f88fe1d.zip FreeBSD-ports-85b49cb4c6b393e34596fc20cb8eecf75f88fe1d.tar.gz |
add webcheck , which is repo-copied from linbot
PR: 37939
Submitted by: Mike Meyer <mwm@mired.org>
Diffstat (limited to 'www/webcheck/Makefile')
-rw-r--r-- | www/webcheck/Makefile | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/www/webcheck/Makefile b/www/webcheck/Makefile index c39f4b3..b798177 100644 --- a/www/webcheck/Makefile +++ b/www/webcheck/Makefile @@ -1,40 +1,38 @@ -# New ports collection makefile for: linbot -# Date created: 19 September 1998 -# Whom: Bill Fumerola <billf@chc-chimes.com> +# New ports collection makefile for: webcheck +# Date created: 10 May, 2002 +# Whom: Mike Meyer <mwm@mired.org> # # $FreeBSD$ # -PORTNAME= linbot +PORTNAME= webcheck PORTVERSION= 1.0 -PORTREVISION= 3 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= apps/www/misc -EXTRACT_SUFX= .tgz +EXTRACT_SUFX= .bz2 MAINTAINER= mwm@mired.org USE_PYTHON= YES do-install: - ${MKDIR} ${PREFIX}/share/linbot - ${CP} ${WRKSRC}/*.py ${PREFIX}/share/linbot - ${CP} ${WRKSRC}/*.css ${PREFIX}/share/linbot + @${MKDIR} ${DATADIR} + ${CP} ${WRKSRC}/*.py ${DATADIR} + ${CP} ${WRKSRC}/*.css ${DATADIR} .for d in plugins schemes - ${MKDIR} ${PREFIX}/share/linbot/${d} - ${CP} ${WRKSRC}/${d}/*.py ${PREFIX}/share/linbot/${d} + @${MKDIR} ${DATADIR}/${d} + ${CP} ${WRKSRC}/${d}/*.py ${DATADIR}/${d} .endfor - ${LN} -sf ${PREFIX}/share/linbot/linbot.py ${PREFIX}/bin/linbot + ${LN} -sf ${DATADIR}/webcheck.py ${PREFIX}/bin/webcheck .ifndef NOPORTDOCS - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/USAGE ${DOCSDIR} do-build: - ${AWK} '/^Running Linbot/ { output=1 } output' \ + ${AWK} '/^Running Webcheck/ { output=1 } output' \ < ${WRKSRC}/INSTALL > ${WRKSRC}/USAGE .else -NO_BUILD= yeah +NO_BUILD= yes .endif .include <bsd.port.mk> |