summaryrefslogtreecommitdiff
path: root/graphics/py-opengl
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
commit877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch)
treee1a018208ceade04ca56a70c5184978cac51853e /graphics/py-opengl
parentReplace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff)
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Notes
Notes: svn path=/head/; revision=27679
Diffstat (limited to 'graphics/py-opengl')
-rw-r--r--graphics/py-opengl/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/py-opengl/Makefile b/graphics/py-opengl/Makefile
index da18dcbdfd14..24d5a3f1ebe4 100644
--- a/graphics/py-opengl/Makefile
+++ b/graphics/py-opengl/Makefile
@@ -30,7 +30,6 @@ PLIST_SUB+= OSMAJOR=${OSMAJOR}
#
# Support for Numeric is compiled in by default.
#
-WITH_NUMERIC?= yes
NUMPYDIR= ${LOCALBASE}/lib/python1.5/site-packages/numerical
#
@@ -41,8 +40,7 @@ SETUP_FILES= ${FILESDIR}/Setup.base
#
# Support for Togl is compiled in by default.
#
-WITH_TOGL?= yes
-.if defined(WITH_TOGL) && $(WITH_TOGL) == yes
+.if !defined(WITHOUT_TOGL)
SETUP_FILES+= ${FILESDIR}/Setup.add.togl
LIB_DEPENDS+= tk82.1:${PORTSDIR}/x11-toolkits/tk82
.endif