diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org> | 2017-08-22 12:44:29 +0200 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2017-08-22 10:20:13 -0400 |
commit | 7a807d95f61968e6010024f8600795312a522366 (patch) | |
tree | 8b81d7c8f31d1d1db8b283e6fc4138b1b5e3cdf7 /app-i18n/opencc | |
parent | app-i18n/opencc: Install HTML documentation in Gentoo-preferred location. (diff) | |
download | gentoo-7a807d95f61968e6010024f8600795312a522366.tar.gz gentoo-7a807d95f61968e6010024f8600795312a522366.tar.bz2 gentoo-7a807d95f61968e6010024f8600795312a522366.zip |
app-i18n/opencc: Delete "static-libs" USE flag.
No *.a or *.la files are built by build system.
Diffstat (limited to 'app-i18n/opencc')
-rw-r--r-- | app-i18n/opencc/opencc-1.0.5.ebuild | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app-i18n/opencc/opencc-1.0.5.ebuild b/app-i18n/opencc/opencc-1.0.5.ebuild index bd885053aae8..bf1dbe79616b 100644 --- a/app-i18n/opencc/opencc-1.0.5.ebuild +++ b/app-i18n/opencc/opencc-1.0.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/BYVoid/OpenCC/archive/ver.${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0/2" KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" -IUSE="doc static-libs" +IUSE="doc" DEPEND="doc? ( app-doc/doxygen )" RDEPEND="" @@ -41,6 +41,4 @@ src_install() { mv "${ED}usr/share/opencc/doc/html" "${ED}usr/share/doc/${P}/html" || die rmdir "${ED}usr/share/opencc/doc" || die fi - - use static-libs || find "${ED}" -name '*.la' -o -name '*.a' -exec rm {} + } |