public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Johannes Huber" <johu@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/marble/
Date: Wed, 10 Jun 2015 19:09:33 +0000 (UTC)	[thread overview]
Message-ID: <1433963386.937e95e30307a5c9768a2eb348264ad97b6d2996.johu@gentoo> (raw)

commit:     937e95e30307a5c9768a2eb348264ad97b6d2996
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Mon Feb  2 16:03:52 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jun 10 19:09:46 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=937e95e3

[kde-apps/marble] Frameworks merged to master

Package-Manager: portage-2.2.14

 kde-apps/marble/marble-9999.ebuild | 105 ++++++++++++++++---------------------
 kde-apps/marble/metadata.xml       |   1 +
 2 files changed, 45 insertions(+), 61 deletions(-)

diff --git a/kde-apps/marble/marble-9999.ebuild b/kde-apps/marble/marble-9999.ebuild
index 18cf222..0ff0cdd 100644
--- a/kde-apps/marble/marble-9999.ebuild
+++ b/kde-apps/marble/marble-9999.ebuild
@@ -4,88 +4,71 @@
 
 EAPI=5
 
-KDE_HANDBOOK="optional"
-KDE_REQUIRED="optional"
-CPPUNIT_REQUIRED="optional"
-PYTHON_COMPAT=( python2_7 )
-inherit kde4-base python-single-r1
+KDE_HANDBOOK="true"
+KDE_TEST="true"
+inherit kde5
 
 DESCRIPTION="Generic geographical map widget"
 HOMEPAGE="http://marble.kde.org/"
 KEYWORDS=""
-IUSE="debug designer-plugin gps +kde phonon plasma python shapefile test zip"
 
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# tests fail / segfault. Last checked for 4.9.0
-RESTRICT="test"
+IUSE="aprs designer-plugin gps +kde phonon shapefile zip"
 
+# FIXME (new packages):
+# libwlocate, WLAN-based geolocation
+# qextserialport, interface to old fashioned serial ports
 RDEPEND="
-	dev-qt/qtcore:4
-	dev-qt/qtdbus:4
-	dev-qt/qtdeclarative:4
-	dev-qt/qtgui:4
-	dev-qt/qtscript:4
-	dev-qt/qtsql:4
-	dev-qt/qtsvg:4
-	dev-qt/qtwebkit:4
-	designer-plugin? ( dev-qt/designer:4 )
-	gps? ( >=sci-geosciences/gpsd-2.95[qt4] )
-	kde? ( media-libs/phonon[qt4] )
-	phonon? ( media-libs/phonon[qt4] )
-	python? (
-		${PYTHON_DEPS}
-		>=dev-python/PyQt4-4.4.4-r1[${PYTHON_USEDEP}]
-		kde? ( $(add_kdebase_dep pykde4 "${PYTHON_USEDEP}" ) )
+	dev-qt/qtconcurrent:5
+	dev-qt/qtdbus:5
+	dev-qt/qtdeclarative:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtopengl:5
+	dev-qt/qtprintsupport:5
+	dev-qt/qtscript:5
+	dev-qt/qtsql:5
+	dev-qt/qtsvg:5
+	dev-qt/qtwebkit:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtxml:5
+	gps? ( >=sci-geosciences/gpsd-2.95 )
+	kde? (
+		$(add_frameworks_dep kconfig)
+		$(add_frameworks_dep kcoreaddons)
+		$(add_frameworks_dep kdoctools)
+		$(add_frameworks_dep ki18n)
+		$(add_frameworks_dep kio)
+		$(add_frameworks_dep knewstuff)
+		$(add_frameworks_dep kparts)
+		$(add_frameworks_dep krunner)
+		$(add_frameworks_dep kservice)
+		$(add_frameworks_dep kwallet)
 	)
+	phonon? ( media-libs/phonon[qt5] )
 	shapefile? ( sci-libs/shapelib )
-	zip? ( dev-libs/quazip )
-"
-DEPEND="
-	${RDEPEND}
-	test? ( dev-qt/qttest:4 )
+	zip? ( dev-libs/quazip[qt5] )
 "
-# the qt dependencies are needed because with USE=-kde nothing is pulled in
-# by default... bugs 414165 & 429346
-
-REQUIRED_USE="
-	plasma? ( kde )
-	python? ( kde )
+DEPEND="${RDEPEND}
+	aprs? ( dev-lang/perl )
 "
 
-pkg_setup() {
-	kde4-base_pkg_setup
-	use python && python-single-r1_pkg_setup
+src_prepare() {
+	use handbook || comment_add_subdirectory doc
+	kde5_src_prepare
 }
 
 src_configure() {
 	local mycmakeargs=(
+		$(cmake-utils_use_build test MARBLE_TESTS)
+		$(cmake-utils_use_find_package aprs Perl)
 		$(cmake-utils_use_with designer-plugin DESIGNER_PLUGIN)
-		$(cmake-utils_use python EXPERIMENTAL_PYTHON_BINDINGS)
-		$(cmake-utils_use_with python PythonLibrary)
-		$(cmake-utils_use_with python PyQt4)
-		$(cmake-utils_use_with python SIP)
 		$(cmake-utils_use_with gps libgps)
-		$(cmake-utils_use !kde QTONLY)
+		$(cmake-utils_use_with kde KF5)
 		$(cmake-utils_use_with phonon)
-		$(cmake-utils_use_with plasma)
 		$(cmake-utils_use_with shapefile libshp)
 		$(cmake-utils_use_with zip quazip)
-		-DBUILD_MARBLE_TESTS=OFF
-		-DWITH_liblocation=0
 		-DWITH_QextSerialPort=OFF
+		-DWITH_liblocation=0
 	)
-
-	kde4-base_src_configure
-}
-
-src_test() {
-	if use kde; then
-		elog "Marble tests can only be run in the qt-only version"
-	else
-		local mycmakeargs=(
-			-DBUILD_MARBLE_TESTS=ON
-		)
-		kde4-base_src_test
-	fi
+	kde5_src_configure
 }

diff --git a/kde-apps/marble/metadata.xml b/kde-apps/marble/metadata.xml
index 3431dc8..f2ab4b0 100644
--- a/kde-apps/marble/metadata.xml
+++ b/kde-apps/marble/metadata.xml
@@ -2,6 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<use>
+		<flag name="aprs">Enable support for APRS data sources</flag>
 		<flag name="designer-plugin">Enable designer plugin</flag>
 		<flag name="phonon">Enable sound support via <pkg>media-libs/phonon</pkg></flag>
 		<flag name="shapefile">Enable support for ESRI shapefiles</flag>


             reply	other threads:[~2015-06-10 19:09 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-10 19:09 Johannes Huber [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-07 23:21 [gentoo-commits] proj/kde:master commit in: kde-apps/marble/ Andreas Sturmlechner
2024-10-04 14:31 Andreas Sturmlechner
2024-09-21 14:10 Andreas Sturmlechner
2024-02-26 19:59 Andreas Sturmlechner
2023-06-05 13:51 Andreas Sturmlechner
2020-11-23 23:40 Andreas Sturmlechner
2020-08-30 19:02 Andreas Sturmlechner
2020-06-15 10:35 Andreas Sturmlechner
2019-08-18 15:21 Andreas Sturmlechner
2019-02-14 19:01 Andreas Sturmlechner
2018-10-21  8:16 Andreas Sturmlechner
2018-10-18 21:28 Andreas Sturmlechner
2018-10-18 21:00 Andreas Sturmlechner
2017-09-30  9:19 Andreas Sturmlechner
2017-04-22 14:31 Andreas Sturmlechner
2017-03-25  2:02 Michael Palimaka
2017-01-21 22:28 Andreas Sturmlechner
2016-12-11 19:13 Michael Palimaka
2016-12-09  9:47 Johannes Huber
2016-11-19 10:43 Michael Palimaka
2016-11-12 10:55 Michael Palimaka
2016-10-19 14:49 Michael Palimaka
2016-08-18 12:44 Michael Palimaka
2016-07-09 18:22 Johannes Huber
2016-03-01 14:12 Michael Palimaka
2016-02-25  9:11 Michael Palimaka
2016-02-20 16:03 Christian Schmitt
2015-11-19 12:17 Michael Palimaka
2015-05-06 13:16 Michael Palimaka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1433963386.937e95e30307a5c9768a2eb348264ad97b6d2996.johu@gentoo \
    --to=johu@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox