lv2 (1.18.0) stable; * Improve documentation. * Separate extended documentation from primary data. * core: Add lv2:Markdown datatype. * core: Deprecate lv2:reportsLatency. * patch: Fix incorrect type of patch:sequenceNumber. * port-groups: Remove incorrect type of pg:letterCode. * port-groups: Replace broken links with detailed Ambisonic channel descriptions. * state: Add state:freePath feature. * ui: Add ui:requestValue feature. * ui: Add ui:scaleFactor, ui:foregroundColor, and ui:backgroundColor properties. * ui: Deprecate ui:binary. * worker: Improve documentation.
36 lines
822 B
Makefile
36 lines
822 B
Makefile
# $NetBSD: options.mk,v 1.3 2020/05/19 17:05:44 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.lv2
|
|
PKG_SUPPORTED_OPTIONS= debug doc tests valgrind
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
BUILD_DEBUG= --debug
|
|
.else
|
|
BUILD_DEBUG= # blank
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdoc)
|
|
PLIST_SRC+= PLIST.doc
|
|
BUILD_DOC= --docs
|
|
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
|
|
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-rdflib-[0-9]*:../../textproc/py-rdflib
|
|
.else
|
|
BUILD_DOC= # blank
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mtests)
|
|
BUILD_TESTS= --test
|
|
.else
|
|
BUILD_TESTS= # blank
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mvalgrind)
|
|
BUILD_VALGRIND= --grind
|
|
BUILD_DEPENDS+= valgrind-[0-9]*:../../devel/valgrind
|
|
.else
|
|
BUILD_VALGRIND= # blank
|
|
.endif
|