From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1FE91139083 for ; Sat, 2 Dec 2017 21:58:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53844E0ECD; Sat, 2 Dec 2017 21:57:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F2C6E0ECD for ; Sat, 2 Dec 2017 21:57:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52EF4341730 for ; Sat, 2 Dec 2017 21:57:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16D0EAE73 for ; Sat, 2 Dec 2017 21:57:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1512251856.07b655e052d0b7ac07dabe3a52a1078c2947d549.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/simon/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/simon/simon-0.4.90.ebuild X-VCS-Directories: app-accessibility/simon/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 07b655e052d0b7ac07dabe3a52a1078c2947d549 X-VCS-Branch: master Date: Sat, 2 Dec 2017 21:57:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6b073c06-d53f-4880-9128-cb2c9c6fbce0 X-Archives-Hash: 979dc19e90857e52e170bcb0698de926 commit: 07b655e052d0b7ac07dabe3a52a1078c2947d549 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Dec 2 21:13:06 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 2 21:57:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b655e0 app-accessibility/simon: Drop old Package-Manager: Portage-2.3.16, Repoman-2.3.6 app-accessibility/simon/simon-0.4.90.ebuild | 63 ----------------------------- 1 file changed, 63 deletions(-) diff --git a/app-accessibility/simon/simon-0.4.90.ebuild b/app-accessibility/simon/simon-0.4.90.ebuild deleted file mode 100644 index c5c349f0a26..00000000000 --- a/app-accessibility/simon/simon-0.4.90.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 - -KDE_LINGUAS="ast bs ca ca@valencia cs da de el en_GB es et fa fi fr ga gl -hu ia ja kk lt mr nds nl pl pt pt_BR sk sl sv tr ug uk zh_CN zh_TW" -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 ) - -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)" -}