summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-03-29 03:50:41 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-03-29 03:50:41 +0000
commitc827f901f03828f0794d286d623ab0d6813b0e89 (patch)
treecaeefda057c5bf5268e906239909be205236d6df /app-accessibility
parentRemove old. (diff)
downloadgentoo-2-c827f901f03828f0794d286d623ab0d6813b0e89.tar.gz
gentoo-2-c827f901f03828f0794d286d623ab0d6813b0e89.tar.bz2
gentoo-2-c827f901f03828f0794d286d623ab0d6813b0e89.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/sphinxbase/ChangeLog7
-rw-r--r--app-accessibility/sphinxbase/sphinxbase-0.7.ebuild63
2 files changed, 5 insertions, 65 deletions
diff --git a/app-accessibility/sphinxbase/ChangeLog b/app-accessibility/sphinxbase/ChangeLog
index f086de9e40cc..bce7855d2a23 100644
--- a/app-accessibility/sphinxbase/ChangeLog
+++ b/app-accessibility/sphinxbase/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-accessibility/sphinxbase
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinxbase/ChangeLog,v 1.9 2013/10/27 15:51:51 teiresias Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinxbase/ChangeLog,v 1.10 2015/03/29 03:50:41 mrueg Exp $
+
+ 29 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -sphinxbase-0.7.ebuild:
+ Remove old.
27 Oct 2013; Christopher Brannon <teiresias@gentoo.org>
sphinxbase-0.8.ebuild, +files/sphinxbase-0.8-automake113.patch:
diff --git a/app-accessibility/sphinxbase/sphinxbase-0.7.ebuild b/app-accessibility/sphinxbase/sphinxbase-0.7.ebuild
deleted file mode 100644
index 40ca89d61ce5..000000000000
--- a/app-accessibility/sphinxbase/sphinxbase-0.7.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinxbase/sphinxbase-0.7.ebuild,v 1.4 2012/12/14 11:11:58 ulm Exp $
-
-EAPI=3
-PYTHON_DEPEND="python? 2:2.6"
-RESTRICT_PYTHON_ABIS="3* 2.7-pypy-*"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit autotools-utils python
-
-DESCRIPTION="Support library required by the Sphinx Speech Recognition Engine"
-HOMEPAGE="http://cmusphinx.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
-
-LICENSE="BSD-2 HPND MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc lapack python static-libs"
-
-RDEPEND="lapack? ( virtual/lapack )"
-DEPEND="${RDEPEND}
- doc? ( >=app-doc/doxygen-1.4.7 )"
-
-# Due to generated Python setup.py.
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-src_configure() {
- local myeconfargs=(
- $( use_with lapack )
- # python modules are built through distutils
- # so disable the ugly wrapper
- --without-python
- )
-
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile
-
- if use python; then
- python_copy_sources python
-
- building() {
- emake PYTHON="$(PYTHON)" PYTHON_INCLUDEDIR="$(python_get_includedir)" PYTHON_LIBDIR="$(python_get_libdir)"
- }
-
- python_execute_function -s --source-dir python building
- fi
-}
-
-src_install() {
- autotools-utils_src_install
-
- if use python; then
- python_execute_function -s --source-dir python -d
- fi
-
- if use doc; then
- dohtml doc/html/*
- fi
-}