mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 01:38:07 -04:00
23 lines
543 B
Makefile
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
|