pkgsrc/textproc/asciidoc/options.mk
adam 380fe083f6 asciidoc: updated to 8.6.10
Version 8.6.10:
Additions and changes
- Improve reproducibility of builds (e.g. support SOURCE_DATE_EPOCH)
- Add SVG output support
- Improve documentation
- Update translations
2018-07-03 03:48:38 +00:00

17 lines
502 B
Makefile

# $NetBSD: options.mk,v 1.3 2018/07/03 03:48:38 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.asciidoc
PKG_SUPPORTED_OPTIONS= pdf epub highlight
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpdf)
DEPENDS+= dblatex-[0-9]*:../../textproc/dblatex
.endif
.if !empty(PKG_OPTIONS:Mepub)
DEPENDS+= libxml2-[0-9]*:../../textproc/libxml2
DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
.endif
.if !empty(PKG_OPTIONS:Mhighlight)
DEPENDS+= source-highlight-[0-9]*:../../textproc/source-highlight
.endif