pkgsrc-wip/SDL2_ttf/options.mk
Blue Rats 974d6e57e1 Import SDL2_ttf-2.0.12 as wip/SDL2_ttf.
This is a sample library which allows you to use TrueType fonts in your SDL
applications. It comes with an example program "showfont" which displays an
example string for a given TrueType font file.
2013-06-13 11:29:08 +00:00

22 lines
543 B
Makefile

# $NetBSD: options.mk,v 1.1 2013/06/13 11:29:08 othyro 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