summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-10-01 22:08:43 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-10-03 21:22:01 +0200
commitc3e1a39478d7862d45926def670d4923ff336136 (patch)
tree6d3edd7ef2d48a55aab1265fc291b4dca3b63b1b /app-accessibility
parentapp-accessibility/emacspeak-ss: drop 1.9.1 (diff)
downloadgentoo-c3e1a39478d7862d45926def670d4923ff336136.tar.gz
gentoo-c3e1a39478d7862d45926def670d4923ff336136.tar.bz2
gentoo-c3e1a39478d7862d45926def670d4923ff336136.zip
app-accessibility/sphinx2: drop 0.6
Closes: https://bugs.gentoo.org/914844 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/sphinx2/sphinx2-0.6.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/app-accessibility/sphinx2/sphinx2-0.6.ebuild b/app-accessibility/sphinx2/sphinx2-0.6.ebuild
deleted file mode 100644
index 5a6921cdfb18..000000000000
--- a/app-accessibility/sphinx2/sphinx2-0.6.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-MY_P=${P/_/}
-
-DESCRIPTION="CMU Speech Recognition-engine"
-HOMEPAGE="https://cmusphinx.github.io"
-SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="static-libs"
-
-S=${WORKDIR}/${MY_P}
-PATCHES=( "${FILESDIR}"/${P}-as-needed.patch )
-
-src_prepare() {
- default
- mv configure.{in,ac} || die
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- HTML_DOCS=( doc/{phoneset_s2,sphinx2}.html )
- default
- dodoc doc/{README.{bin,lib},SCHMM_format,filler.dict,phoneset{,-old}}
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}