diff options
author | tg <tg@FreeBSD.org> | 1997-01-02 18:03:00 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1997-01-02 18:03:00 +0800 |
commit | cc9713cffe19c00a582860af7859a73b9770d968 (patch) | |
tree | 4bd861be77e9a4dc0b442482b5068f45c0a08570 /lang/python31/Makefile | |
parent | 779d32b8c9ae0640a411c46575f81f42b60fdf3a (diff) | |
download | freebsd-ports-gnome-cc9713cffe19c00a582860af7859a73b9770d968.tar.gz freebsd-ports-gnome-cc9713cffe19c00a582860af7859a73b9770d968.tar.zst freebsd-ports-gnome-cc9713cffe19c00a582860af7859a73b9770d968.zip |
Compile in the PyTix extensions, now that we have Tix.
Change MAINTAINER from jkh to tg. OK'd by: Jordan.
Diffstat (limited to 'lang/python31/Makefile')
-rw-r--r-- | lang/python31/Makefile | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/lang/python31/Makefile b/lang/python31/Makefile index e622d281a97c..4e40e18bf9c2 100644 --- a/lang/python31/Makefile +++ b/lang/python31/Makefile @@ -3,18 +3,22 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.9 1996/11/12 02:18:59 obrien Exp $ +# $Id: Makefile,v 1.10 1996/11/17 06:12:49 obrien Exp $ # DISTNAME= python1.4 PKGNAME= python-1.4 CATEGORIES= lang MASTER_SITES= ftp://www.python.org/pub/python/src/ \ - ftp://ftp.cwi.nl/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= jkh@FreeBSD.org +MAINTAINER= tg@FreeBSD.org -LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 +LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \ + tix4141\\.1\\.:${PORTSDIR}/x11/tix WRKSRC= ${WRKDIR}/Python-1.4 HAS_CONFIGURE= yes @@ -23,6 +27,14 @@ 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 |