commit: 52ea4b9461802c2cbec409bbd2b5297c18e35267 Author: Hanno Böck <hanno <AT> gentoo <DOT> org> AuthorDate: Thu Sep 10 16:17:23 2020 +0000 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org> CommitDate: Thu Sep 10 16:17:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ea4b94
net-libs/courier-unicode: Disable static libs Closes: https://bugs.gentoo.org/724542 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org> Package-Manager: Portage-3.0.6, Repoman-3.0.1 .../courier-unicode/courier-unicode-2.1-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild b/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild new file mode 100644 index 00000000000..c1fa2022828 --- /dev/null +++ b/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Unicode library used by the courier mail server" +HOMEPAGE="https://www.courier-mta.org/" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + dodoc AUTHORS ChangeLog README +}
