summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-01-07 20:37:18 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-01-11 01:37:18 +0100
commitfae5fb78ff0d96e24fbcbaea5570ef585ce74259 (patch)
tree31327893af90cb19c437b39d636ceeefcc74796d /app-accessibility
parentdev-python/scapy-python3: bump (diff)
downloadgentoo-fae5fb78ff0d96e24fbcbaea5570ef585ce74259.tar.gz
gentoo-fae5fb78ff0d96e24fbcbaea5570ef585ce74259.tar.bz2
gentoo-fae5fb78ff0d96e24fbcbaea5570ef585ce74259.zip
profiles: Drop last-rited Qt3Support/Qt4/kdelibs4 revdeps
Closes: https://bugs.gentoo.org/635468 Closes: https://bugs.gentoo.org/635816 Closes: https://bugs.gentoo.org/639960
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/simon/Manifest1
-rw-r--r--app-accessibility/simon/files/simon-0.4.1-libdir.patch16
-rw-r--r--app-accessibility/simon/simon-0.4.90-r1.ebuild63
3 files changed, 0 insertions, 80 deletions
diff --git a/app-accessibility/simon/Manifest b/app-accessibility/simon/Manifest
deleted file mode 100644
index de01be68fa41..000000000000
--- a/app-accessibility/simon/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST simon-0.4.90.tar.xz 25257276 BLAKE2B d5f78c721dc55387db415a740b00831471d6325d3aa2a0282e476132d2c7e378c4b024500527fd54a4073e972494e6ecc6f094022b5651b163d78ff6fcb20fcf SHA512 88b225e6d0168b87241649019376c8726fb3cc96ccbb985fd3dac5f5b67ed2d84de2756537300d7944797bceb7e340cdaf1c5aed731c1a7e2873d284ca3f94c1
diff --git a/app-accessibility/simon/files/simon-0.4.1-libdir.patch b/app-accessibility/simon/files/simon-0.4.1-libdir.patch
deleted file mode 100644
index fae811bef6b0..000000000000
--- a/app-accessibility/simon/files/simon-0.4.1-libdir.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-From: Julian Ospald <hasufell@gentoo.org>
-Date: Fri Mar 29 22:00:19 UTC 2013
-Subject: build system
-
-make libdir modifiable
-
---- a/cmake/SimonDirs.cmake
-+++ b/cmake/SimonDirs.cmake
-@@ -29,6 +29,6 @@
- #IF(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
- #set(SIMON_LIB_INSTALL_DIR lib64)
- #ELSE(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
-- set(SIMON_LIB_INSTALL_DIR lib)
-+ set(SIMON_LIB_INSTALL_DIR lib CACHE STRING "libdir")
- #ENDIF(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
- ENDIF(WIN32)
diff --git a/app-accessibility/simon/simon-0.4.90-r1.ebuild b/app-accessibility/simon/simon-0.4.90-r1.ebuild
deleted file mode 100644
index 8402c1e19169..000000000000
--- a/app-accessibility/simon/simon-0.4.90-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-SQL_REQUIRED="always"
-inherit kde4-base
-
-DESCRIPTION="Open-source speech recognition program for replacing mouse and keyboard"
-HOMEPAGE="http://simon-listens.org/"
-SRC_URI="mirror://kde/unstable/simon/${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libsamplerate opencv sphinx"
-
-RDEPEND="
- media-libs/alsa-lib
- x11-libs/libX11
- x11-libs/libXtst
- x11-libs/qwt:6[qt4]
- libsamplerate? ( media-libs/libsamplerate )
- opencv? ( media-libs/opencv )
- sphinx? (
- >=app-accessibility/pocketsphinx-0.8
- >=app-accessibility/sphinxbase-0.8
- >=app-accessibility/SphinxTrain-1
- )
- !sphinx? ( app-accessibility/julius )
-"
-DEPEND="${RDEPEND}
- sys-devel/bison
- sys-devel/flex
- virtual/pkgconfig
-"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.4.1-libdir.patch )
-
-RESTRICT+=" test"
-
-src_configure() {
- local mycmakeargs=(
- -DSIMON_LIB_INSTALL_DIR=/usr/$(get_libdir)
- -DWITH_KdepimLibs=OFF
- -DUSE_PLASMA=OFF
- -DWITH_LibSampleRate=$(usex libsamplerate)
- -DWITH_OpenCV=$(usex opencv)
- -DBackendType=$(usex sphinx "both" "jhtk")
- $(cmake-utils_use_find_package sphinx Sphinxbase)
- $(cmake-utils_use_find_package sphinx Pocketsphinx)
- )
-
- kde4-base_src_configure
-}
-
-pkg_postinst() {
- kde4-base_pkg_postinst
-
- elog "Optional dependencies:"
- elog " kde-apps/jovie (support for Jovie TTS system)"
- use sphinx && elog " app-accessibility/julius (alternative backend)"
-}