forked from Lainports/freebsd-ports
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568>
69 lines
1.9 KiB
Makefile
69 lines
1.9 KiB
Makefile
PORTNAME= talloc
|
|
DISTVERSION= 2.3.4
|
|
PORTREVISION= 0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SAMBA
|
|
|
|
MAINTAINER= timur@FreeBSD.org
|
|
COMMENT= Hierarchical pool based memory allocator
|
|
WWW= https://talloc.samba.org/
|
|
|
|
LICENSE= LGPL3
|
|
|
|
USES= compiler pkgconfig shebangfix waf
|
|
USE_LDCONFIG= yes
|
|
SHEBANG_GLOB= *.py
|
|
WAF_CMD= buildtools/bin/waf
|
|
CONFIGURE_LOG= bin/config.log
|
|
|
|
PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig
|
|
PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR:S;^${PREFIX}/;;}
|
|
|
|
CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \
|
|
--disable-rpath \
|
|
--disable-rpath-install \
|
|
--bundled-libraries=NONE \
|
|
--builtin-libraries=replace \
|
|
--without-gettext
|
|
CONFIGURE_ENV= PYTHONHASHSEED=1
|
|
MAKE_ENV= PYTHONHASHSEED=1
|
|
|
|
MANPAGES_DESC= Build and install manpages (requires textproc/docbook-xsl)
|
|
|
|
OPTIONS_DEFINE= DEBUG MANPAGES PYTHON
|
|
OPTIONS_DEFAULT= PYTHON
|
|
OPTIONS_SUB= yes
|
|
|
|
DEBUG_CFLAGS= -g -ggdb3 -O0
|
|
DEBUG_CONFIGURE_ON= --verbose --enable-debug
|
|
DEBUG_MAKE_ARGS= --verbose
|
|
|
|
PYTHON_USES= gettext-runtime python
|
|
PYTHON_USES_OFF= python:build,test
|
|
PYTHON_CONFIGURE_OFF= --disable-python
|
|
|
|
MANPAGES_CONFIGURE_ENV_OFF+= XSLTPROC="true"
|
|
MANPAGES_BUILD_DEPENDS+= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:textproc/docbook-xsl \
|
|
xsltproc:textproc/libxslt
|
|
# No fancy color error messages
|
|
CFLAGS+= ${CFLAGS_${CHOSEN_COMPILER_TYPE}}
|
|
CFLAGS_clang= -fno-color-diagnostics
|
|
CONFIGURE_ENV+= NOCOLOR=yes
|
|
MAKE_ENV+= NOCOLOR=yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%PKGCONFIGDIR%%|${PKGCONFIGDIR}|g' \
|
|
${BUILD_WRKSRC}/wscript
|
|
|
|
pre-build-MANPAGES-off:
|
|
-${MKDIR} ${BUILD_WRKSRC}/bin/default/man
|
|
${INSTALL_MAN} ${FILESDIR}/talloc.3 ${BUILD_WRKSRC}/bin/default/man
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtalloc.so.2
|
|
|
|
post-install-PYTHON-on:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpytalloc-util*.so
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/talloc*.so
|
|
|
|
.include <bsd.port.mk>
|