blob: f513f5bcb231969ddfa5bb2a95a69ba866794d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.25 2015/06/12 10:48:31 wiz Exp $
#
DISTNAME= doc2html
PKGNAME= doc2html-3.0
PKGREVISION= 8
CATEGORIES= converters
MASTER_SITES= http://www.htdig.org/files/contrib/parsers/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.htdig.org/
COMMENT= PERL external filter for htdig to convert numerous doc formats to HTML
DEPENDS+= xlhtml-[0-9]*:../../converters/xlhtml
DEPENDS+= rtf2html-[0-9]*:../../converters/rtf2html
DEPENDS+= xpdf-[0-9]*:../../print/xpdf
DEPENDS+= catdoc-[0-9]*:../../textproc/catdoc
USE_TOOLS+= gs:run perl:run
INSTALLATION_DIRS= bin
do-build:
.for cvtr in doc2html pdf2html
${SED} -e "s%@@LOCALBASE@@%${LOCALBASE}%g" \
-e "s%/usr/bin/perl%${PERL5}%g" \
-e "s%/bin/sed%${SED}%g" \
-e "s%@@X11BASE@@%${X11BASE}%g" < ${WRKSRC}/${cvtr}.pl \
> ${WRKSRC}/${cvtr}
.endfor
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/doc2html ${DESTDIR}${PREFIX}/bin/doc2html
${INSTALL_SCRIPT} ${WRKSRC}/pdf2html ${DESTDIR}${PREFIX}/bin/pdf2html
.include "../../mk/bsd.pkg.mk"
|