598c32545e
Hengband is a rogue-like game which is a descendant of Moria and Angband, and is a direct derivation of Zangband. In order to win the game by defeating The Serpent of Chaos who lurks in the 100th floor of the Dungeon of Angband, you need to not only obtain a good set of gears, but also acquaint yourself with the game.
39 lines
817 B
Makefile
39 lines
817 B
Makefile
# $NetBSD: options.mk,v 1.1 2020/01/24 13:33:32 pho Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.hengband
|
|
PKG_SUPPORTED_OPTIONS= lang-ja
|
|
PKG_OPTIONS_NONEMPTY_SETS= ui
|
|
PKG_OPTIONS_SET.ui= ncurses curses termcap x11
|
|
PKG_SUGGESTED_OPTIONS= ncurses x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Language (English or Japanese)
|
|
###
|
|
.if empty(PKG_OPTIONS:Mlang-ja)
|
|
CONFIGURE_ARGS+= --disable-japanese
|
|
.endif
|
|
|
|
###
|
|
### TTY support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mncurses)
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mcurses)
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mtermcap)
|
|
.include "../../mk/termcap.buildlink3.mk"
|
|
.endif
|
|
|
|
###
|
|
### X11 support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.endif
|