mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
741aa71483
Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav)
192 lines
5.5 KiB
Makefile
192 lines
5.5 KiB
Makefile
# New ports collection makefile for: python
|
|
# Date created: 08 August 1995
|
|
# Whom: jkh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= python23
|
|
PORTVERSION= 2.3.7
|
|
CATEGORIES= lang python ipv6
|
|
MASTER_SITES= ${PYTHON_MASTER_SITES}
|
|
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
|
|
DISTFILES= ${PYTHON_DISTFILE}
|
|
|
|
MAINTAINER= python@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}"
|
|
MAKE_ENV= VPATH="${WRKSRC}"
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= altinstall
|
|
MAN1= ${PYTHON_VERSION}.1
|
|
|
|
USE_PYTHON= yes
|
|
PYTHON_VERSION= python2.3
|
|
PYTHON_NO_DEPENDS= yes
|
|
LATEST_LINK?= ${PYTHON_VERSION:S/.//}
|
|
|
|
PLATFORMS= plat-freebsd4 plat-freebsd5 plat-freebsd6 \
|
|
plat-freebsd7 plat-freebsd8
|
|
SHARED_WRKSRC= ${WRKSRC}/build.shared
|
|
PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//}
|
|
DEMODIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
|
|
TOOLSDIR= ${PREFIX}/share/${PYTHON_VERSION}
|
|
|
|
BIN_SCRIPTS= idle pydoc python python-shared
|
|
BINLINKS_SUB= -e 's,(idle|pydoc|python-shared|python),\1${PYTHON_VER},'
|
|
|
|
OPTIONS= THREADS "Enable thread support" on \
|
|
HUGE_STACK_SIZE "Use a larger thread stack" off \
|
|
UCS4 "Use UCS4 for unicode support" on \
|
|
PYMALLOC "Use python's internal malloc" on \
|
|
IPV6 "Enable IPv6 support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_VERSION} == ${PYTHON_DEFAULT_VERSION}
|
|
MLINKS= ${PYTHON_VERSION}.1 python.1
|
|
PLIST_SUB+= IF_DEFAULT=""
|
|
.else
|
|
PLIST_SUB+= IF_DEFAULT="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_THREADS)
|
|
CONFIGURE_ARGS+= --with-threads
|
|
CFLAGS+= ${PTHREAD_CFLAGS}
|
|
.if defined(WITHOUT_HUGE_STACK_SIZE)
|
|
CFLAGS+= -DTHREAD_STACK_SIZE=0x20000
|
|
.else
|
|
CFLAGS+= -DTHREAD_STACK_SIZE=0x100000
|
|
.endif # defined(WITHOUT_HUGE_STACK_SIZE)
|
|
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(WITHOUT_UCS4) && !defined(WITH_UCS2)
|
|
CONFIGURE_ARGS+= --enable-unicode=ucs4
|
|
.endif
|
|
|
|
.if defined(WITHOUT_PYMALLOC)
|
|
CONFIGURE_ARGS+= --without-pymalloc
|
|
.endif
|
|
|
|
.if ${ARCH} == i386
|
|
PLIST_SUB+= X86_ONLY=""
|
|
.else
|
|
PLIST_SUB+= X86_ONLY="@comment "
|
|
.endif
|
|
.if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha
|
|
PLIST_SUB+= 32BIT_ONLY="@comment "
|
|
.else
|
|
PLIST_SUB+= 32BIT_ONLY=""
|
|
.endif
|
|
.if ${ARCH} == sparc64
|
|
CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_IPV6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
post-extract:
|
|
${SED} -e '1s,^.*$$,#!${PREFIX}/bin/${PYTHON_VERSION},' \
|
|
${WRKSRC}/Tools/scripts/pydoc > ${WRKDIR}/pydoc2.3
|
|
${SED} -e '1s,^.*$$,#!${PREFIX}/bin/${PYTHON_VERSION},' \
|
|
${WRKSRC}/Tools/scripts/idle > ${WRKDIR}/idle2.3
|
|
|
|
pre-patch:
|
|
${REINPLACE_CMD} -e \
|
|
's,/usr/doc/python-docs-,${PREFIX}/share/doc/python,g' \
|
|
${WRKSRC}/Lib/pydoc.py
|
|
${REINPLACE_CMD} -e \
|
|
's|^\(prefixes = .*\)\]$$|\1, "${LOCALBASE}"]|g' \
|
|
${WRKSRC}/Lib/site.py
|
|
.for ver in 6 7 8
|
|
${MKDIR} ${WRKSRC}/Lib/plat-freebsd${ver}
|
|
${CP} ${WRKSRC}/Lib/plat-freebsd5/regen ${WRKSRC}/Lib/plat-freebsd${ver}/
|
|
.endfor
|
|
|
|
post-configure: ${STACKLESS_POST_CONFIGURE}
|
|
@# prepare a subdir for shared build
|
|
.for subdir in Modules Parser Python Objects
|
|
${MKDIR} ${SHARED_WRKSRC}/${subdir}
|
|
.endfor
|
|
${SED} -e 's,^\(LDLIBRARY=\).*$$,\1libpython$$(VERSION).so,' \
|
|
-e 's,^\(BLDLIBRARY=\).*$$,\1-L. -lpython$$(VERSION),' \
|
|
-e 's,^\(CFLAGSFORSHARED=\).*$$,\1$$(CCSHARED),' \
|
|
-e 's,^\(Makefile Modules/config.c:.*\)Makefile.pre,\1,' \
|
|
${WRKSRC}/Makefile > ${SHARED_WRKSRC}/Makefile
|
|
${LN} -sf ${WRKSRC}/pyconfig.h ${WRKSRC}/Include ${WRKSRC}/Grammar \
|
|
${SHARED_WRKSRC}/
|
|
${LN} -sf ${WRKSRC}/Python/getplatform.c ${WRKSRC}/Python/importdl.c \
|
|
${WRKSRC}/Python/importdl.h \
|
|
${SHARED_WRKSRC}/Python/
|
|
${LN} -sf ${WRKSRC}/Modules/makesetup ${WRKSRC}/Modules/Setup* \
|
|
${WRKSRC}/Modules/*.c ${WRKSRC}/Modules/*.h \
|
|
${SHARED_WRKSRC}/Modules/
|
|
|
|
post-build:
|
|
cd ${SHARED_WRKSRC}; \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} lib${PYTHON_VERSION}.so python; \
|
|
${LN} -f lib${PYTHON_VERSION}.so lib${PYTHON_VERSION}.so.1; \
|
|
${LN} -f python ${PYTHON_VERSION:S/thon/thon-shared/}
|
|
|
|
pre-su-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:
|
|
@# shared version of executable and library
|
|
${INSTALL_PROGRAM} ${SHARED_WRKSRC}/lib${PYTHON_VERSION}.so.1 \
|
|
${PREFIX}/lib
|
|
@${MKDIR} ${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/Misc/python.man \
|
|
${MANPREFIX}/man/man1/${PYTHON_VERSION}.1
|
|
cd ${PREFIX}/lib; ${LN} -sf lib${PYTHON_VERSION}.so.1 \
|
|
lib${PYTHON_VERSION}.so
|
|
${LN} -sf ${PREFIX}/lib/lib${PYTHON_VERSION}.so \
|
|
${PYTHONPREFIX_LIBDIR}/config
|
|
${INSTALL_PROGRAM} \
|
|
${SHARED_WRKSRC}/${PYTHON_VERSION:S/thon/thon-shared/} \
|
|
${PREFIX}/bin
|
|
|
|
@# additional files installing by ports
|
|
${INSTALL_SCRIPT} ${WRKDIR}/pydoc2.3 ${WRKDIR}/idle2.3 \
|
|
${PREFIX}/bin
|
|
|
|
.if ${PYTHON_VERSION} == ${PYTHON_DEFAULT_VERSION}
|
|
for f in ${BIN_SCRIPTS}; do \
|
|
TARGET=`${ECHO_CMD} $$f | ${SED} -E ${BINLINKS_SUB}`; \
|
|
cd ${PREFIX}/bin && ${LN} -f $$TARGET $$f; \
|
|
done
|
|
.endif
|
|
|
|
.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
|
|
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|