diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-09-03 19:30:18 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-09-03 19:30:18 +0000 |
commit | 81de1cdc9449a4478c2e33a2dfacb6329e4c86b4 (patch) | |
tree | 8cedddcca9a2c80a5e73572201f459076ef6bc65 | |
parent | 3dc51f62e0c4242b8f7d6c45c0edda9e476eaf31 (diff) |
astro/libkgeomap: disable webengine on non-x86
Use the same hack that astro/marble uses.
Notes
Notes:
svn path=/head/; revision=547476
-rw-r--r-- | astro/libkgeomap/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/astro/libkgeomap/Makefile b/astro/libkgeomap/Makefile index 9fc9f5d5bd7d..8ad0594d42c5 100644 --- a/astro/libkgeomap/Makefile +++ b/astro/libkgeomap/Makefile @@ -19,11 +19,16 @@ USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio marble service textwidgets USE_QT= concurrent core dbus declarative gui location network \ - printsupport webchannel webengine webkit widgets xml \ + printsupport webchannel webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS WEBENGINE +OPTIONS_DEFAULT_amd64= WEBENGINE +OPTIONS_DEFAULT_i386= WEBENGINE + +WEBENGINE_DESC= Add dependency on qt5-webengine +WEBENGINE_USE= QT=webengine .include <bsd.port.mk> |