mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
9c0d74037c
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.
40 lines
1007 B
Makefile
40 lines
1007 B
Makefile
# New ports collection makefile for: py-Tkinter
|
|
# Version required: 1.5.2
|
|
# Date created: 12 Jan 1999
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= py152
|
|
PKGNAME= py-tkinter-1.5.2
|
|
CATEGORIES= x11-toolkits python
|
|
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|
ftp://ftp.cwi.nl/pub/python/src/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= tg@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
|
|
LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82
|
|
RUN_DEPENDS= python:${PORTSDIR}/lang/python
|
|
|
|
DIST_SUBDIR= python
|
|
WRKSRC= ${WRKDIR}/Python-1.5.2/Modules
|
|
ALL_TARGET= sharedmods
|
|
MAKE_FLAGS= OPT="${CFLAGS}"
|
|
|
|
PYTHONSCRIPTDIR= ${PREFIX}/lib/python1.5
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/Setup ${WRKSRC}
|
|
@${CP} ${PYTHONSCRIPTDIR}/config/Makefile.pre.in ${WRKSRC}
|
|
|
|
do-configure:
|
|
@(cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${MAKE} -f Makefile.pre.in boot)
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/_tkinter.so ${PYTHONSCRIPTDIR}/site-packages
|
|
|
|
.include <bsd.port.mk>
|