diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-06-05 11:38:35 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-06-05 11:38:35 +0000 |
commit | 053fd210dfb21a6ab915fb493618c4b6c097ec06 (patch) | |
tree | ce1effe547ea71762f28c9ca1843326696099a34 /lang/tclX | |
parent | a89b2f073dc7dd991872fe5f4f9c8bf20341af75 (diff) | |
download | FreeBSD-ports-053fd210dfb21a6ab915fb493618c4b6c097ec06.zip FreeBSD-ports-053fd210dfb21a6ab915fb493618c4b6c097ec06.tar.gz |
Standartise the way used to disable X11 support in various ports. From now
on WITHOUT_X11 is the Only True Way[tm].
Diffstat (limited to 'lang/tclX')
-rw-r--r-- | lang/tclX/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/tclX/Makefile b/lang/tclX/Makefile index 0958ce6..5143e93 100644 --- a/lang/tclX/Makefile +++ b/lang/tclX/Makefile @@ -14,7 +14,7 @@ DISTNAME= tclX8.2.0 MAINTAINER= mi@aldan.algebra.com -.ifdef NO_X +.ifdef WITHOUT_X11 LIB_DEPENDS= tcl${TCL_DVER}.1:${PORTSDIR}/lang/tcl${TCL_DVER} PKGNAMESUFFIX= -nox11 .else @@ -33,7 +33,7 @@ CONFIGURE_ARGS= --enable-shared \ --with-tk="${LOCALBASE}/lib/tk${TCL_VER}" PLIST_SUB= TCLX_LONG_VER=8.2 TCLX_SHORT_VER=82 -.ifdef NO_X +.ifdef WITHOUT_X11 CONFIGURE_ARGS+=--enable-tk=NO PLIST_SUB+= X11='@comment ' .else |