summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2013-12-12 03:37:36 +0000
committerAgostino Sarubbo <ago@gentoo.org>2013-12-12 03:37:36 +0000
commit99ead351c56785ff78be55a78ce1b28628f24ea6 (patch)
tree7d1629d74ed345378b8251b9c6e0c4f2e9ccfba5 /kde-base/marble
parentVersion bump fixing bugs #485536 and #493354 in the process. (diff)
downloadgentoo-2-99ead351c56785ff78be55a78ce1b28628f24ea6.tar.gz
gentoo-2-99ead351c56785ff78be55a78ce1b28628f24ea6.tar.bz2
gentoo-2-99ead351c56785ff78be55a78ce1b28628f24ea6.zip
Remove old
(Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Diffstat (limited to 'kde-base/marble')
-rw-r--r--kde-base/marble/ChangeLog5
-rw-r--r--kde-base/marble/marble-4.10.5.ebuild89
2 files changed, 4 insertions, 90 deletions
diff --git a/kde-base/marble/ChangeLog b/kde-base/marble/ChangeLog
index 82e0796abe13..83e067d841c2 100644
--- a/kde-base/marble/ChangeLog
+++ b/kde-base/marble/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/marble
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/marble/ChangeLog,v 1.225 2013/12/11 20:27:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/marble/ChangeLog,v 1.226 2013/12/12 03:37:29 ago Exp $
+
+ 12 Dec 2013; Agostino Sarubbo <ago@gentoo.org> -marble-4.10.5.ebuild:
+ Remove old
11 Dec 2013; Agostino Sarubbo <ago@gentoo.org> marble-4.11.2.ebuild:
Stable for ppc64, wrt bug #484884
diff --git a/kde-base/marble/marble-4.10.5.ebuild b/kde-base/marble/marble-4.10.5.ebuild
deleted file mode 100644
index 15473968c308..000000000000
--- a/kde-base/marble/marble-4.10.5.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/marble/marble-4.10.5.ebuild,v 1.8 2013/09/08 07:54:08 ago Exp $
-
-EAPI=5
-
-KDE_HANDBOOK="optional"
-KDE_REQUIRED="optional"
-CPPUNIT_REQUIRED="optional"
-PYTHON_DEPEND="python? 2"
-inherit kde4-base python
-
-DESCRIPTION="Generic geographical map widget"
-HOMEPAGE="http://marble.kde.org/"
-KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="debug designer-plugin gps +kde plasma python shapefile test"
-
-# tests fail / segfault. Last checked for 4.9.0
-RESTRICT="test"
-
-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
- gps? ( >=sci-geosciences/gpsd-2.95[qt4] )
- python? (
- >=dev-python/PyQt4-4.4.4-r1
- kde? ( $(add_kdebase_dep pykde4) )
- )
- shapefile? ( sci-libs/shapelib )
-"
-DEPEND="
- ${RDEPEND}
- test? ( dev-qt/qttest:4 )
-"
-# the qt dependencies are needed because with USE=-kde nothing is pulled in
-# by default... bugs 414165 & 429346
-
-REQUIRED_USE="
- plasma? ( kde )
- python? ( kde )
-"
-
-pkg_setup() {
- python_set_active_version 2
- kde4-base_pkg_setup
- python_pkg_setup
-}
-
-src_prepare() {
- kde4-base_src_prepare
- python_convert_shebangs -r $(python_get_version) .
-}
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_with designer-plugin DESIGNER_PLUGIN)
- $(cmake-utils_use python EXPERIMENTAL_PYTHON_BINDINGS)
- $(cmake-utils_use_with python PyQt4)
- $(cmake-utils_use_with python PythonLibrary)
- $(cmake-utils_use_with python SIP)
- $(cmake-utils_use_with gps libgps)
- $(cmake-utils_use !kde QTONLY)
- $(cmake-utils_use_with plasma)
- $(cmake-utils_use_with shapefile libshp)
- -DBUILD_MARBLE_TESTS=OFF
- -DWITH_liblocation=0
- -DWITH_QextSerialPort=OFF
- $(use kde && cmake-utils_use_with python PyKDE4)
- )
-
- 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
-}