pkgsrc-ng/fonts/SDL2_ttf/options.mk
2014-08-11 13:27:10 +02:00

23 lines
543 B
Makefile

# $NetBSD: options.mk,v 1.1 2014/02/02 16:06:19 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.SDL2_ttf
PKG_SUPPORTED_OPTIONS= opengl static x11
PKG_SUGGESTED_OPTIONS+= opengl static
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mopengl)
.include "../../graphics/MesaLib/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mstatic)
CONFIGURE_ARGS+= --enable-static=yes
.else
CONFIGURE_ARGS+= --enable-static=no
.endif
.if !empty(PKG_OPTIONS:Mx11)
.include "../../x11/libICE/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
.endif