Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/courier-unicode/
Date: Thu, 10 Sep 2020 16:17:43
Message-Id: 1599754643.52ea4b9461802c2cbec409bbd2b5297c18e35267.hanno@gentoo
1 commit: 52ea4b9461802c2cbec409bbd2b5297c18e35267
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 10 16:17:23 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 10 16:17:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ea4b94
7
8 net-libs/courier-unicode: Disable static libs
9
10 Closes: https://bugs.gentoo.org/724542
11 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
12 Package-Manager: Portage-3.0.6, Repoman-3.0.1
13
14 .../courier-unicode/courier-unicode-2.1-r1.ebuild | 22 ++++++++++++++++++++++
15 1 file changed, 22 insertions(+)
16
17 diff --git a/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild b/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild
18 new file mode 100644
19 index 00000000000..c1fa2022828
20 --- /dev/null
21 +++ b/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild
22 @@ -0,0 +1,22 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +DESCRIPTION="Unicode library used by the courier mail server"
29 +HOMEPAGE="https://www.courier-mta.org/"
30 +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
31 +LICENSE="GPL-3"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
34 +IUSE=""
35 +
36 +src_configure() {
37 + econf --disable-static
38 +}
39 +
40 +src_install() {
41 + default
42 + find "${D}" -name '*.la' -delete || die
43 + dodoc AUTHORS ChangeLog README
44 +}