pkgsrc/games/onscripter/options.mk
tsutsui 6dc4b63043 Update onscripter to 20121019.
pkgsrc changes:
 - add PKG_OPTION onscripter-pda that enables PDA_AUTOSIZE option
   to fit window size to screen on small PDA devices like W-ZERO3 and Zaurus

upstream changes since 20120926:

20121029:
 - fix compiler error on iOS target build environment

20121019: serious bug fix
 - fix memory leak per rendering a glyph, slipped in since 20050819

20121016:
 - reimplement yesnobox insn to allow yes/no choice in dialog
 - implement okcancelbox insn
 - enlarge buttons in yesnobox and okcancelbox dialogs
 - allow mapping right click to no/cancle in yesnobox and okcancelbox insns
2012-10-30 16:09:53 +00:00

14 lines
368 B
Makefile

# $NetBSD: options.mk,v 1.1 2012/10/30 16:09:53 tsutsui Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.onscripter
PKG_SUPPORTED_OPTIONS= onscripter-pda
PKG_SUGGESTED_OPTIONS=
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Monscripter-pda)
# Enable PDA_AUTOSIZE option to fit window size to screen on small PDA devices
PDA_DEFS= -DPDA_AUTOSIZE
.else
PDA_DEFS=
.endif