commit: 1c2c816ad9c059748e74cb333ab0cbe050fe8eb4
Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
AuthorDate: Sat Sep 16 20:11:03 2017 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Sep 18 18:31:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2c816a
app-i18n/libchewing: Allow to run test suite without installing libchewing.a.
app-i18n/libchewing/libchewing-0.5.1.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/app-i18n/libchewing/libchewing-0.5.1.ebuild
b/app-i18n/libchewing/libchewing-0.5.1.ebuild
index 99560d8350c..fb0597f8edb 100644
--- a/app-i18n/libchewing/libchewing-0.5.1.ebuild
+++ b/app-i18n/libchewing/libchewing-0.5.1.ebuild
@@ -13,16 +13,16 @@ SLOT="0/3"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
IUSE="static-libs test"
-REQUIRED_USE="test? ( static-libs )"
RDEPEND="dev-db/sqlite:3"
DEPEND="${RDEPEND}
test? ( sys-libs/ncurses[unicode] )"
src_configure() {
+ # libchewing.a is required for building of tests.
econf \
- $(use_enable static-libs static) \
- --with-sqlite3
+ --with-sqlite3 \
+ $(if use static-libs || use test; then echo --enable-static;
else echo --disable-static; fi)
}
src_test() {
@@ -32,4 +32,5 @@ src_test() {
src_install() {
default
prune_libtool_files
+ use static-libs || find "${D}" -name "*.a" -delete || die
}