aboutsummaryrefslogtreecommitdiff
path: root/graphics/py-imaging
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2006-05-05 11:11:02 +0000
committerRenato Botelho <garga@FreeBSD.org>2006-05-05 11:11:02 +0000
commit77030ba677a354ec6d56b009e4ebad80d700883d (patch)
tree6edbfa1977c5f0d1b5a678735d87364fe9df5fff /graphics/py-imaging
parentaf53d0518eeb11d58912cd6cb46fbfd3882d8809 (diff)
downloadports-77030ba677a354ec6d56b009e4ebad80d700883d.tar.gz
ports-77030ba677a354ec6d56b009e4ebad80d700883d.zip
- Change TKINTER option enabled by default to fix skencil build
- bump PORTREVISION Noted by: vs Approved by: maintainer by email
Notes
Notes: svn path=/head/; revision=161413
Diffstat (limited to 'graphics/py-imaging')
-rw-r--r--graphics/py-imaging/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile
index f3c05a6b2c60..e1775c59a824 100644
--- a/graphics/py-imaging/Makefile
+++ b/graphics/py-imaging/Makefile
@@ -7,7 +7,7 @@
PORTNAME= imaging
PORTVERSION= 1.1.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= graphics python
MASTER_SITES= http://effbot.org/downloads/ \
http://www.pythonware.net/storage/
@@ -31,11 +31,11 @@ PORTDOCS= *
DOCDIRS= ${PREFIX}/share/doc/py-imaging
EXAMPLESDIR= ${PREFIX}/share/examples/py-imaging
-OPTIONS= TKINTER "Build with tkinter for X support" off
+OPTIONS= TKINTER "Build with tkinter for X support" on
.include <bsd.port.pre.mk>
-.if defined(WITH_TKINTER) || exists(${PYTHON_SITELIBDIR}/_tkinter.so)
+.if !defined(WITHOUT_TKINTER)
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
PLIST_SUB+= TKINTER=""