706dd2ed92
Sord is a lightweight C library for storing RDF data in memory.
36 lines
766 B
Makefile
36 lines
766 B
Makefile
# $NetBSD: options.mk,v 1.1 2015/04/19 23:23:10 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.sord
|
|
PKG_SUPPORTED_OPTIONS= debug doc tests valgrind
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
PLIST_VARS+= doc
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
BUILD_DEBUG= --debug
|
|
.else
|
|
BUILD_DEBUG= # blank
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdoc)
|
|
BUILD_DOC= --docs
|
|
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
|
|
BUILD_DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
|
|
PLIST.doc= yes
|
|
.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
|