summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-12-04 14:40:54 +0100
committerMichał Górny <mgorny@gentoo.org>2018-12-04 14:40:54 +0100
commit1e7087a2bac91c5b30dfc576dc7543268fff0ef9 (patch)
treedc0ad7dcac4778736198dab439fb2f9fdb0a9f96 /app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild
parentnet-nntp/inn: Remove last-rited pkg (diff)
downloadgentoo-1e7087a2bac91c5b30dfc576dc7543268fff0ef9.tar.gz
gentoo-1e7087a2bac91c5b30dfc576dc7543268fff0ef9.tar.bz2
gentoo-1e7087a2bac91c5b30dfc576dc7543268fff0ef9.zip
app-accessibility/pocketsphinx: Remove last-rited pkg
Closes: https://bugs.gentoo.org/610434 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild')
-rw-r--r--app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild b/app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild
deleted file mode 100644
index 6b2f52862a61..000000000000
--- a/app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_OPTIONAL=1
-inherit eutils distutils-r1
-
-DESCRIPTION="Speaker-independent large vocabulary with continuous speech recognizer"
-HOMEPAGE="https://sourceforge.net/projects/cmusphinx/"
-SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="python static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="app-accessibility/sphinxbase
- media-libs/gstreamer:0.10
- media-libs/gst-plugins-base:0.10
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-run_distutils() {
- if use python; then
- pushd python > /dev/null || die
- distutils-r1_"${@}"
- popd > /dev/null || die
- fi
-}
-
-src_configure() {
- econf \
- --without-python \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- default
- run_distutils ${FUNCNAME}
-}
-
-src_install() {
- default
- run_distutils ${FUNCNAME}
- prune_libtool_files
-}