pkgsrc/emulators/PC6001VX/options.mk
tsutsui 2d4cbb7196 PC6001VX: update to 3.1.0.
pkgsrc changes:

* make debug monitor, ffmpeg4 for video capture, and SDL2 for joystick
  support optional (for low performance machines; enabled by default)
* fix a URL for online help (already fixed in upstream)

Upstream changelog:

 * Better virtual keyboard display size.
 * Virtual Keyboard is now mouse operable.
 * Assigned "reset emulation speed" to middle mouse button.
 * Added "Convert replay to movie" menu.
 * Now audio is muted during encoding movie.
2018-12-22 16:06:30 +00:00

30 lines
774 B
Makefile

# $NetBSD: options.mk,v 1.1 2018/12/22 16:06:30 tsutsui Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.PC6001VX
PKG_SUPPORTED_OPTIONS= debug ffmpeg sdl2
# debug enables for debug monitor support, which can be disabled
# for low performance machines.
PKG_SUGGESTED_OPTIONS+= debug
# ffmpeg is required for video capture support.
PKG_SUGGESTED_OPTIONS+= ffmpeg
# SDL2 is required for joystick support.
PKG_SUGGESTED_OPTIONS+= sdl2
.include "../../mk/bsd.options.mk"
.if empty(PKG_OPTIONS:Mdebug)
QMAKE_ARGS+= "DEFINES+=NOMONITOR"
.endif
.if !empty(PKG_OPTIONS:Mffmpeg)
.include "../../multimedia/ffmpeg4/buildlink3.mk"
.else
QMAKE_ARGS+= "DEFINES+=NOAVI"
.endif
.if !empty(PKG_OPTIONS:Msdl2)
.include "../../devel/SDL2/buildlink3.mk"
.else
QMAKE_ARGS+= "DEFINES+=NOJOYSTICK"
.endif