7e1c5bfbc9
aalib-x11 and aview-x11. SDL dependencies change, so bump PKGREVISION (and BUILDLINK_RECOMMENDED) for affected packages. Addresses PR 32046 by Leonard Schmidt.
28 lines
709 B
Makefile
28 lines
709 B
Makefile
# $NetBSD: options.mk,v 1.1 2005/12/11 09:40:44 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.aalib
|
|
PKG_SUPPORTED_OPTIONS= ncurses slang x11
|
|
PKG_SUGGESTED_OPTIONS= x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mncurses)
|
|
. include "../../devel/ncurses/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-curses-driver=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --with-curses-driver=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mslang)
|
|
. include "../../devel/libslang/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-slang-driver=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --with-slang-driver=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
. include "../../mk/x11.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-x11-driver=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --with-x11-driver=no
|
|
.endif
|