diff options
author | hauke <hauke> | 2008-07-30 14:08:59 +0000 |
---|---|---|
committer | hauke <hauke> | 2008-07-30 14:08:59 +0000 |
commit | ec8530a1f682df8e2c0b71f7ad610589d22d233c (patch) | |
tree | 8bea5d1e64a24ede9780e051ad2493897033743e /emulators/aranym/options.mk | |
parent | d53780c37439edd38ad1b40cdcaa3220b07f3c25 (diff) | |
download | pkgsrc-ec8530a1f682df8e2c0b71f7ad610589d22d233c.tar.gz |
Update aranym to 0.9.6beta2.
Throw out a few options which are pointless (fixed{video,fast}ram) since they
are only minimally relevant to JIT, or broken (blitsdlblit, blitmemmove).
Patch posix shell script instead of requiring bash.
Make OpenGL support an option.
Emutos has to be downloaded from http://emutos.sourceforge.net/en/download.htm
Diffstat (limited to 'emulators/aranym/options.mk')
-rw-r--r-- | emulators/aranym/options.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/emulators/aranym/options.mk b/emulators/aranym/options.mk new file mode 100644 index 00000000000..cba5a5a0a82 --- /dev/null +++ b/emulators/aranym/options.mk @@ -0,0 +1,13 @@ +# $NetBSD: options.mk,v 1.1 2008/07/30 14:08:59 hauke Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.aranym +PKG_SUPPORTED_OPTIONS= opengl + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mopengl) +CONFIGURE_ARGS+= --enable-opengl +.include "../../graphics/Mesa/buildlink3.mk" +.else +CONFIGURE_ARGS+= --disable-opengl +.endif |