# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 KDE_ORG_COMMIT=861e372b6ad81570d4f496e42fb25a6699b72f2f inherit qt5-build DESCRIPTION="Location (places, maps, navigation) library for the Qt5 framework" if [[ ${QT5_BUILD_TYPE} == release ]]; then MAPBOXGL_COMMIT=d3101bbc22edd41c9036ea487d4a71eabd97823d SRC_URI+=" https://invent.kde.org/qt/qt/${PN}-mapboxgl/-/archive/${MAPBOXGL_COMMIT}/${PN}-mapboxgl-${MAPBOXGL_COMMIT}.tar.gz -> ${PN}-mapboxgl-${PV}-${MAPBOXGL_COMMIT:0:8}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" fi IUSE="" RDEPEND=" dev-libs/icu:= ~dev-qt/qtcore-${PV} ~dev-qt/qtdeclarative-${PV} ~dev-qt/qtgui-${PV} ~dev-qt/qtnetwork-${PV} ~dev-qt/qtpositioning-${PV}[qml] ~dev-qt/qtsql-${PV} sys-libs/zlib " DEPEND="${RDEPEND} ~dev-qt/qtconcurrent-${PV} " QT5_TARGET_SUBDIRS=( src/3rdparty/clipper src/3rdparty/poly2tri src/3rdparty/clip2tri src/3rdparty/mapbox-gl-native src/location src/imports/location src/imports/locationlabs src/plugins/geoservices ) if [[ ${QT5_BUILD_TYPE} == release ]]; then src_prepare() { mv "${WORKDIR}"/${PN}-mapboxgl-${MAPBOXGL_COMMIT}/* src/3rdparty/mapbox-gl-native || die qt5-build_src_prepare } fi src_configure() { # src/plugins/geoservices requires files that are only generated when # qmake is run in the root directory. Bug 633776. mkdir -p "${QT5_BUILD_DIR}"/src/location || die qt5_qmake "${QT5_BUILD_DIR}" cp "${S}"/src/location/qtlocation-config.pri "${QT5_BUILD_DIR}"/src/location || die qt5-build_src_configure }