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
This commit is contained in:
David Seifert
2018-01-12 10:06:49 +01:00
parent 826ac109f0
commit 16218f3bb1

View File

@@ -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_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
src_configure() {
econf --disable-static
}
src_install() {
default
# no static libs installed
find "${D}" -name '*.la' -delete || die
}