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>
61 lines
1.8 KiB
Makefile
61 lines
1.8 KiB
Makefile
PORTNAME= guake
|
|
PORTVERSION= 3.4.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= x11 python
|
|
MASTER_SITES= PYPI
|
|
DISTNAME= Guake-${PORTVERSION}
|
|
|
|
MAINTAINER= daniel@shafer.cc
|
|
COMMENT= Dropdown terminal made for the GNOME desktop
|
|
WWW= http://guake-project.org/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}gobject3>0:devel/py-gobject3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}notify2>0:devel/py-notify2@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR} \
|
|
gnome-settings-daemon>0:sysutils/gnome-settings-daemon \
|
|
gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas \
|
|
keybinder-gtk3>0:x11/keybinder-gtk3 \
|
|
keybinder>0:x11/keybinder \
|
|
libnotify>0:devel/libnotify
|
|
|
|
USES= cpe gmake gnome libtool localbase pathfix python \
|
|
shebangfix
|
|
USE_GNOME= glib20 gtk30 intltool vte3
|
|
USE_PYTHON= distutils noflavors
|
|
GLIB_SCHEMAS= org.guake.gschema.xml
|
|
CPE_VENDOR= guake-project
|
|
NO_ARCH= yes
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= MANPAGES NLS
|
|
OPTIONS_DEFAULT= MANPAGES
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
MANPAGES_MAKE_ENV_OFF= man_MANS=""
|
|
|
|
GETTEXT_FIX= about.py boxes.py customcommands.py dialogs.py globals.py \
|
|
gsettings.py guake_app.py keybindings.py main.py menus.py \
|
|
notebook.py prefs.py
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e 's|PYTHON_INTERPRETER=python3|PYTHON_INTERPRETER=${PYTHON_CMD}|g' \
|
|
${WRKSRC}/Makefile
|
|
.for x in ${GETTEXT_FIX}
|
|
@${REINPLACE_CMD} -e '/import/s|locale|gettext|g' ${WRKSRC}/guake/${x}
|
|
.endfor
|
|
|
|
post-install:
|
|
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} \
|
|
install-schemas install-locale
|
|
|
|
.include <bsd.port.mk>
|