freebsd-ports/lang/python26/Makefile

117 lines
2.9 KiB
Makefile
Raw Normal View History

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
#
PORTNAME= python
2000-10-18 13:58:50 +02:00
PORTVERSION= 2.0
CATEGORIES= lang python
2000-10-18 13:58:50 +02:00
MASTER_SITES= http://www.pythonlabs.com/products/python2.0/downloads/
DISTFILES= ${PYTHON_DISTFILE}
1998-04-08 11:23:59 +02:00
MAINTAINER= tg@FreeBSD.org
1995-08-09 00:09:07 +02:00
DIST_SUBDIR= python
2000-10-18 13:58:50 +02:00
WRKSRC= ${PYTHON_WRKSRC}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-fpectl
1999-05-19 10:47:50 +02:00
CONFIGURE_ENV= OPT="${CFLAGS}"
INSTALL_TARGET= install
PLIST= ${WRKDIR}/PLIST
1996-11-17 07:12:51 +01:00
MAN1= python.1
1995-08-09 00:09:07 +02:00
2000-09-28 13:28:11 +02:00
USE_PYTHON= yes
2000-10-18 13:58:50 +02:00
PYTHON_VERSION= python2.0
2000-09-08 13:41:43 +02:00
PYTHON_NO_DEPENDS= yes
#
# The standard setup file
#
SETUP_FILE= Setup
#
# 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
#
LIBC_R!= /sbin/ldconfig -r | grep c_r || true
.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS)
2000-10-18 13:58:50 +02:00
CONFIGURE_ARGS+= --with-threads
CFLAGS+= -D_THREAD_SAFE
1999-05-19 10:47:50 +02:00
CONFIGURE_ENV+= LDFLAGS="-pthread ${LDFLAGS}"
2000-10-18 13:58:50 +02:00
.else
CONFIGURE_ARGS+= --without-threads
.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
PLIST_GMP= ${PKGDIR}/pkg-plist.gmp
.endif
#
# 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.
#
.if !defined(WITHOUT_TOOLS)
PLIST_TOOLS= ${PKGDIR}/pkg-plist.Tools
.endif
1995-08-09 00:09:07 +02:00
post-configure:
${CP} ${FILESDIR}/${SETUP_FILE} ${WRKSRC}/Modules/Setup
.for file in ${SETUP_LOCAL}
${CAT} ${FILESDIR}/${file} >> ${WRKSRC}/Modules/Setup.local
.endfor
1995-08-09 00:09:07 +02:00
.include <bsd.port.pre.mk>
.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
.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
.endif
pre-install:
.for platform in ${PLATFORMS}
2000-09-08 13:41:43 +02:00
${MKDIR} ${PREFIX}/lib/${PYTHON_VERSION}/${platform}
2000-10-18 13:58:50 +02:00
.for file in FCNTL.py IN.py SOCKET.py TERMIOS.py regen
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
2000-09-08 13:41:43 +02:00
${PREFIX}/lib/${PYTHON_VERSION}/${platform}/
2000-10-18 13:58:50 +02:00
.endfor
.endfor
@sort -r -o ${PLIST} ${PLIST_GMP} ${PLIST_TOOLS} ${PKGDIR}/pkg-plist
1996-01-18 11:18:54 +01:00
post-install:
strip ${PREFIX}/bin/python
@${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
@${MKDIR} ${PREFIX}/lib/${PYTHON_VERSION}/site-packages
.if !defined(WITHOUT_TOOLS)
2000-10-18 13:58:50 +02:00
@cd ${WRKSRC}; tar -c --exclude='*CVS*' -f - Tools | \
2000-09-08 13:41:43 +02:00
(cd ${PREFIX}/lib/${PYTHON_VERSION}; tar xf -)
.endif
.include <bsd.port.post.mk>