summaryrefslogtreecommitdiff
path: root/www/webcheck/Makefile
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2002-05-15 15:33:01 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2002-05-15 15:33:01 +0000
commit3d8c9e07cb5c78b62a8a69b1c34de36ecee30d0c (patch)
tree1bb40eac9fd3b54ec22cf5239a41c4215c99203c /www/webcheck/Makefile
parentcorrect etc path (diff)
add webcheck , which is repo-copied from linbot
PR: 37939 Submitted by: Mike Meyer <mwm@mired.org>
Notes
Notes: svn path=/head/; revision=59181
Diffstat (limited to 'www/webcheck/Makefile')
-rw-r--r--www/webcheck/Makefile30
1 files changed, 14 insertions, 16 deletions
diff --git a/www/webcheck/Makefile b/www/webcheck/Makefile
index c39f4b307ea4..b7981779a749 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>