7eeb51b534
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.32 2014/05/29 23:37:57 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= htmllint
|
|
PKGNAME= htmllint-20051019
|
|
PKGREVISION= 4
|
|
CATEGORIES= www japanese
|
|
MASTER_SITES= http://openlab.ring.gr.jp/k16/htmllint/archives/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://openlab.ring.gr.jp/k16/htmllint/
|
|
COMMENT= Another HTML-Lint program
|
|
|
|
DEPENDS+= p5-Jcode>=0.68:../../converters/p5-Jcode
|
|
DEPENDS+= p5-libwww>=5.8:../../www/p5-libwww
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
|
|
REPLACE_PERL= htmllint.cgi htmllint parsedtd.pl tagslist.cgi
|
|
USE_TOOLS+= perl:run
|
|
NO_BUILD= yes
|
|
|
|
CGIDIR= ${PREFIX}/libexec/cgi-bin
|
|
HTMLDIR= ${PREFIX}/share/httpd/htdocs/htmllint
|
|
IMGDIR= ${HTMLDIR}/images
|
|
|
|
INSTALLATION_DIRS= bin ${CGIDIR} ${HTMLDIR} ${IMGDIR}
|
|
|
|
SUBST_CLASSES+= hl
|
|
SUBST_STAGE.hl= pre-configure
|
|
SUBST_MESSAGE.hl= Setting PREFIX.
|
|
SUBST_FILES.hl= faq.html htmllintenv htmllint htmllint.caller
|
|
SUBST_SED.hl= -e 's!@PREFIX@!${PREFIX}!g'
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/htmllint.caller ${DESTDIR}${PREFIX}/bin/htmllint
|
|
${INSTALL_SCRIPT} ${WRKSRC}/*.cgi ${DESTDIR}${CGIDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/htmllintrc ${DESTDIR}${CGIDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/htmllintenv ${DESTDIR}${CGIDIR}/htmllint.env.default
|
|
${TEST} -f ${DESTDIR}${CGIDIR}/htmllint.env \
|
|
|| ${INSTALL_DATA} ${DESTDIR}${CGIDIR}/htmllint.env.default ${DESTDIR}${CGIDIR}/htmllint.env
|
|
${INSTALL_SCRIPT} ${WRKSRC}/htmllint ${DESTDIR}${HTMLDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/*.pl ${WRKSRC}/*.pm ${DESTDIR}${HTMLDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} *.css *.dtd *.ent *.html *.rul \
|
|
*.txt ${DESTDIR}${HTMLDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.gif ${DESTDIR}${IMGDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|