svn commit: r553055 - in branches/2020Q4: deskutils/gnome-clocks graphics/py-scikit-image security/seahorse
Piotr Kubaj
pkubaj at FreeBSD.org
Thu Oct 22 20:43:10 UTC 2020
Author: pkubaj
Date: Thu Oct 22 20:43:09 2020
New Revision: 553055
URL: https://svnweb.freebsd.org/changeset/ports/553055
Log:
MFH: r551624 r551582 r551608
graphics/py-scikit-image: fix build on GCC architectures
Use C++11 compiler:
cc1plus: error: unrecognized command line option "-std=c++0x"
deskutils/gnome-clocks: fix build on GCC architectures
Use C11 compiler:
/usr/local/include/libhandy-1/hdy-swipe-tracker.h:23: error: redefinition of typedef 'HdySwipeTracker'
/usr/local/include/libhandy-1/hdy-types.h:15: error: previous declaration of 'HdySwipeTracker' was here
security/seahorse: fix build on GCC architectures
Use C99:
../pgp/seahorse-ldap-source.c:1317: error: 'for' loop initial declaration used outside C99 mode
Approved by: portmgr (fix build blanket)
Modified:
branches/2020Q4/deskutils/gnome-clocks/Makefile
branches/2020Q4/graphics/py-scikit-image/Makefile
branches/2020Q4/security/seahorse/Makefile
Directory Properties:
branches/2020Q4/ (props changed)
Modified: branches/2020Q4/deskutils/gnome-clocks/Makefile
==============================================================================
--- branches/2020Q4/deskutils/gnome-clocks/Makefile Thu Oct 22 18:03:18 2020 (r553054)
+++ branches/2020Q4/deskutils/gnome-clocks/Makefile Thu Oct 22 20:43:09 2020 (r553055)
@@ -22,8 +22,8 @@ LIB_DEPENDS= libgeoclue-2.so:net/geoclue \
PORTSCOUT= limitw:1,even
-USES= gettext gnome localbase meson pkgconfig python:3.4+,build \
- shebangfix tar:xz
+USES= compiler:c11 gettext gnome localbase meson pkgconfig \
+ python:3.4+,build shebangfix tar:xz
USE_LDCONFIG= yes
USE_GNOME= cairo gnomedesktop3 gsound
INSTALLS_ICONS= yes
Modified: branches/2020Q4/graphics/py-scikit-image/Makefile
==============================================================================
--- branches/2020Q4/graphics/py-scikit-image/Makefile Thu Oct 22 18:03:18 2020 (r553054)
+++ branches/2020Q4/graphics/py-scikit-image/Makefile Thu Oct 22 20:43:09 2020 (r553055)
@@ -24,7 +24,7 @@ RUN_DEPENDS= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}PyWavelets>=0.4:math/py-PyWavelets@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}cloudpickle>=0.2.1:devel/py-cloudpickle@${PY_FLAVOR}
-USES= cpe python:3.7+
+USES= compiler:c++11-lang cpe python:3.7+
USE_GITHUB= yes
USE_PYTHON= autoplist concurrent distutils cython cython_run
Modified: branches/2020Q4/security/seahorse/Makefile
==============================================================================
--- branches/2020Q4/security/seahorse/Makefile Thu Oct 22 18:03:18 2020 (r553054)
+++ branches/2020Q4/security/seahorse/Makefile Thu Oct 22 20:43:09 2020 (r553055)
@@ -30,6 +30,7 @@ USE_XORG= sm
USE_LDCONFIG= yes
USES= gettext gnome localbase:ldflags meson pkgconfig \
python:3.5+,build tar:xz xorg
+USE_CSTD= c99
USE_GNOME= gtk30
INSTALLS_ICONS= yes
More information about the svn-ports-branches
mailing list