summaryrefslogtreecommitdiff
path: root/lang/python15/Makefile
diff options
context:
space:
mode:
authorThomas Gellekum <tg@FreeBSD.org>1997-01-02 10:03:00 +0000
committerThomas Gellekum <tg@FreeBSD.org>1997-01-02 10:03:00 +0000
commit1af0ec6bf0a3d415ee54dbab20734a97602c95c2 (patch)
treee3739726353ef53aff4c39b17d631dd38fa31803 /lang/python15/Makefile
parentActivate wget. (diff)
Compile in the PyTix extensions, now that we have Tix.
Change MAINTAINER from jkh to tg. OK'd by: Jordan.
Notes
Notes: svn path=/head/; revision=5164
Diffstat (limited to 'lang/python15/Makefile')
-rw-r--r--lang/python15/Makefile20
1 files changed, 16 insertions, 4 deletions
diff --git a/lang/python15/Makefile b/lang/python15/Makefile
index e622d281a97c..4e40e18bf9c2 100644
--- a/lang/python15/Makefile
+++ b/lang/python15/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