diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-04-12 19:05:19 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-04-12 19:05:19 +0000 |
commit | 5badeb7cdd0ebce89f6de16b1c3c9a72a4bf7bc5 (patch) | |
tree | 8d617d371a692fa64eb2ed63521ab75b4305f0ff /app-accessibility/sphinx3 | |
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')
-rw-r--r-- | app-accessibility/sphinx3/ChangeLog | 7 | ||||
-rw-r--r-- | app-accessibility/sphinx3/sphinx3-0.8.ebuild | 64 |
2 files changed, 5 insertions, 66 deletions
diff --git a/app-accessibility/sphinx3/ChangeLog b/app-accessibility/sphinx3/ChangeLog index 4ed72116b66f..d63df81c8048 100644 --- a/app-accessibility/sphinx3/ChangeLog +++ b/app-accessibility/sphinx3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-accessibility/sphinx3 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.11 2014/12/14 22:30:18 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.12 2015/04/12 19:05:19 mrueg Exp $ + + 12 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -sphinx3-0.8.ebuild: + Remove old. *sphinx3-0.8-r1 (14 Dec 2014) 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 -} |