pkgsrc/games/scummvm/options.mk
adam 663f88faaa Changes 1.4.1:
* Support for the Beneath a Steel Sky Enhanced Soundtrack by James Woodcock
* Slight graphical improvement for the PlayStation version of Broken Sword 2
* Several bugfixes for Lands of Lore
* More logical sound settings for SCI games
* A fixed crash in the VGA version of Quest for Glory 1
2012-02-27 13:58:05 +00:00

23 lines
597 B
Makefile

# $NetBSD: options.mk,v 1.7 2012/02/27 13:58:05 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.scummvm
PKG_SUPPORTED_OPTIONS= sdl x11 fluidsynth
PKG_SUGGESTED_OPTIONS= sdl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mfluidsynth)
.include "../../audio/fluidsynth/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Msdl)
CONFIGURE_ARGS+= --backend=sdl
.include "../../devel/SDL/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mx11)
CONFIGURE_ARGS+= --backend=x11
.include "../../mk/oss.buildlink3.mk"
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/xextproto/buildlink3.mk"
.endif