pkgsrc/textproc/asciidoc/Makefile
gls 8a79084509 Update textproc/asciidoc to 8.6.6.
Release highlights

The AsciiDoc plugin architecture has been enhanced, unified and extended:
- Plugin commands have been added to the asciidoc(1) --backend option.
- An asciidoc(1) --theme option has been implemented to specify a
theme and to manage theme plugins.
- A plugin build command (for creating plugins) added.
- build, install, list and remove plugin commands are all recognized
by asciidoc(1) --backend, --filter and --theme options.

A security update by Kenny MacDermid removes the use of eval() on
untrusted input (to disallow code malicious execution).

Complete changelog can be accessed here:
http://www.methods.co.nz/asciidoc/CHANGELOG.html
2011-10-08 21:13:47 +00:00

71 lines
2.3 KiB
Makefile

# $NetBSD: Makefile,v 1.29 2011/10/08 21:13:47 gls Exp $
#
DISTNAME= asciidoc-8.6.6
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=asciidoc/}
MAINTAINER= gls@NetBSD.org
HOMEPAGE= http://www.methods.co.nz/asciidoc/
COMMENT= ASCII to formatted document converter
LICENSE= gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
DEPENDS+= getopt-[0-9]*:../../misc/getopt
USE_TOOLS+= pax
PYTHON_PATCH_SCRIPTS= a2x.py asciidoc.py asciidocapi.py
PYTHON_PATCH_SCRIPTS+= filters/code/code-filter.py
PYTHON_PATCH_SCRIPTS+= filters/latex/latex2png.py
PYTHON_PATCH_SCRIPTS+= filters/music/music2png.py
PYTHON_PATCH_SCRIPTS+= filters/graphviz/graphviz2png.py
PYTHON_PATCH_SCRIPTS+= tests/testasciidoc.py tests/asciidocapi.py
NO_BUILD= yes
SUBST_CLASSES+= ad
SUBST_STAGE.ad= pre-configure
SUBST_MESSAGE.ad= Fixing hard-coded config file paths.
SUBST_FILES.ad= a2x.py asciidoc.py
SUBST_SED.ad= -e 's,^\(CONF_DIR\).*=.*,\1="${PREFIX}/share/asciidoc",'
SUBST_CLASSES+= ae
SUBST_STAGE.ae= pre-configure
SUBST_MESSAGE.ae= Fixing hard-coded Python interpreter paths.
SUBST_FILES.ae= a2x.py asciidoc.conf
SUBST_FILES.ae+= html5.conf xhtml11.conf xhtml11-quirks.conf
SUBST_SED.ae= -e 's,python,${PYTHONBIN},'
INSTALLATION_DIRS= bin share/asciidoc share/asciidoc/filters \
share/asciidoc/docbook-xsl share/asciidoc/stylesheets \
share/asciidoc/javascripts \
share/asciidoc/images/icons/callouts \
${PKGMANDIR}/man1 ${DOCDIR}
DOCDIR= ${PREFIX}/share/doc/asciidoc
.include "options.mk"
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/asciidoc.py ${DESTDIR}${PREFIX}/bin/asciidoc
${INSTALL_SCRIPT} ${WRKSRC}/a2x.py ${DESTDIR}${PREFIX}/bin/a2x
${INSTALL_MAN} ${WRKSRC}/doc/asciidoc.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
${INSTALL_MAN} ${WRKSRC}/doc/a2x.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
# ${INSTALL_DATA} ${WRKSRC}/doc/asciidoc.txt ${DESTDIR}${DOCDIR}
cd ${WRKSRC} && pax -wr -pma *.conf filters \
filters docbook-xsl/*.xsl stylesheets/*.css \
javascripts/*.js images/* dblatex/* \
${DESTDIR}${PREFIX}/share/asciidoc/.
cd ${WRKSRC}/doc && pax -wr -pma *.csv *.txt *.pdf *.epub \
${DESTDIR}${DOCDIR}
do-test:
cd ${WRKSRC} && ./asciidoc.py -v doc/asciidoc.txt
.include "../../lang/python/application.mk"
.include "../../textproc/libxslt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"