diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2004-07-08 15:53:45 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2004-07-08 15:53:45 +0000 |
commit | 95340a84dc81dbf3fe8377e5a7d185b82ca5ea65 (patch) | |
tree | 0ddef3879cda667274ea8c93c7af429c924ee74b /lang/python31/Makefile | |
parent | d8634f008c0e05fb713e1c1d0be8d6ff7a72f15d (diff) | |
download | ports-95340a84dc81dbf3fe8377e5a7d185b82ca5ea65.tar.gz ports-95340a84dc81dbf3fe8377e5a7d185b82ca5ea65.zip |
- Update to 2.4a1, the first alpha release of Python 2.4.
- Provide USE_PYTHON_BUILD and USE_PYTHON_RUN to allow explicit
dependencies. [1]
- Provide PYDISTUTILS_CONFIGUREARGS and run ${PYSETUP} config on
'do-configure' targets. [2]
Reviewed by: eik [1]
Submitted by: Mike Brown <mike@skew.org>
Notes
Notes:
svn path=/head/; revision=113222
Diffstat (limited to 'lang/python31/Makefile')
-rw-r--r-- | lang/python31/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/python31/Makefile b/lang/python31/Makefile index 8c2b27bc134d..a9c98c31e232 100644 --- a/lang/python31/Makefile +++ b/lang/python31/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= python -PORTVERSION= 2.4.a0.20040311 +PORTVERSION= 2.4.a1 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -115,6 +115,8 @@ post-extract: ${WRKSRC}/Tools/scripts/pydoc > ${WRKDIR}/pydoc2.4 ${SED} -e '1s,^.*$$,#!${PREFIX}/bin/${PYTHON_VERSION},' \ ${WRKSRC}/Tools/scripts/idle > ${WRKDIR}/idle2.4 + ${SED} -e '1s,^.*$$,#!${PREFIX}/bin/${PYTHON_VERSION},' \ + ${WRKSRC}/Lib/smtpd.py > ${WRKDIR}/smtpd2.4.py post-patch: ${REINPLACE_CMD} -e 's,\(PY_VERSION.*\)2\.4a0,\1${PORTVERSION},g' \ @@ -170,7 +172,7 @@ post-install: @# additional files installing by ports ${INSTALL_SCRIPT} ${WRKDIR}/pydoc2.4 ${WRKDIR}/idle2.4 \ - ${PREFIX}/bin + ${WRKDIR}/smtpd2.4.py ${PREFIX}/bin @${MKDIR} ${MANPREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/Misc/python.man \ ${MANPREFIX}/man/man1/${PYTHON_VERSION}.1 |