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>
51 lines
2 KiB
Makefile
51 lines
2 KiB
Makefile
PORTNAME= gajim
|
|
DISTVERSION= 1.3.3
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= https://gajim.org/downloads/${DISTVERSION:R}/
|
|
|
|
MAINTAINER= rm@FreeBSD.org
|
|
COMMENT= GTK+ Jabber client
|
|
WWW= https://gajim.org/
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}css-parser>0:www/py-css-parser@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}keyring>0:security/py-keyring@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}nbxmpp>=1.0.2:net-im/py-nbxmpp@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}precis_i18n>=1.0.0:textproc/py-precis_i18n@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}openssl>=0.12:security/py-openssl@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/py-cairo@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pyasn1>=0:devel/py-pyasn1@${PY_FLAVOR}
|
|
LIB_DEPENDS= libsoup-2.4.so:devel/libsoup
|
|
|
|
USES= cpe gettext gnome python xorg
|
|
USE_PYTHON= autoplist distutils noflavors
|
|
USE_GNOME= pygobject3
|
|
USE_XORG= x11 xext xscrnsaver
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTNAME}-${DISTVERSION}
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DBUS DOCS SPELL OMEMO OPENGPG
|
|
OPTIONS_DEFAULT=DBUS SPELL OMEMO OPENGPG
|
|
|
|
SPELL_DESC= Spell checking support
|
|
OMEMO_DESC= OMEMO end-to-end encryption support
|
|
OPENGPG_DESC= GPG encryption per XEP-0373
|
|
|
|
# GUPNP_DESC= UPnP IGD protocol support
|
|
|
|
# net/py-avahi and net/gupnp-idg is python 2.x only right now
|
|
# AVAHI_RUN_DEPENDS= avahi-discover:net/py-avahi@${PY_FLAVOR}
|
|
# GUPNP_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gupnp/__init__.py:net/gupnp-igd@${PY_FLAVOR}
|
|
|
|
OMEMO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}python-axolotl>0:security/py-python-axolotl@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}qrcode>0:textproc/py-qrcode@${PY_FLAVOR}
|
|
DBUS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.82.2:devel/py-dbus@${PY_FLAVOR}
|
|
OPENGPG_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gpgme>0:security/py-gpgme@${PY_FLAVOR}
|
|
SPELL_LIB_DEPENDS= libgspell-1.so:textproc/gspell
|
|
|
|
.include <bsd.port.mk>
|