summaryrefslogtreecommitdiff
path: root/games/netris/options.mk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2005-05-31 21:46:06 +0000
committerwiz <wiz@pkgsrc.org>2005-05-31 21:46:06 +0000
commit3473105c61346353b9ad7f53bb35cc1f4d7dabc6 (patch)
tree0f9b5d4ca7630ba4df08fbab8dacee0d35d54546 /games/netris/options.mk
parentf177ca8846966e90a9e66d4c67be6d99dc762037 (diff)
downloadpkgsrc-3473105c61346353b9ad7f53bb35cc1f4d7dabc6.tar.gz
Convert to options framework.
Diffstat (limited to 'games/netris/options.mk')
-rw-r--r--games/netris/options.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/games/netris/options.mk b/games/netris/options.mk
new file mode 100644
index 00000000000..a50a239eefa
--- /dev/null
+++ b/games/netris/options.mk
@@ -0,0 +1,12 @@
+# $NetBSD: options.mk,v 1.1 2005/05/31 21:46:06 wiz Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.netris
+PKG_SUPPORTED_OPTIONS= inet6
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Minet6)
+CONFIGURE_ARGS+= --enable-ipv6
+.else
+CONFIGURE_ARGS+= --disable-ipv6
+.endif