diff options
author | Hanno Böck <hanno@gentoo.org> | 2020-09-10 18:17:23 +0200 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2020-09-10 18:17:23 +0200 |
commit | 52ea4b9461802c2cbec409bbd2b5297c18e35267 (patch) | |
tree | 7c3bb4fea12aef7561917999e0126d42cad755a2 /net-libs | |
parent | net-libs/courier-unicode: Remove old (diff) | |
download | gentoo-52ea4b9461802c2cbec409bbd2b5297c18e35267.tar.gz gentoo-52ea4b9461802c2cbec409bbd2b5297c18e35267.tar.bz2 gentoo-52ea4b9461802c2cbec409bbd2b5297c18e35267.zip |
net-libs/courier-unicode: Disable static libs
Closes: https://bugs.gentoo.org/724542
Signed-off-by: Hanno Böck <hanno@gentoo.org>
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
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 000000000000..c1fa20228287 --- /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 +} |