diff options
author | jlam <jlam@pkgsrc.org> | 2005-11-28 06:41:20 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-11-28 06:41:20 +0000 |
commit | 05ab21844987bee0d64a5ec6d1650396a1de0f39 (patch) | |
tree | 97d106419153be05872243d53d0c35426e7d6dc6 /converters | |
parent | f356535f712b7d01932488b006ed64c163b73005 (diff) | |
download | pkgsrc-05ab21844987bee0d64a5ec6d1650396a1de0f39.tar.gz |
Change all instances of including mk/ghostscript.mk into asking for
the appropriate tool via USE_TOOLS (usually "gs:run"), and remove
ghostscript.mk. This change removes a rather out-dated file from
pkgsrc and switches packages to use the more compact implementation
of the Ghostcript-handling inside the tools framework.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/doc2html/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/converters/doc2html/Makefile b/converters/doc2html/Makefile index 7d36189f878..9143047d893 100644 --- a/converters/doc2html/Makefile +++ b/converters/doc2html/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/07/16 01:19:08 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2005/11/28 06:41:20 jlam Exp $ # DISTNAME= doc2html @@ -16,7 +16,7 @@ DEPENDS+= rtf2html-[0-9]*:../../converters/rtf2html DEPENDS+= xpdf-[0-9]*:../../print/xpdf DEPENDS+= catdoc-[0-9]*:../../textproc/catdoc -USE_TOOLS+= perl:run +USE_TOOLS+= gs:run perl:run INSTALLATION_DIRS= bin @@ -33,5 +33,4 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/doc2html ${PREFIX}/bin/doc2html ${INSTALL_SCRIPT} ${WRKSRC}/pdf2html ${PREFIX}/bin/pdf2html -.include "../../mk/ghostscript.mk" .include "../../mk/bsd.pkg.mk" |