pkgsrc/graphics/libcaca/options.mk
rillig 102c17a1e8 graphics: align variable assignments
pkglint -Wall -F --only aligned --only indent -r

No manual corrections.
2019-11-02 22:37:52 +00:00

46 lines
1.2 KiB
Makefile

# $NetBSD: options.mk,v 1.6 2019/11/02 22:37:59 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libcaca
PKG_SUPPORTED_OPTIONS= imlib2
PKG_OPTIONS_REQUIRED_GROUPS= driver
PKG_OPTIONS_GROUP.driver= ncurses slang x11
PKG_SUGGESTED_OPTIONS= ncurses
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mimlib2)
. include "../../graphics/imlib2/buildlink3.mk"
CONFIGURE_ARGS+= --enable-imlib2
.else
CONFIGURE_ARGS+= --disable-imlib2
.endif
.if !empty(PKG_OPTIONS:Mncurses)
USE_NCURSES= yes
. include "../../devel/ncurses/buildlink3.mk"
CONFIGURE_ARGS+= --enable-ncurses
.else
CONFIGURE_ARGS+= --disable-ncurses
.endif
.if !empty(PKG_OPTIONS:Mslang)
. include "../../devel/libslang/buildlink3.mk"
CONFIGURE_ARGS+= --enable-slang
.else
CONFIGURE_ARGS+= --disable-slang
.endif
.if !empty(PKG_OPTIONS:Mx11)
. include "../../x11/libXt/buildlink3.mk"
CONFIGURE_ARGS+= --enable-x11
. if ${X11_TYPE} == "modular"
CONFIGURE_ARGS+= --x-libraries=${BUILDLINK_PREFIX.libX11}/lib
. endif
.else
CONFIGURE_ARGS+= --disable-x11
.endif
# could be made into options if desired
.for i in gl cocoa network vga csharp java cxx python ruby cppunit zzuf
CONFIGURE_ARGS+= --disable-${i}
.endfor