3d9a815d9c
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>
77 lines
2.3 KiB
Makefile
77 lines
2.3 KiB
Makefile
PORTNAME= dbus
|
|
DISTVERSION= 1.3.2
|
|
PORTREVISION?= 0
|
|
CATEGORIES= devel gnome python
|
|
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-python/
|
|
PKGNAMEPREFIX?= py
|
|
PKGNAMESUFFIX?= -common
|
|
DISTNAME= dbus-python-${PORTVERSION}
|
|
|
|
MAINTAINER= desktop@FreeBSD.org
|
|
COMMENT?= Common files for the Python bindings for the D-BUS messaging system
|
|
WWW= https://dbus.freedesktop.org/doc/dbus-python/
|
|
|
|
BUILD_DEPENDS= dbus-glib>=0:devel/dbus-glib
|
|
|
|
SLAVE_PORT?= no
|
|
|
|
USES= gettext gmake libtool pathfix pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${PYTHON_INCLUDEDIR}
|
|
CONFIGURE_ARGS= --docdir=${DOCSDIR} \
|
|
--disable-api-docs
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.if ${SLAVE_PORT} == no
|
|
USES+= python:build
|
|
|
|
NO_ARCH= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
|
|
|
OPTIONS_SUB= yes
|
|
OPTIONS_DEFINE= HTMLDOCS DOCS EXAMPLES
|
|
HTMLDOCS_DESC= build html documentation
|
|
HTMLDOCS_IMPLIES= DOCS
|
|
HTMLDOCS_CONFIGURE_ENABLE= documentation
|
|
HTMLDOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx \
|
|
${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR}
|
|
|
|
post-patch-DOCS-on:
|
|
@${REINPLACE_CMD} -e 's|HEADERS install-dist_docDATA|HEADERS|g ; \
|
|
s|PYTHON install-nodist_docDATA|PYTHON|g' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include/dbus-1.0/dbus/
|
|
${INSTALL_DATA} ${WRKSRC}/include/dbus/dbus-python.h \
|
|
${STAGEDIR}${PREFIX}/include/dbus-1.0/dbus/dbus-python.h
|
|
${INSTALL_DATA} ${WRKSRC}/dbus-python.pc \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/dbus-python.pc
|
|
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR} && \
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.py ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR} && \
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${STAGEDIR}${DOCSDIR} && \
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} && \
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-install-HTMLDOCS-on:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/_build/*.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.else # slave is defined
|
|
LIB_DEPENDS+= libdbus-glib-1.so:devel/dbus-glib
|
|
RUN_DEPENDS+= pydbus-common>=0:devel/pydbus-common
|
|
USE_LDCONFIG= yes
|
|
USES+= python
|
|
USE_PYTHON= flavors py3kplist
|
|
|
|
post-install:
|
|
@${RM} -r ${STAGEDIR}${PREFIX}/include/dbus-1.0 \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/dbus-python.pc
|
|
@${RM} -r ${STAGEDIR}/${DOCSDIR}
|
|
.endif # end of slaving block
|
|
|
|
.include <bsd.port.mk>
|