841dfa0e7a
through PLIST_SUBST to the plist module.
26 lines
614 B
Makefile
26 lines
614 B
Makefile
# $NetBSD: options.mk,v 1.3 2008/04/12 22:43:14 jlam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.efltk
|
|
PKG_SUPPORTED_OPTIONS= opengl mysql
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= ${PKG_SUPPORTED_OPTIONS}
|
|
|
|
.if !empty(PKG_OPTIONS:Mopengl)
|
|
PLIST.opengl= yes
|
|
CONFIGURE_ARGS+= --enable-opengl
|
|
MAKE_ENV+= HAVE_OPENGL=yes
|
|
. include "../../graphics/MesaLib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-opengl
|
|
MAKE_ENV+= HAVE_OPENGL=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
|
PLIST.mysql= yes
|
|
CONFIGURE_ARGS+= --enable-mysql
|
|
. include "../../mk/mysql.buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-mysql
|
|
.endif
|