linkbot is no longer maintained, and has been removed from the ports
collection. Instead, webcheck is the new version (www/webcheck) and our Makefile should be updated accordingly PR: 30089 Submitted by: Cyrille Lefevre Not Reviewed by: -doc
This commit is contained in:
parent
6bb491d5de
commit
214ccbdbaf
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=13529
1 changed files with 11 additions and 11 deletions
22
en/Makefile
22
en/Makefile
|
@ -1,4 +1,4 @@
|
||||||
# $FreeBSD: www/en/Makefile,v 1.83 2002/05/09 13:07:12 mwlucas Exp $
|
# $FreeBSD: www/en/Makefile,v 1.84 2002/06/27 19:55:40 nik Exp $
|
||||||
.if exists(Makefile.conf)
|
.if exists(Makefile.conf)
|
||||||
.include "Makefile.conf"
|
.include "Makefile.conf"
|
||||||
.endif
|
.endif
|
||||||
|
@ -91,20 +91,20 @@ DATA+= index.html
|
||||||
CLEANFILES+= index.html
|
CLEANFILES+= index.html
|
||||||
|
|
||||||
index.html: index.xsl news/news.xml news/press.xml includes.xsl news/includes.xsl
|
index.html: index.xsl news/news.xml news/press.xml includes.xsl news/includes.xsl
|
||||||
${XSLTPROC} ${XSLTPROCOPTS} -o index.html \
|
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||||
${.CURDIR}/index.xsl ${.CURDIR}/news/news.xml
|
${.CURDIR}/index.xsl ${.CURDIR}/news/news.xml
|
||||||
.if !defined(NO_TIDY)
|
.if !defined(NO_TIDY)
|
||||||
-${TIDY} ${TIDYOPTS} index.html
|
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
LINBOT?= ${PREFIX}/bin/linbot
|
WEBCHECK?= ${PREFIX}/bin/webcheck
|
||||||
LINBOTOPTS?= -ab
|
WEBCHECKOPTS?= -ab ${WEBCHECKFLAGS}
|
||||||
LINBOTDIR?= /linbot
|
WEBCHECKDIR?= /webcheck
|
||||||
LINBOTINSTALLDIR?= ${DESTDIR}${LINBOTDIR}
|
WEBCHECKINSTALLDIR?= ${DESTDIR}${WEBCHECKDIR}
|
||||||
LINBOTURL?= http://www.FreeBSD.org/
|
WEBCHECKURL?= http://www.FreeBSD.org/
|
||||||
|
|
||||||
linbot:
|
webcheck:
|
||||||
@[ -d ${LINBOTINSTALLDIR} ] || ${MKDIR} ${LINBOTINSTALLDIR}
|
@[ -d ${WEBCHECKINSTALLDIR} ] || ${MKDIR} ${WEBCHECKINSTALLDIR}
|
||||||
${LINBOT} ${LINBOTOPTS} -o ${LINBOTINSTALLDIR} ${LINBOTURL}
|
${WEBCHECK} ${WEBCHECKOPTS} -o ${WEBCHECKINSTALLDIR} ${WEBCHECKURL}
|
||||||
|
|
||||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
||||||
|
|
Loading…
Reference in a new issue