summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-11-09 11:57:25 +0100
committerPacho Ramos <pacho@gentoo.org>2016-11-09 11:59:16 +0100
commit517f783331e1c17e007963be5222369445a9904d (patch)
tree3db29a0de27c2855e2c572f4ad7f8f567f0decf5 /sci-geosciences
parentpackage.mask drop obsolete entries (diff)
downloadgentoo-517f783331e1c17e007963be5222369445a9904d.tar.gz
gentoo-517f783331e1c17e007963be5222369445a9904d.tar.bz2
gentoo-517f783331e1c17e007963be5222369445a9904d.zip
Remove masked for removal packages
Diffstat (limited to 'sci-geosciences')
-rw-r--r--sci-geosciences/osgearth/Manifest2
-rw-r--r--sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch30
-rw-r--r--sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch13
-rw-r--r--sci-geosciences/osgearth/files/osgearth-2.7-linker.patch52
-rw-r--r--sci-geosciences/osgearth/metadata.xml18
-rw-r--r--sci-geosciences/osgearth/osgearth-2.6.ebuild71
-rw-r--r--sci-geosciences/osgearth/osgearth-2.7.ebuild74
7 files changed, 0 insertions, 260 deletions
diff --git a/sci-geosciences/osgearth/Manifest b/sci-geosciences/osgearth/Manifest
deleted file mode 100644
index d262160788c6..000000000000
--- a/sci-geosciences/osgearth/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST osgearth-2.6.tar.gz 58605003 SHA256 965c93837520ab9538038843ff83ee1903548f8be191ee211e40abb0e6c1bb4a SHA512 3120547ef639d4c1ff0404358777317c8794a493a772dc7af11b8056fd3f799a5e16358c19970862d16f6ab98f78abb3ea25c3aa113df8a3df68d54818fb03bc WHIRLPOOL 6533e5a92ee973ff1d5bfb80ab3b051279bc65e85d00f0fb9027b6fe2be06efc5bd3907516c27e7e06b4c1cb03569650bf368b5d7728b848bc86ec9666607939
-DIST osgearth-2.7.tar.gz 61837911 SHA256 cf973b664aeb79f70e48f5cd02ba670069ec273d71fe541604ed5b328d956d83 SHA512 acc7235b2df4a226e6834f961006c35310183695925091dcdfb1339e89be8ef08773c8c62ca98eb708485e03a870dace65a27d0beb2aefc807f6e558243e4693 WHIRLPOOL 8d3afe46fbef7064235a85c78a7da160f982c7ce19d8310484feb31f0a2317de631796f471c1b547bb9a01de0958a8b28ba1d919a20be230ea4651c5fbd785a8
diff --git a/sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch b/sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch
deleted file mode 100644
index 389609bd6c42..000000000000
--- a/sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-commit d92cee4d9870fab08fdfadf9ab0bfb4658a09aa3
-Author: hasufell <hasufell@gentoo.org>
-Date: Fri Nov 22 14:06:34 2013 +0100
-
- add cmake options
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 34cd375..dbb4cb4 100755
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -129,8 +129,17 @@
-
- # JavaScript Engines:
- SET(V8_DIR "" CACHE PATH "set to base V8 install path")
--FIND_PACKAGE(V8)
--FIND_PACKAGE(JavaScriptCore)
-+OPTION(OSGEARTH_USE_V8 "Enable to use V8 JavaScript engine" ON)
-+IF(OSGEARTH_USE_V8)
-+ FIND_PACKAGE(V8)
-+ENDIF(OSGEARTH_USE_V8)
-+
-+OPTION(OSGEARTH_USE_JAVASCRIPTCORE "Enable use of JavaScriptCore" ON)
-+OPTION(OSGEARTH_USE_LIBNOISE "Enable use of LibNoise" ON)
-+
-+IF (OSGEARTH_USE_JAVASCRIPTCORE)
-+ FIND_PACKAGE(JavaScriptCore)
-+ENDIF (OSGEARTH_USE_JAVASCRIPTCORE)
-
- SET (WITH_EXTERNAL_DUKTAPE FALSE CACHE BOOL "Use bundled or system wide version of Duktape")
- IF (WITH_EXTERNAL_DUKTAPE)
diff --git a/sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch b/sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch
deleted file mode 100644
index ba43aceb1ed6..000000000000
--- a/sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -146,10 +146,6 @@
- FIND_PACKAGE(Duktape)
- ENDIF (WITH_EXTERNAL_DUKTAPE)
-
--FIND_PACKAGE(Qt5Core QUIET)
--FIND_PACKAGE(Qt5Widgets QUIET)
--FIND_PACKAGE(Qt5Gui QUIET)
--FIND_PACKAGE(Qt5OpenGL QUIET)
- IF ( Qt5Core_FOUND AND Qt5Widgets_FOUND AND Qt5Gui_FOUND AND Qt5OpenGL_FOUND )
- SET(QT_INCLUDES ${Qt5Widgets_INCLUDE_DIRS} ${Qt5OpenGL_INCLUDE_DIRS})
- ELSE()
diff --git a/sci-geosciences/osgearth/files/osgearth-2.7-linker.patch b/sci-geosciences/osgearth/files/osgearth-2.7-linker.patch
deleted file mode 100644
index 74b56228d3c6..000000000000
--- a/sci-geosciences/osgearth/files/osgearth-2.7-linker.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From: Julian Ospald <hasufell@gentoo.org>
-Date: Sun Aug 16 19:59:50 UTC 2015
-Subject: add missing library to linker
-
---- a/src/applications/osgearth_package_qt/CMakeLists.txt
-+++ b/src/applications/osgearth_package_qt/CMakeLists.txt
-@@ -59,6 +59,7 @@
- ${QT_QTCORE_LIBRARY}
- ${QT_QTGUI_LIBRARY}
- ${QT_QTOPENGL_LIBRARY}
-+ ${X11_LIBRARIES}
- )
-
- #### end var setup ###
---- a/src/applications/osgearth_qt/CMakeLists.txt
-+++ b/src/applications/osgearth_qt/CMakeLists.txt
-@@ -38,6 +38,7 @@
- ${QT_QTCORE_LIBRARY}
- ${QT_QTGUI_LIBRARY}
- ${QT_QTOPENGL_LIBRARY}
-+ ${X11_LIBRARIES}
- )
-
- #### end var setup ###
---- a/src/applications/osgearth_demo/CMakeLists.txt
-+++ b/src/applications/osgearth_demo/CMakeLists.txt
-@@ -7,6 +7,7 @@
- QT5_WRAP_CPP( MOC_SRCS ${MOC_HDRS} OPTIONS "-f" )
- SET(TARGET_ADDED_LIBRARIES
- osgEarthQt
-+ ${X11_LIBRARIES}
- )
- ELSE()
- INCLUDE( ${QT_USE_FILE} )
-@@ -16,6 +17,7 @@
- ${QT_QTCORE_LIBRARY}
- ${QT_QTGUI_LIBRARY}
- ${QT_QTOPENGL_LIBRARY}
-+ ${X11_LIBRARIES}
- )
- ENDIF()
-
---- a/src/applications/osgearth_qt_simple/CMakeLists.txt
-+++ b/src/applications/osgearth_qt_simple/CMakeLists.txt
-@@ -34,6 +34,7 @@
- ${QT_QTCORE_LIBRARY}
- ${QT_QTGUI_LIBRARY}
- ${QT_QTOPENGL_LIBRARY}
-+ ${X11_LIBRARIES}
- )
-
- #### end var setup ###
diff --git a/sci-geosciences/osgearth/metadata.xml b/sci-geosciences/osgearth/metadata.xml
deleted file mode 100644
index 8c12855674a2..000000000000
--- a/sci-geosciences/osgearth/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- osgEarth is a C++ terrain rendering toolkit. Just create a
- simple XML file, point it at your imagery, elevation, and
- vector data, load it into your favorite OpenSceneGraph
- application, and go! osgEarth supports all kinds of data and
- comes with lots of examples to help you get up and running
- quickly and easily.
- </longdescription>
- <upstream>
- <doc lang="en">http://docs.osgearth.org/en/latest</doc>
- <bugs-to>https://github.com/gwaldron/osgearth/issues</bugs-to>
- <remote-id type="github">gwaldron/osgearth</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sci-geosciences/osgearth/osgearth-2.6.ebuild b/sci-geosciences/osgearth/osgearth-2.6.ebuild
deleted file mode 100644
index 9265f0b5fefe..000000000000
--- a/sci-geosciences/osgearth/osgearth-2.6.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Dynamic map generation toolkit for OpenSceneGraph"
-HOMEPAGE="http://osgearth.org/"
-SRC_URI="https://github.com/gwaldron/osgearth/archive/${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc qt4"
-
-RDEPEND="
- dev-db/sqlite:3
- >=dev-games/openscenegraph-3.2.1[curl,qt4?]
- dev-libs/tinyxml
- net-misc/curl
- sci-libs/gdal
- sci-libs/geos
- sys-libs/zlib[minizip]
- virtual/opengl
- x11-libs/libX11
- qt4? (
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- dev-qt/qtopengl:4
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( dev-python/sphinx )"
-
-S=${WORKDIR}/${PN}-${P}
-
-PATCHES=( "${FILESDIR}"/${P}-{disable-qt5,cmake-options}.patch )
-
-src_configure() {
- # V8 disabled due to
- # https://github.com/gwaldron/osgearth/issues/333
- local mycmakeargs=(
- -DWITH_EXTERNAL_TINYXML=ON
- $(cmake-utils_use qt4 OSGEARTH_USE_QT)
- -DOSGEARTH_USE_V8=OFF
- -DOSGEARTH_USE_JAVASCRIPTCORE=OFF
- -DOSGEARTH_USE_LIBNOISE=OFF
- )
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- if use doc ; then
- emake -C "${S}"/docs man html info
- fi
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use doc ; then
- dohtml -r "${S}"/docs/build/html/*
- doman "${S}"/docs/build/man/*
- doinfo "${S}"/docs/build/texinfo/*.info*
- fi
-}
diff --git a/sci-geosciences/osgearth/osgearth-2.7.ebuild b/sci-geosciences/osgearth/osgearth-2.7.ebuild
deleted file mode 100644
index 13bb0806ba4b..000000000000
--- a/sci-geosciences/osgearth/osgearth-2.7.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Dynamic map generation toolkit for OpenSceneGraph"
-HOMEPAGE="http://osgearth.org/"
-SRC_URI="https://github.com/gwaldron/osgearth/archive/${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc qt5"
-
-RDEPEND="
- dev-db/sqlite:3
- >=dev-games/openscenegraph-3.2.1-r1[curl,qt5?]
- dev-libs/protobuf
- dev-libs/tinyxml
- net-misc/curl
- sci-libs/gdal
- sci-libs/geos
- sys-libs/zlib[minizip]
- virtual/opengl
- x11-libs/libX11
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtopengl:5
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( dev-python/sphinx )"
-
-S=${WORKDIR}/${PN}-${P}
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.6-cmake-options.patch
- "${FILESDIR}"/${PN}-2.7-linker.patch
-)
-
-src_configure() {
- # V8 disabled due to
- # https://github.com/gwaldron/osgearth/issues/333
- local mycmakeargs=(
- -DWITH_EXTERNAL_TINYXML=ON
- $(cmake-utils_use qt5 OSGEARTH_USE_QT)
- -DUSE_V8=OFF
- -DOSGEARTH_USE_JAVASCRIPTCORE=OFF
- )
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- if use doc ; then
- emake -C "${S}"/docs man html info
- fi
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use doc ; then
- dohtml -r "${S}"/docs/build/html/*
- doman "${S}"/docs/build/man/*
- doinfo "${S}"/docs/build/texinfo/*.info*
- fi
-}