diff options
author | 2015-04-12 19:05:19 +0000 | |
---|---|---|
committer | 2015-04-12 19:05:19 +0000 | |
commit | 5badeb7cdd0ebce89f6de16b1c3c9a72a4bf7bc5 (patch) | |
tree | 8d617d371a692fa64eb2ed63521ab75b4305f0ff /app-accessibility/sphinx3/sphinx3-0.8.ebuild | |
parent | Version bump with minor fixes. (diff) | |
download | gentoo-2-5badeb7cdd0ebce89f6de16b1c3c9a72a4bf7bc5.tar.gz gentoo-2-5badeb7cdd0ebce89f6de16b1c3c9a72a4bf7bc5.tar.bz2 gentoo-2-5badeb7cdd0ebce89f6de16b1c3c9a72a4bf7bc5.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-accessibility/sphinx3/sphinx3-0.8.ebuild')
-rw-r--r-- | app-accessibility/sphinx3/sphinx3-0.8.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/app-accessibility/sphinx3/sphinx3-0.8.ebuild b/app-accessibility/sphinx3/sphinx3-0.8.ebuild deleted file mode 100644 index 5beefcd41d47..000000000000 --- a/app-accessibility/sphinx3/sphinx3-0.8.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/sphinx3-0.8.ebuild,v 1.6 2013/10/09 02:03:56 teiresias Exp $ - -EAPI=3 -PYTHON_DEPEND="python? 2:2.6" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" - -inherit autotools-utils prefix python eutils - -DESCRIPTION="CMU Speech Recognition engine" -HOMEPAGE="http://cmusphinx.sourceforge.net/" -SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc python static-libs" - -DEPEND=">=app-accessibility/sphinxbase-0.7[static-libs?,python?]" -RDEPEND="${DEPEND}" - -# Due to generated Python setup.py. -AUTOTOOLS_IN_SOURCE_BUILD=1 - -src_prepare() { - epatch "${FILESDIR}/${P}_heap_fix.patch" \ - "${FILESDIR}/${P}-libutil.patch" - eprefixify 'python/setup.py' -} - -src_compile() { - autotools-utils_src_compile - - if use python; then - python_copy_sources python - - building() { - "$(PYTHON)" setup.py build - } - - python_execute_function -s --source-dir python building - fi -} - -src_install() { - local DOCS=( AUTHORS ChangeLog NEWS README ) - autotools-utils_src_install - - if use doc; then - cd doc - dohtml -r -x CVS s3* s3 *.html - fi - - if use python; then - installing() { - "$(PYTHON)" setup.py install \ - --install-lib="${D}/$(python_get_sitedir)" - } - - python_execute_function -s --source-dir python installing - fi -} |