commit: 8e317f01d4a631fdbda17391887c541b26dd8908 Author: Johannes Huber <johu <AT> gentoo <DOT> org> AuthorDate: Fri Aug 7 20:09:48 2015 +0000 Commit: Johannes Huber <johu <AT> gentoo <DOT> org> CommitDate: Fri Aug 7 20:09:48 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8e317f01
Remove Plasma Active .../presage/files/presage-0.8.8-automagic.patch | 126 --------------------- app-text/presage/metadata.xml | 8 -- app-text/presage/presage-0.8.8.ebuild | 49 -------- .../bodega-client/bodega-client-0.2.ebuild | 30 ----- plasma-active/bodega-client/metadata.xml | 8 -- .../declarative-plasmoids-4.10.ebuild | 20 ---- .../declarative-plasmoids-9999.ebuild | 19 ---- plasma-active/declarative-plasmoids/metadata.xml | 5 - .../kde-artwork-active-0.4.ebuild | 28 ----- plasma-active/kde-artwork-active/metadata.xml | 8 -- plasma-active/plasma-active-maliit/metadata.xml | 9 -- .../plasma-active-maliit-0.2.ebuild | 29 ----- plasma-active/plasma-mobile-config/metadata.xml | 5 - .../plasma-mobile-config-0.4.ebuild | 18 --- .../files/plasma-mobile-0.5-solidinherit.patch | 13 --- plasma-active/plasma-mobile/metadata.xml | 8 -- .../plasma-mobile-0.5_p20131003.ebuild | 38 ------- .../plasma-mobile/plasma-mobile-9999.ebuild | 33 ------ plasma-active/share-like-connect/metadata.xml | 5 - .../share-like-connect-0.4.ebuild | 24 ---- plasma-active/startactive/metadata.xml | 5 - plasma-active/startactive/startactive-0.4.ebuild | 18 --- profiles/package.mask/plasma-active | 13 --- .../maliit-framework-0.94.0-removeldconfig.patch | 27 ----- .../maliit-framework-0.94.0.ebuild | 59 ---------- x11-misc/maliit-framework/metadata.xml | 8 -- 26 files changed, 613 deletions(-) diff --git a/app-text/presage/files/presage-0.8.8-automagic.patch b/app-text/presage/files/presage-0.8.8-automagic.patch deleted file mode 100644 index dfb454b..0000000 --- a/app-text/presage/files/presage-0.8.8-automagic.patch +++ /dev/null @@ -1,126 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -23,7 +23,7 @@ - - - AC_INIT([presage],[0.8.8],[[email protected]]) --AM_INIT_AUTOMAKE([-Wall -Werror]) -+AM_INIT_AUTOMAKE([-Wall]) - - AC_CONFIG_SRCDIR([src/lib/presage.cpp]) - AC_CONFIG_HEADERS([config.h:config.hin]) -@@ -105,6 +105,13 @@ - dnl ================== - dnl Checks for ncurses - dnl ================== -+AC_ARG_ENABLE([curses], -+ AS_HELP_STRING([--disable-curses],[disable curses support, needed for demo programs (default: enabled)]), -+ [enable_curses=$enableval], -+ [enable_curses=yes]) -+ -+if test "x$enable_curses" = "xyes" -+then - AC_CHECK_LIB([curses], - [initscr], - [have_curses_library=true], -@@ -113,12 +120,19 @@ - [have_curses_header=true], - [AC_MSG_WARN([curses header file not found. curses demo programs will not be built.])], - []) --AM_CONDITIONAL([HAVE_CURSES], [test "x$have_curses_library" = "xtrue" -a "x$have_curses_header" = "xtrue"]) -+fi -+AM_CONDITIONAL([HAVE_CURSES], [test "x$have_curses_library" = "xtrue" -a "x$have_curses_header" = "xtrue" -a "x$enable_curses" = "xyes"]) - - - dnl ================== - dnl Checks for tinyxml - dnl ================== -+AC_ARG_ENABLE([tinyxml], -+ AS_HELP_STRING([--disable-tinyxml],[disable tinyxml support (default: enabled)]), -+ [enable_tinyxml=$enableval], -+ [enable_tinyxml=yes]) -+if test "x$enable_tinyxml" = "xtrue" -+then - AC_CHECK_LIB([tinyxml], - [main], - [have_tinyxml_library=true], -@@ -127,6 +141,7 @@ - [have_tinyxml_header=true], - [AC_MSG_WARN([tinyxml library not found. Embedded tinyxml library will be built.])], - []) -+fi - if test "x$have_tinyxml_library" != "xtrue" -o "x$have_tinyxml_header" != "xtrue" - then - build_tinyxml=yes -@@ -134,7 +149,7 @@ - build_tinyxml=no - AC_DEFINE([TIXML_USE_STL], [1], [Define to 1 to use STL string in TinyXML]) - fi --AM_CONDITIONAL([BUILD_TINYXML], [test "x$build_tinyxml" = "xyes"]) -+AM_CONDITIONAL([BUILD_TINYXML], [test "x$build_tinyxml" = "xyes" -a "x$enable_tinyxml" = "xyes"]) - - - dnl ================= -@@ -203,10 +218,15 @@ - dnl ================== - dnl Checks for CppUnit - dnl ================== -+AC_ARG_ENABLE([tests], -+ AS_HELP_STRING([--enable-tests],[enable tests (default: disabled)]), -+ [enable_tests=$enableval], -+ [enable_tests=no]) -+ - AM_PATH_CPPUNIT([1.9.6], - [], - [AC_MSG_WARN([CppUnit not found. Unit tests will not be built. CppUnit can be obtained from http://cppunit.sourceforge.net.])]) --AM_CONDITIONAL([HAVE_CPPUNIT], [test "$CPPUNIT_LIBS"]) -+AM_CONDITIONAL([HAVE_CPPUNIT], [test "$CPPUNIT_LIBS" -a "x$enable_tests" = "xyes"]) - - - dnl ============================ -@@ -216,6 +236,7 @@ - dnl =============== - dnl Checks for SWIG - dnl =============== -+ - AC_PATH_PROG([SWIG], [swig]) - if test ! "$SWIG" - then -@@ -227,6 +248,11 @@ - dnl ================= - dnl Checks for Python - dnl ================= -+AC_ARG_ENABLE([python], -+ AS_HELP_STRING([--disable-python],[disable python support, needed for python bindings (default: enabled)]), -+ [enable_python=$enableval], -+ [enable_python=yes]) -+ - AM_PATH_PYTHON([2.0], - [], - [AC_MSG_WARN([Python not found. Python is required to build presage python binding. Python can be obtained from http://www.python.org])]) -@@ -238,7 +264,7 @@ - [AC_MSG_WARN([Python.h header file not found. Python development files are required to build presage python binding. Python can be obtained from http://www.python.org])], - []) - fi --AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" -a "x$have_python_header" = "xtrue"]) -+AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" -a "x$have_python_header" = "xtrue" -a "x$enable_python" = "xyes"]) - - - AC_ARG_ENABLE([python-binding], -@@ -262,6 +288,7 @@ - dnl ====================== - dnl Checks for dbus python - dnl ====================== -+ - have_dbus_python=no - AC_MSG_CHECKING(for python dbus module) - $PYTHON -c "import dbus" 2&>/dev/null -@@ -272,7 +299,7 @@ - have_dbus_python=no - fi - AC_MSG_RESULT($have_dbus_python) --AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes"]) -+AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes" -a "x$enable_python" = "xyes"]) - - - dnl ======================== diff --git a/app-text/presage/metadata.xml b/app-text/presage/metadata.xml deleted file mode 100644 index b8f97c3..0000000 --- a/app-text/presage/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>[email protected]</email> - <name>Chris Reffett</name> - </maintainer> -</pkgmetadata> diff --git a/app-text/presage/presage-0.8.8.ebuild b/app-text/presage/presage-0.8.8.ebuild deleted file mode 100644 index ede5497..0000000 --- a/app-text/presage/presage-0.8.8.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit eutils autotools -DESCRIPTION="The intelligent predictive text entry system" -HOMEPAGE="http://http://presage.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples gtk python sqlite test" - -RDEPEND=" - app-text/dos2unix - examples? ( sys-libs/ncurses ) - gtk? ( x11-libs/gtk+ ) - python? ( dev-lang/python dev-python/dbus-python ) - sqlite? ( dev-db/sqlite ) -" - -DEPEND="${RDEPEND} - sys-apps/help2man - doc? ( app-doc/doxygen ) - python? ( dev-lang/swig ) - test? ( dev-util/cppunit ) -" - -src_prepare() { - epatch "${FILESDIR}/${PN}-0.8.8-automagic.patch" - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_enable doc documentation) - $(use_enable examples curses) - $(use_enable gtk gpresagemate) - $(use_enable gtk gprompter) - $(use_enable python) - $(use_enable python python-binding) - $(use_enable sqlite) - $(use_enable test) - ) - econf ${myeconfargs} -} diff --git a/plasma-active/bodega-client/bodega-client-0.2.ebuild b/plasma-active/bodega-client/bodega-client-0.2.ebuild deleted file mode 100644 index 0cbf09e..0000000 --- a/plasma-active/bodega-client/bodega-client-0.2.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="A content publishing and distribution platform for Plasma Active" -HOMEPAGE="http://www.kde.org/" -SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" - -LICENSE="GPL-2+ LGPL-2+" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="epub" - -DEPEND=" - dev-libs/qjson - epub? ( dev-libs/soprano $(add_kdebase_dep nepomuk-core epub) ) -" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - "-DCMAKE_DISABLE_FIND_PACKAGE_Soprano=FALSE" - $(cmake-utils_use_find_package epub Soprano) - $(cmake-utils_use_find_package epub NepomukCore) - ) - kde4-base_src_configure -} diff --git a/plasma-active/bodega-client/metadata.xml b/plasma-active/bodega-client/metadata.xml deleted file mode 100644 index 505bf32..0000000 --- a/plasma-active/bodega-client/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> - <use> - <flag name="epub">Add epub support</flag> - </use> -</pkgmetadata> diff --git a/plasma-active/declarative-plasmoids/declarative-plasmoids-4.10.ebuild b/plasma-active/declarative-plasmoids/declarative-plasmoids-4.10.ebuild deleted file mode 100644 index a294d14..0000000 --- a/plasma-active/declarative-plasmoids/declarative-plasmoids-4.10.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base - -DESCRIPTION="Declarative plasmoids for the plasma desktop and mobile" -HOMEPAGE="https://projects.kde.org/projects/playground/base/declarative-plasmoids" -SRC_URI="mirror://kde/stable/active/3.0/src/${P}.tar.xz" - -LICENSE="LGPL-2" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -DEPEND="" - -RDEPEND="${DEPEND}" diff --git a/plasma-active/declarative-plasmoids/declarative-plasmoids-9999.ebuild b/plasma-active/declarative-plasmoids/declarative-plasmoids-9999.ebuild deleted file mode 100644 index f55251d..0000000 --- a/plasma-active/declarative-plasmoids/declarative-plasmoids-9999.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base - -DESCRIPTION="Declarative plasmoids for the plasma desktop and mobile" -HOMEPAGE="https://projects.kde.org/projects/playground/base/declarative-plasmoids" - -LICENSE="LGPL-2" -SLOT="4" -KEYWORDS="" -IUSE="debug" - -DEPEND="" - -RDEPEND="${DEPEND}" diff --git a/plasma-active/declarative-plasmoids/metadata.xml b/plasma-active/declarative-plasmoids/metadata.xml deleted file mode 100644 index a23f444..0000000 --- a/plasma-active/declarative-plasmoids/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> -</pkgmetadata> diff --git a/plasma-active/kde-artwork-active/kde-artwork-active-0.4.ebuild b/plasma-active/kde-artwork-active/kde-artwork-active-0.4.ebuild deleted file mode 100644 index 683c855..0000000 --- a/plasma-active/kde-artwork-active/kde-artwork-active-0.4.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="Plasma Active artwork" -HOMEPAGE="http://www.kde.org/" -SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="phone" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=() - if use phone; then - mycmakeargs+="-DSCREEN_RESOLUTION=800x480" - else - mycmakeargs+="-DSCREEN_RESOLUTION=1366x768" - fi - kde4-base_src_configure -} diff --git a/plasma-active/kde-artwork-active/metadata.xml b/plasma-active/kde-artwork-active/metadata.xml deleted file mode 100644 index 58a312a..0000000 --- a/plasma-active/kde-artwork-active/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> - <use> - <flag name="phone">Install artwork optimized for low-resolution devices such as smartphones</flag> - </use> -</pkgmetadata> diff --git a/plasma-active/plasma-active-maliit/metadata.xml b/plasma-active/plasma-active-maliit/metadata.xml deleted file mode 100644 index fe21e22..0000000 --- a/plasma-active/plasma-active-maliit/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> - <use> - <flag name="hunspell">Add spelling correction support using app-text/hunspell</flag> - <flag name="presage">Add text prediction support using app-text/presage</flag> - </use> -</pkgmetadata> diff --git a/plasma-active/plasma-active-maliit/plasma-active-maliit-0.2.ebuild b/plasma-active/plasma-active-maliit/plasma-active-maliit-0.2.ebuild deleted file mode 100644 index 6c42b00..0000000 --- a/plasma-active/plasma-active-maliit/plasma-active-maliit-0.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit qt4-r2 -DESCRIPTION="Configuration for the mobile Plasma shell" -HOMEPAGE="http://www.kde.org/" -SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" - -LICENSE="BSD" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="hunspell presage" - -DEPEND=" - hunspell? ( app-text/hunspell ) - presage? ( app-text/presage ) - x11-misc/maliit-framework -" -RDEPEND="${DEPEND}" - -src_configure() { - local myconf="nostrip" - use hunspell && myconf="${myconf} enable-hunspell" - use presage && myconf="${myconf} enable-presage" - qmake PREFIX="${EPREFIX}/usr" CONFIG+="${myconf}" -} diff --git a/plasma-active/plasma-mobile-config/metadata.xml b/plasma-active/plasma-mobile-config/metadata.xml deleted file mode 100644 index a23f444..0000000 --- a/plasma-active/plasma-mobile-config/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> -</pkgmetadata> diff --git a/plasma-active/plasma-mobile-config/plasma-mobile-config-0.4.ebuild b/plasma-active/plasma-mobile-config/plasma-mobile-config-0.4.ebuild deleted file mode 100644 index 1184b9c..0000000 --- a/plasma-active/plasma-mobile-config/plasma-mobile-config-0.4.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="Configuration for the mobile Plasma shell" -HOMEPAGE="http://www.kde.org/" -SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" - -LICENSE="BSD" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" diff --git a/plasma-active/plasma-mobile/files/plasma-mobile-0.5-solidinherit.patch b/plasma-active/plasma-mobile/files/plasma-mobile-0.5-solidinherit.patch deleted file mode 100644 index 3bf0f2a..0000000 --- a/plasma-active/plasma-mobile/files/plasma-mobile-0.5-solidinherit.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -ruN plasma-mobile-0.5_p20131003/contourd/location/network-engines/solid/SolidNetworkNotifier.cpp plasma-mobile-0.5_p20131003-patched/contourd/location/network-engines/solid/SolidNetworkNotifier.cpp ---- plasma-mobile-0.5_p20131003/contourd/location/network-engines/solid/SolidNetworkNotifier.cpp 2013-10-03 16:27:42.000000000 -0400 -+++ plasma-mobile-0.5_p20131003-patched/contourd/location/network-engines/solid/SolidNetworkNotifier.cpp 2013-10-03 16:38:51.716948019 -0400 -@@ -19,10 +19,6 @@ - - #include "SolidNetworkNotifier.h" - --#include <solid/control/networkmanager.h> --#include <solid/control/wirelessnetworkinterface.h> --#include <solid/control/wirelessaccesspoint.h> -- - #include <NetworkManagerQt/manager.h> - #include <NetworkManagerQt/wirelessdevice.h> diff --git a/plasma-active/plasma-mobile/metadata.xml b/plasma-active/plasma-mobile/metadata.xml deleted file mode 100644 index 1cf3310..0000000 --- a/plasma-active/plasma-mobile/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> - <use> - <flag name="handset">Build extensions suitable for phones</flag> - </use> -</pkgmetadata> diff --git a/plasma-active/plasma-mobile/plasma-mobile-0.5_p20131003.ebuild b/plasma-active/plasma-mobile/plasma-mobile-0.5_p20131003.ebuild deleted file mode 100644 index eb610ad..0000000 --- a/plasma-active/plasma-mobile/plasma-mobile-0.5_p20131003.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="Plasma shell optimized for mobile devices" -HOMEPAGE="http://www.kde.org/" -#SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" -SRC_URI="http://dev.gentoo.org/~creffett/distfiles/${P}.tar.xz" - -LICENSE="GPL-2 LGPL-2 LGPL-2.1" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="handset" - -DEPEND=" - $(add_kdebase_dep libkworkspace) - $(add_kdebase_dep kdepimlibs) - $(add_kdebase_dep nepomuk-core) - dev-libs/soprano - dev-qt/qt-mobility[sensors] - net-libs/libnm-qt - x11-libs/libkscreen:4 -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-0.5-solidinherit.patch" -) - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use handset BUILD_HANDSET) - ) - kde4-base_src_configure -} diff --git a/plasma-active/plasma-mobile/plasma-mobile-9999.ebuild b/plasma-active/plasma-mobile/plasma-mobile-9999.ebuild deleted file mode 100644 index 6742aad..0000000 --- a/plasma-active/plasma-mobile/plasma-mobile-9999.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="Plasma shell optimized for mobile devices" -HOMEPAGE="http://www.kde.org/" - -LICENSE="GPL-2 LGPL-2 LGPL-2.1" -SLOT="4" -KEYWORDS="" -IUSE="handset" - -DEPEND=" - $(add_kdebase_dep libkworkspace) - $(add_kdebase_dep kdepimlibs) - $(add_kdebase_dep nepomuk-core) - dev-libs/soprano - dev-qt/qt-mobility[sensors] - net-libs/libnm-qt - x11-libs/libkscreen:4 -" - -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use handset BUILD_HANDSET) - ) - kde4-base_src_configure -} diff --git a/plasma-active/share-like-connect/metadata.xml b/plasma-active/share-like-connect/metadata.xml deleted file mode 100644 index a23f444..0000000 --- a/plasma-active/share-like-connect/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> -</pkgmetadata> diff --git a/plasma-active/share-like-connect/share-like-connect-0.4.ebuild b/plasma-active/share-like-connect/share-like-connect-0.4.ebuild deleted file mode 100644 index 9442e4e..0000000 --- a/plasma-active/share-like-connect/share-like-connect-0.4.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="An interface to build relations between Plasma Active applications" -HOMEPAGE="http://www.kde.org/" -SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" - -LICENSE="LGPL-2 LGPL-2.1" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=" - dev-libs/soprano - $(add_kdebase_dep kactivities) - $(add_kdeapps_dep nepomuk) -" -RDEPEND="${DEPEND}" - -DOCS=( "docs/share_like_connect.odp" ) diff --git a/plasma-active/startactive/metadata.xml b/plasma-active/startactive/metadata.xml deleted file mode 100644 index a23f444..0000000 --- a/plasma-active/startactive/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>kde</herd> -</pkgmetadata> diff --git a/plasma-active/startactive/startactive-0.4.ebuild b/plasma-active/startactive/startactive-0.4.ebuild deleted file mode 100644 index 599fa46..0000000 --- a/plasma-active/startactive/startactive-0.4.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit kde4-base -DESCRIPTION="Scripts needed to start a Plasma Active session" -HOMEPAGE="http://www.kde.org/" -SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" diff --git a/profiles/package.mask/plasma-active b/profiles/package.mask/plasma-active deleted file mode 100644 index 8bc195e..0000000 --- a/profiles/package.mask/plasma-active +++ /dev/null @@ -1,13 +0,0 @@ -# Johannes Huber <[email protected]> (08 Jul 2015) -# Masked for removal in 30 days. Unmaintained upstream. -# Depends on old semantic desktop stack. -plasma-active/bodega-client -plasma-active/declarative-plasmoids -plasma-active/kde-artwork-active -plasma-active/plasma-active-maliit -plasma-active/plasma-mobile -plasma-active/plasma-mobile-config -plasma-active/share-like-connect -plasma-active/startactive -app-text/presage -x11-misc/maliit-framework \ No newline at end of file diff --git a/x11-misc/maliit-framework/files/maliit-framework-0.94.0-removeldconfig.patch b/x11-misc/maliit-framework/files/maliit-framework-0.94.0-removeldconfig.patch deleted file mode 100644 index 0079622..0000000 --- a/x11-misc/maliit-framework/files/maliit-framework-0.94.0-removeldconfig.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/gtk-input-context/client-gtk3/client-gtk3.pro -+++ b/gtk-input-context/client-gtk3/client-gtk3.pro -@@ -38,10 +38,6 @@ - INSTALLS += target - - !disable-gtk-cache-update { -- # need to make sure dynamic linker can find maliit libraries when running gtk-query-module -- ldconfig.extra = ldconfig -- ldconfig.path = . # dummy path -- INSTALLS += ldconfig - - DISTRO = $$system(lsb_release -s -i) - DISTRO_VERSION = $$system(lsb_release -s -r) - ---- a/gtk-input-context/client-gtk/client-gtk.pro -+++ b/gtk-input-context/client-gtk/client-gtk.pro -@@ -38,10 +38,6 @@ - INSTALLS += target - - !disable-gtk-cache-update { -- # need to make sure dynamic linker can find maliit libraries when running gtk-query-module -- ldconfig.extra = ldconfig -- ldconfig.path = . # dummy path -- INSTALLS += ldconfig - - DISTRO = $$system(lsb_release -s -i) - DISTRO_VERSION = $$system(lsb_release -s -r) diff --git a/x11-misc/maliit-framework/maliit-framework-0.94.0.ebuild b/x11-misc/maliit-framework/maliit-framework-0.94.0.ebuild deleted file mode 100644 index 7830326..0000000 --- a/x11-misc/maliit-framework/maliit-framework-0.94.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit qt4-r2 -DESCRIPTION="A flexible and cross platform input method framework" -HOMEPAGE="http://maliit.org" -SRC_URI="http://pkgs.fedoraproject.org/repo/pkgs/${PN}/${P}.tar.bz2/fb60280410be256d49e3f2228db5f055/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+dbus doc examples gtk test" - -DEPEND=" - dbus? ( - dev-libs/dbus-glib - dev-libs/glib:2 - dev-qt/qtdbus:4 - sys-apps/dbus - ) - gtk? ( - x11-libs/gtk+:2 - x11-libs/gtk+:3 - x11-libs/pango - ) - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtdeclarative:4 - virtual/libudev:= - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXfixes -" - -RDEPEND="${DEPEND}" - -RESTRICT="test" - -PATCHES=( "${FILESDIR}/${PN}-0.94.0-removeldconfig.patch" ) - -DOCS=( README ) - -src_prepare() { - use !examples && sed -i -e 's:SUBDIRS += examples::' maliit-framework.pro - qt4-r2_src_prepare -} - -src_configure() { - local myconf="nostrip" - use !dbus && myconf="${myconf} disable-dbus" - use !doc && myconf="${myconf} nodoc" - use !gtk && myconf="${myconf} nogtk" - use !test && myconf="${myconf} notests" - qmake PREFIX="${EPREFIX}/usr" CONFIG+="${myconf}" -} diff --git a/x11-misc/maliit-framework/metadata.xml b/x11-misc/maliit-framework/metadata.xml deleted file mode 100644 index b8f97c3..0000000 --- a/x11-misc/maliit-framework/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>[email protected]</email> - <name>Chris Reffett</name> - </maintainer> -</pkgmetadata>
