1995-08-08 22:09:07 +00:00
|
|
|
# New ports collection makefile for: python
|
|
|
|
# Date created: 08 August 1995
|
|
|
|
# Whom: jkh
|
|
|
|
#
|
1999-08-25 06:35:40 +00:00
|
|
|
# $FreeBSD$
|
1995-08-08 22:09:07 +00:00
|
|
|
#
|
|
|
|
|
2000-04-12 06:21:15 +00:00
|
|
|
PORTNAME= python
|
2000-09-08 11:41:43 +00:00
|
|
|
PORTVERSION= 1.6
|
2000-04-04 09:53:12 +00:00
|
|
|
CATEGORIES= lang python
|
2000-09-08 11:41:43 +00:00
|
|
|
MASTER_SITES= http://www.python.org/1.6/
|
|
|
|
DISTNAME= Python-${PORTVERSION}
|
1998-04-08 09:23:59 +00:00
|
|
|
|
1999-08-31 06:53:31 +00:00
|
|
|
MAINTAINER= tg@FreeBSD.org
|
1995-08-08 22:09:07 +00:00
|
|
|
|
2000-01-27 15:54:26 +00:00
|
|
|
DIST_SUBDIR= python
|
1997-08-06 06:40:31 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2000-07-27 12:19:38 +00:00
|
|
|
CONFIGURE_ARGS= --with-fpectl
|
1999-05-19 08:47:50 +00:00
|
|
|
CONFIGURE_ENV= OPT="${CFLAGS}"
|
1996-11-02 19:04:54 +00:00
|
|
|
INSTALL_TARGET= install
|
1998-12-02 08:24:52 +00:00
|
|
|
PLIST= ${WRKDIR}/PLIST
|
1996-11-17 06:12:51 +00:00
|
|
|
MAN1= python.1
|
1995-08-08 22:09:07 +00:00
|
|
|
|
2000-09-28 11:28:11 +00:00
|
|
|
USE_PYTHON= yes
|
2000-09-08 11:41:43 +00:00
|
|
|
PYTHON_VERSION= python1.6
|
|
|
|
PYTHON_NO_DEPENDS= yes
|
|
|
|
|
1997-11-24 15:12:44 +00:00
|
|
|
#
|
|
|
|
# The standard setup file
|
|
|
|
#
|
|
|
|
SETUP_FILE= Setup
|
|
|
|
|
1997-06-02 11:42:56 +00:00
|
|
|
#
|
2000-07-27 12:19:38 +00:00
|
|
|
# If you don't want to use Python's thread module, you need to set
|
2000-09-08 11:41:43 +00:00
|
|
|
# WITHOUT_THREADS.
|
1998-01-06 08:03:13 +00:00
|
|
|
#
|
1998-12-02 08:24:52 +00:00
|
|
|
LIBC_R!= /sbin/ldconfig -r | grep c_r || true
|
2000-04-17 00:19:02 +00:00
|
|
|
.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS)
|
1997-08-06 06:40:31 +00:00
|
|
|
CONFIGURE_ARGS+= --with-thread
|
1998-03-03 08:05:04 +00:00
|
|
|
CFLAGS+= -D_THREAD_SAFE
|
1999-05-19 08:47:50 +00:00
|
|
|
CONFIGURE_ENV+= LDFLAGS="-pthread ${LDFLAGS}"
|
1997-06-02 11:42:56 +00:00
|
|
|
.endif
|
|
|
|
|
2000-09-08 11:41:43 +00:00
|
|
|
#
|
|
|
|
# OpenSSL support is built on machines that have it
|
|
|
|
#
|
|
|
|
.if exists(/etc/ssl/openssl.cnf)
|
|
|
|
SETUP_LOCAL+= Setup.OpenSSL
|
|
|
|
.endif
|
|
|
|
|
1998-01-06 08:03:13 +00:00
|
|
|
#
|
|
|
|
# The mpz module is built on machines with a full source tree
|
|
|
|
#
|
|
|
|
.if exists(/usr/src/contrib/libgmp/gmp-impl.h)
|
|
|
|
SETUP_LOCAL+= Setup.gmp
|
2000-10-08 02:21:24 +00:00
|
|
|
PLIST_GMP= ${PKGDIR}/pkg-plist.gmp
|
1997-11-24 15:12:44 +00:00
|
|
|
.endif
|
1997-08-29 07:04:27 +00:00
|
|
|
|
1999-07-06 13:27:38 +00:00
|
|
|
#
|
|
|
|
# Install the Tools by default. It contains scripts ranging from an IDE
|
|
|
|
# to a web tree checker, to a collection of simple scripts that are useful
|
|
|
|
# while extending or managing Python.
|
|
|
|
#
|
2000-04-17 00:19:02 +00:00
|
|
|
.if !defined(WITHOUT_TOOLS)
|
2000-10-08 02:21:24 +00:00
|
|
|
PLIST_TOOLS= ${PKGDIR}/pkg-plist.Tools
|
1999-07-15 11:59:41 +00:00
|
|
|
.endif
|
1999-07-06 13:27:38 +00:00
|
|
|
|
1998-05-07 08:22:13 +00:00
|
|
|
post-extract:
|
1999-04-21 05:56:27 +00:00
|
|
|
cd ${WRKSRC}/Lib && ${SH} ${FILESDIR}/plat-freebsd4.sh
|
2000-03-24 09:17:27 +00:00
|
|
|
cd ${WRKSRC}/Lib && ${SH} ${FILESDIR}/plat-freebsd5.sh
|
1998-05-07 08:22:13 +00:00
|
|
|
|
1995-08-08 22:09:07 +00:00
|
|
|
post-configure:
|
1997-06-02 11:42:56 +00:00
|
|
|
${CP} ${FILESDIR}/${SETUP_FILE} ${WRKSRC}/Modules/Setup
|
1997-11-24 15:12:44 +00:00
|
|
|
.for file in ${SETUP_LOCAL}
|
|
|
|
${CAT} ${FILESDIR}/${file} >> ${WRKSRC}/Modules/Setup.local
|
|
|
|
.endfor
|
1995-08-08 22:09:07 +00:00
|
|
|
|
1998-11-11 05:37:39 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2000-07-27 12:19:38 +00:00
|
|
|
.if ${OSVERSION} >= 500000 && ${OSVERSION} < 500005
|
|
|
|
CONFIGURE_ARGS+= --with-libs='-lxpg4'
|
|
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 400020
|
|
|
|
CONFIGURE_ARGS+= --with-libs='-lxpg4'
|
|
|
|
.endif
|
|
|
|
|
2000-03-24 09:17:27 +00:00
|
|
|
.if ${OSVERSION} >= 500000
|
|
|
|
PLATFORMS=plat-freebsd2 plat-freebsd3 plat-freebsd4
|
|
|
|
.elif ${OSVERSION} >= 400000
|
|
|
|
PLATFORMS=plat-freebsd2 plat-freebsd3 plat-freebsd5
|
1999-02-22 19:06:07 +00:00
|
|
|
.elif ${OSVERSION} >= 300000
|
2000-03-24 09:17:27 +00:00
|
|
|
PLATFORMS=plat-freebsd2 plat-freebsd4 plat-freebsd5
|
|
|
|
.else
|
|
|
|
PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
1998-05-07 08:22:13 +00:00
|
|
|
.endif
|
1999-02-22 19:06:07 +00:00
|
|
|
|
|
|
|
pre-install:
|
1999-04-21 05:56:27 +00:00
|
|
|
.for platform in ${PLATFORMS}
|
2000-09-08 11:41:43 +00:00
|
|
|
${MKDIR} ${PREFIX}/lib/${PYTHON_VERSION}/${platform}
|
1999-04-21 05:56:27 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/* \
|
2000-09-08 11:41:43 +00:00
|
|
|
${PREFIX}/lib/${PYTHON_VERSION}/${platform}/
|
1999-04-21 05:56:27 +00:00
|
|
|
.endfor
|
2000-10-08 02:21:24 +00:00
|
|
|
@sort -r -o ${PLIST} ${PLIST_GMP} ${PLIST_TOOLS} ${PKGDIR}/pkg-plist
|
1998-05-07 08:22:13 +00:00
|
|
|
|
1996-01-18 10:18:54 +00:00
|
|
|
post-install:
|
|
|
|
strip ${PREFIX}/bin/python
|
1998-12-02 08:24:52 +00:00
|
|
|
@${MKDIR} ${PREFIX}/share/doc/python
|
2000-01-06 11:46:19 +00:00
|
|
|
@${MKDIR} ${PREFIX}/share/emacs/site-lisp
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/Misc/python-mode.el ${PREFIX}/share/emacs/site-lisp
|
2000-09-08 11:41:43 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/doc/python
|
|
|
|
@${MKDIR} ${PREFIX}/lib/${PYTHON_VERSION}/site-packages
|
2000-04-17 00:19:02 +00:00
|
|
|
.if !defined(WITHOUT_TOOLS)
|
1999-07-06 13:27:38 +00:00
|
|
|
@cd ${WRKSRC}; tar cf - Tools | \
|
2000-09-08 11:41:43 +00:00
|
|
|
(cd ${PREFIX}/lib/${PYTHON_VERSION}; tar xf -)
|
1999-07-06 13:27:38 +00:00
|
|
|
.endif
|
1995-08-09 01:30:00 +00:00
|
|
|
|
1998-11-11 05:37:39 +00:00
|
|
|
.include <bsd.port.post.mk>
|