commit: 8d8e8d31730f990f83fb9676accf97a8bca18b34 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr> AuthorDate: Sun Nov 15 23:22:40 2020 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Nov 15 23:22:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d8e8d31
app-dicts/libydpdict: disable static libs Closes: https://bugs.gentoo.org/726498 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr> Signed-off-by: David Seifert <soap <AT> gentoo.org> app-dicts/libydpdict/libydpdict-1.0.4.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild index 76fd75b2888..aff0de2c35a 100644 --- a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild +++ b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools DESCRIPTION="Library for handling the Collins Dictionary database" @@ -12,12 +13,18 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" +DOCS=( AUTHORS ) + src_prepare() { default eautoreconf } +src_configure() { + econf --disable-static +} + src_install() { default - dodoc AUTHORS + find "${ED}" -name '*.la' -delete || die }
