diff options
author | David Seifert <soap@gentoo.org> | 2018-01-12 10:06:49 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2018-01-12 10:07:16 +0100 |
commit | 16218f3bb128f3a2fc4e08b62bb90e298be5e2e0 (patch) | |
tree | 1268bb8cbc7270d3480cf1d424277f0d31afefad /dev-libs | |
parent | kde-misc/wacomtablet: remove 3.0.0_beta1 (diff) | |
download | gentoo-16218f3bb128f3a2fc4e08b62bb90e298be5e2e0.tar.gz gentoo-16218f3bb128f3a2fc4e08b62bb90e298be5e2e0.tar.bz2 gentoo-16218f3bb128f3a2fc4e08b62bb90e298be5e2e0.zip |
dev-libs/libunicode: [QA] Minor touchups
* Avoid installing static libs
* Remove .la files
* Remove old src_install that shadows
the same default one in EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libunicode/libunicode-0.4-r2.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild index 88dcbf104bb1..ffece83e3936 100644 --- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild +++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild @@ -19,10 +19,17 @@ src_prepare() { # The build system is too old, regenerate here to fix crossbuild and # respect LDFLAGS and probably other problems too. sed -i -e "/testsuite/d" configure.in || die + mv configure.{in,ac} || die eautoreconf } +src_configure() { + econf --disable-static +} + src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README THANKS TODO + default + + # no static libs installed + find "${D}" -name '*.la' -delete || die } |