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>
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
PORTNAME= tracker
|
|
PORTVERSION= 2.3.4
|
|
PORTREVISION= 10
|
|
CATEGORIES= sysutils gnome
|
|
MASTER_SITES= GNOME
|
|
|
|
PATCH_SITES= https://gitlab.gnome.org/GNOME/tracker/-/commit/
|
|
PATCHFILES= 27d09d510c056bcda3389ed5573463272162d510.diff:-p1
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Object database, tag/metadata database, search tool and indexer
|
|
WWW= https://wiki.gnome.org/Projects/Tracker
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.LGPL
|
|
|
|
LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid \
|
|
libsoup-2.4.so:devel/libsoup \
|
|
libdbus-1.so:devel/dbus \
|
|
libjson-glib-1.0.so:devel/json-glib \
|
|
libicutu.so:devel/icu
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= compiler:c++11-lib gettext gnome localbase:ldflags meson \
|
|
pkgconfig python:build sqlite tar:xz vala:build
|
|
USE_GNOME= glib20 introspection:build libxml2
|
|
USE_LDCONFIG= yes
|
|
MESON_ARGS= -Ddocs=false \
|
|
-Dman=true \
|
|
-Dnetwork_manager=disabled \
|
|
-Dstemmer=disabled \
|
|
-Dbash_completion=${PREFIX}/etc/bash_completion.d \
|
|
-Dsystemd_user_services=no
|
|
GLIB_SCHEMAS= org.freedesktop.Tracker.DB.gschema.xml \
|
|
org.freedesktop.Tracker.FTS.gschema.xml \
|
|
org.freedesktop.Tracker.Store.gschema.xml \
|
|
org.freedesktop.Tracker.enums.xml \
|
|
org.freedesktop.Tracker.gschema.xml
|
|
BINARY_ALIAS= python3=${PYTHON_CMD}
|
|
CFLAGS+= -Wno-int-conversion
|
|
|
|
PLIST_SUB= LIBVER=0.304.0
|
|
|
|
.include <bsd.port.mk>
|