9e5f9d6fa4
with filesystems/fuse. From Kamil Rytarowski in PR 50662. Fuse is the Free Unix Spectrum Emulator. * Working 48K/128K/+2/+2A Speccy emulation, running at true Speccy speed on any computer you're likely to try it on. * Support for loading from .tzx files. * Sound (on system supporting the Open Sound System or BSD/Solaris). * Kempston joystick emulation. * Emulation of the various printers you could attach to the Spectrum. * Very basic support for RZX files.
17 lines
399 B
Makefile
17 lines
399 B
Makefile
# $NetBSD: options.mk,v 1.1 2016/01/17 14:27:38 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.fuse
|
|
PKG_SUPPORTED_OPTIONS= sdl gtk
|
|
PKG_SUGGESTED_OPTIONS= gtk
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk)
|
|
CONFIGURE_ARGS+= --with-gtk2
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msdl)
|
|
CONFIGURE_ARGS+= --with-sdl
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.endif
|