Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/flite/
Date: Thu, 20 Feb 2020 02:55:15
Message-Id: 1582167279.e4c33ebe587a88c4a85c0c611cada9df3895c3c0.mattst88@gentoo
1 commit: e4c33ebe587a88c4a85c0c611cada9df3895c3c0
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 20 02:51:01 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 20 02:54:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c33ebe
7
8 app-accessibility/flite: Drop IUSE=static-libs
9
10 Broken and unneeded.
11
12 Closes: https://bugs.gentoo.org/538712
13 Closes: https://bugs.gentoo.org/539556
14 Closes: https://bugs.gentoo.org/635230
15 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
16
17 app-accessibility/flite/flite-1.4-r4.ebuild | 16 ++++++----------
18 1 file changed, 6 insertions(+), 10 deletions(-)
19
20 diff --git a/app-accessibility/flite/flite-1.4-r4.ebuild b/app-accessibility/flite/flite-1.4-r4.ebuild
21 index 5e652f73704..9164855c02b 100644
22 --- a/app-accessibility/flite/flite-1.4-r4.ebuild
23 +++ b/app-accessibility/flite/flite-1.4-r4.ebuild
24 @@ -11,7 +11,7 @@ SRC_URI=" http://www.speech.cs.cmu.edu/${PN}/packed/${P}/${P}-release.tar.bz2"
25 LICENSE="BSD freetts public-domain regexp-UofT BSD-2"
26 SLOT="0"
27 KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 sparc x86"
28 -IUSE="alsa oss static-libs"
29 +IUSE="alsa oss"
30
31 DEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )"
32 RDEPEND="${DEPEND}"
33 @@ -49,12 +49,10 @@ src_prepare() {
34 }
35
36 multilib_src_configure() {
37 - local myconf=()
38 - if ! use static-libs; then
39 - myconf+=( --enable-shared )
40 - fi
41 - myconf+=( --with-audio=$(get_audio) )
42 -
43 + local myconf=(
44 + --enable-shared
45 + --with-audio=$(get_audio)
46 + )
47 econf "${myconf[@]}"
48 }
49
50 @@ -65,9 +63,7 @@ multilib_src_compile() {
51 multilib_src_install_all() {
52 dodoc ACKNOWLEDGEMENTS README
53
54 - if ! use static-libs; then
55 - find "${ED}" -name '*.a' ! -name '*.dll.a' -delete || die
56 - fi
57 + find "${ED}" -name '*.a' ! -name '*.dll.a' -delete || die
58 }
59
60 pkg_postinst() {