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>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
PORTNAME= mate-dock-applet
|
|
PORTVERSION= 21.10.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11 mate
|
|
DIST_SUBDIR= mate
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Application dock applet for the MATE panel
|
|
WWW= https://github.com/ubuntu-mate/mate-dock-applet
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libbamf3.so:sysutils/bamf
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}distro>=0:sysutils/py-distro@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}python-xlib>=0:x11-toolkits/py-python-xlib@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}xdg>=0:devel/py-xdg@${PY_FLAVOR}
|
|
|
|
USES= python autoreconf gettext gmake gnome libtool localbase \
|
|
pkgconfig shebangfix tar:xz
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ubuntu-mate
|
|
USE_GNOME= gtk30 libwnck3
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-gtk3
|
|
INSTALL_TARGET= install-strip
|
|
SHEBANG_FILES= src/*.in
|
|
|
|
GLIB_SCHEMAS= org.mate.panel.applet.dock.gschema.xml
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|/usr/bin/env python3|${PYTHON_CMD}|g' \
|
|
${WRKSRC}/src/org.mate.panel.applet.DockAppletFactory.service.in
|
|
|
|
.include <bsd.port.mk>
|