diff options
author | Rainer Hurling <rhurlin@FreeBSD.org> | 2023-12-03 14:50:06 +0000 |
---|---|---|
committer | Rainer Hurling <rhurlin@FreeBSD.org> | 2023-12-03 14:59:02 +0000 |
commit | 0cbe960ed539b3108c02ea9eb974119f2e837599 (patch) | |
tree | 61eefb6594402cd2f5b337acfa6123f6cf24258a | |
parent | 45ff2a990f9b8d8ccc42d803755b89a232e221e5 (diff) | |
download | ports-0cbe960ed539b3108c02ea9eb974119f2e837599.tar.gz ports-0cbe960ed539b3108c02ea9eb974119f2e837599.zip |
graphics/qgis: Really disable usage of qtwebkit
While here, pet portlint.
Co-authored-by: alt2600@icloud.com
PR: 275495
-rw-r--r-- | graphics/qgis/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/qgis/Makefile b/graphics/qgis/Makefile index 77a5940b974c..a8731f7c8128 100644 --- a/graphics/qgis/Makefile +++ b/graphics/qgis/Makefile @@ -1,5 +1,6 @@ PORTNAME= qgis DISTVERSION= 3.34.1 +PORTREVISION= 1 CATEGORIES= graphics geography MASTER_SITES= https://qgis.org/downloads/ @@ -106,7 +107,6 @@ USES= bison cmake compiler:features desktop-file-utils \ fortran gl gmake gnome pgsql pyqt:5 python qca qt:5 \ shebangfix sqlite:3 tar:bz2 # math/pdal fails in pdal_wrench() with "undefined reference to symbol 'pthread_create@@FBSD_1.0'" -CXXFLAGS+= -pthread USE_GL= gl USE_GNOME= libxml2 USE_LDCONFIG= yes @@ -132,7 +132,9 @@ CMAKE_ARGS+= -DCMAKE_BUILD_TYPE:STRING=Release \ CMAKE_ON= USE_OPENCL WITH_ASTYLE WITH_BINDINGS WITH_COPC \ WITH_CUSTOM_WIDGETS WITH_DRACO WITH_EPT \ WITH_INTERNAL_LAZPERF WITH_POSTGRESQL -CMAKE_OFF= ENABLE_TESTING WITH_INTERNAL_MDAL WITH_QWTPOLAR +CMAKE_OFF= ENABLE_TESTING WITH_INTERNAL_MDAL WITH_QTWEBKIT WITH_QWTPOLAR + +CXXFLAGS+= -pthread CONFLICTS_INSTALL= qgis-ltr |