131 lines
3.3 KiB
Makefile
131 lines
3.3 KiB
Makefile
# New ports collection makefile for: python-devel
|
|
# Date created: 3 July 2003
|
|
# Whom: Hye-Shik Chang <perky@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= python
|
|
PORTVERSION= 2.4.a0.20030801
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang python ipv6
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= perky
|
|
DISTFILES= ${PYTHON_DISTFILE}
|
|
|
|
MAINTAINER= perky@FreeBSD.org
|
|
COMMENT?= An interpreted object-oriented programming language
|
|
|
|
DIST_SUBDIR= python
|
|
WRKSRC= ${PYTHON_WRKSRC}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-fpectl
|
|
CONFIGURE_ENV= OPT="${CFLAGS}"
|
|
INSTALL_TARGET= altinstall
|
|
MAN1= ${PYTHON_VERSION}.1
|
|
|
|
USE_PYTHON= yes
|
|
PYTHON_VERSION= python2.4
|
|
PYTHON_NO_DEPENDS= yes
|
|
LATEST_LINK= ${PYTHON_VERSION:S/.//}
|
|
|
|
#
|
|
# If you don't want to use Python's thread module, you need to set
|
|
# WITHOUT_THREADS.
|
|
#
|
|
.if !defined(WITHOUT_THREADS)
|
|
CONFIGURE_ARGS+= --with-threads
|
|
CFLAGS+= ${PTHREAD_CFLAGS}
|
|
CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-threads
|
|
.if defined(LDFLAGS)
|
|
CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
|
|
.endif # defined(LDFLAGS)
|
|
.endif # !defined(WITHOUT_THREADS)
|
|
|
|
.if !defined(WITH_UCS2)
|
|
CONFIGURE_ARGS+= --enable-unicode=ucs4
|
|
.endif
|
|
|
|
.if defined(BUILD_SHARED)
|
|
CONFIGURE_ARGS+= --enable-shared
|
|
INSTALLS_SHLIB= yes
|
|
PLIST_SUB+= SHARED_ONLY=""
|
|
.else
|
|
PLIST_SUB+= SHARED_ONLY="@comment "
|
|
.endif
|
|
|
|
DEMODIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
|
|
TOOLSDIR= ${PREFIX}/share/${PYTHON_VERSION}
|
|
CFLAGS+= -D__BSD_VISIBLE # see python/configure.in rev 1.409
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == i386
|
|
PLIST_SUB+= X86_ONLY=""
|
|
.else
|
|
PLIST_SUB+= X86_ONLY="@comment "
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 400000
|
|
LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses
|
|
CFLAGS+= -I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include
|
|
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib"
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 500000 && ${OSVERSION} < 500005
|
|
CONFIGURE_ARGS+= --with-libs='-lxpg4'
|
|
.endif
|
|
.if ${OSVERSION} < 400020
|
|
CONFIGURE_ARGS+= --with-libs='-lxpg4'
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 400014
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 500000
|
|
PLATFORMS=plat-freebsd2 plat-freebsd3 plat-freebsd4
|
|
.elif ${OSVERSION} >= 400000
|
|
PLATFORMS=plat-freebsd2 plat-freebsd3 plat-freebsd5
|
|
.elif ${OSVERSION} >= 300000
|
|
PLATFORMS=plat-freebsd2 plat-freebsd4 plat-freebsd5
|
|
.else
|
|
PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|
.endif
|
|
|
|
post-extract:
|
|
${SED} -e '1s,^.*$$,#!${PREFIX}/bin/${PYTHON_VERSION},' \
|
|
${WRKSRC}/Tools/scripts/pydoc > ${WRKDIR}/pydoc2.4
|
|
${SED} -e '1s,^.*$$,#!${PREFIX}/bin/${PYTHON_VERSION},' \
|
|
${WRKSRC}/Tools/scripts/idle > ${WRKDIR}/idle2.4
|
|
|
|
pre-install:
|
|
.for platform in ${PLATFORMS}
|
|
${MKDIR} ${PYTHONPREFIX_LIBDIR}/${platform}
|
|
.for file in IN.py regen
|
|
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
|
${PYTHONPREFIX_LIBDIR}/${platform}/
|
|
.endfor
|
|
.endfor
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/pydoc2.4 ${WRKDIR}/idle2.4 \
|
|
${PREFIX}/bin
|
|
@${MKDIR} ${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/Misc/python.man \
|
|
${MANPREFIX}/man/man1/${PYTHON_VERSION}.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${TOOLSDIR}
|
|
@cd ${WRKSRC}; tar -c --exclude='*CVS*' -f - Tools | \
|
|
(cd ${TOOLSDIR}; tar xf -)
|
|
@${MKDIR} ${DEMODIR}
|
|
@cd ${WRKSRC}/Demo; tar -c --exclude='*CVS*' -f - * | \
|
|
(cd ${DEMODIR}; tar xf -)
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|