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