diff options
author | tg <tg@FreeBSD.org> | 1997-05-14 15:35:22 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1997-05-14 15:35:22 +0800 |
commit | 7c1990229274b0681e3d6acd2ece21b35675c7b2 (patch) | |
tree | e3129a262bf278ebb757cc051c8d1d084659f0e7 /lang/python26/Makefile | |
parent | 5efb26dc9983031d8ff6f6412feb39224b5eb235 (diff) | |
download | freebsd-ports-gnome-7c1990229274b0681e3d6acd2ece21b35675c7b2.tar.gz freebsd-ports-gnome-7c1990229274b0681e3d6acd2ece21b35675c7b2.tar.zst freebsd-ports-gnome-7c1990229274b0681e3d6acd2ece21b35675c7b2.zip |
Some reorganization of this port:
- build some modules as shared objects, reducing the interpreter's
size and removing the dependency on tix
- install shared objects in lib
- remove version number from OS-dependent script dir
A new port of PyTix will follow shortly.
Diffstat (limited to 'lang/python26/Makefile')
-rw-r--r-- | lang/python26/Makefile | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/lang/python26/Makefile b/lang/python26/Makefile index 9d4d06ab36a2..a7380d8190ee 100644 --- a/lang/python26/Makefile +++ b/lang/python26/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $ +# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $ # DISTNAME= python1.4 @@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \ ftp://ftp.cwi.nl/pub/python/src/ \ ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \ ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz MAINTAINER= tg@FreeBSD.org -LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \ - tix4175\\.1\\.:${PORTSDIR}/x11/tix +LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 WRKSRC= ${WRKDIR}/Python-1.4 HAS_CONFIGURE= yes @@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}' INSTALL_TARGET= install MAN1= python.1 -PYTIXSRC= ${WRKDIR}/PyTix-1.12 - -post-extract: - @${ECHO_MSG} "===> Add PyTix extensions to Python core" - ${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter - ${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter - ${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules - post-configure: ${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules |