diff options
author | tg <tg@FreeBSD.org> | 2000-04-04 17:53:12 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-04-04 17:53:12 +0800 |
commit | 310b43ee4228aeef30798502b0db9c5054321093 (patch) | |
tree | 069a9c4558470602e3dafc66613bde1e62787fdb /lang/python31 | |
parent | a4808fa3ede1b62fb3e0fe56ed3a7878e9d50f01 (diff) | |
download | freebsd-ports-gnome-310b43ee4228aeef30798502b0db9c5054321093.tar.gz freebsd-ports-gnome-310b43ee4228aeef30798502b0db9c5054321093.tar.zst freebsd-ports-gnome-310b43ee4228aeef30798502b0db9c5054321093.zip |
Separate the Python Tk module from the main port. I've been
wanting do to this for a long time now. Now we got rid of the stupid
dependency on Tcl/Tk and save some checks in python's makefile.
Update the dependent ports accordingly.
Diffstat (limited to 'lang/python31')
-rw-r--r-- | lang/python31/Makefile | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lang/python31/Makefile b/lang/python31/Makefile index 7e3a0663fe2e..fc091f0a9713 100644 --- a/lang/python31/Makefile +++ b/lang/python31/Makefile @@ -8,15 +8,13 @@ DISTNAME= py152 PKGNAME= python-1.5.2 -CATEGORIES= lang python tk82 +CATEGORIES= lang python MASTER_SITES= ftp://www.python.org/pub/python/src/ \ ftp://ftp.cwi.nl/pub/python/src/ EXTRACT_SUFX= .tgz MAINTAINER= tg@FreeBSD.org -LIB_DEPENDS= ${TK_DEPENDS} - DIST_SUBDIR= python WRKSRC= ${WRKDIR}/Python-1.5.2 GNU_CONFIGURE= yes @@ -32,18 +30,6 @@ MAN1= python.1 SETUP_FILE= Setup # -# Support for Tk is compiled in by default only if X11 is installed. -# -.if exists(${X11BASE}) -WITH_TK?= yes -.endif -.if defined(WITH_TK) && $(WITH_TK) == yes -TK_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 -SETUP_LOCAL= Setup.tk -PLIST_TK= ${PKGDIR}/PLIST.tk -.endif - -# # If you want to use Python's thread module, you need to set WITH_THREADS # to 'yes', and you must have the FreeBSD threading c library (libc_r) # installed. See 'man 3 pthread' for details on libc_r. |