23 lines
524 B
Makefile
23 lines
524 B
Makefile
# $NetBSD: options.mk,v 1.2 2012/11/23 22:33:26 othyro Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.aravis
|
|
PKG_SUPPORTED_OPTIONS= cairo gstreamer
|
|
PKG_SUGGESTED_OPTIONS= cairo gstreamer
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### cairo support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mcairo)
|
|
CONFIGURE_ARGS+= --enable-cairo
|
|
. include "../../graphics/cairo/buildlink3.mk"
|
|
.endif
|
|
|
|
###
|
|
### gstreamer support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mgstreamer)
|
|
CONFIGURE_ARGS+= --enable-gstreamer
|
|
. include "../../multimedia/gstreamer0.10/buildlink3.mk"
|
|
.endif
|