Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/libidn2/
Date: Wed, 02 Nov 2016 22:37:50
Message-Id: 1478126259.a27c145c86c403483c9c0289e43daab8fe148e50.blueness@gentoo
1 commit: a27c145c86c403483c9c0289e43daab8fe148e50
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 22:37:19 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 22:37:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27c145c
7
8 net-dns/libidn2: support multilib for curl, see bug #597760c2
9
10 Package-Manager: portage-2.3.0
11
12 net-dns/libidn2/libidn2-0.10-r1.ebuild | 31 +++++++++++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/net-dns/libidn2/libidn2-0.10-r1.ebuild b/net-dns/libidn2/libidn2-0.10-r1.ebuild
16 new file mode 100644
17 index 00000000..6290b07
18 --- /dev/null
19 +++ b/net-dns/libidn2/libidn2-0.10-r1.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +inherit autotools multilib-minimal
27 +
28 +DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5892, 5893)"
29 +HOMEPAGE="https://www.gnu.org/software/libidn/#libidn2"
30 +SRC_URI="mirror://gnu-alpha/libidn/${P}.tar.gz"
31 +
32 +LICENSE="GPL-2+ LGPL-3+"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +IUSE="static-libs"
36 +
37 +PATCHES=(
38 + "${FILESDIR}"/${P}-examples.patch
39 + "${FILESDIR}"/${P}-Werror.patch
40 +)
41 +
42 +src_prepare() {
43 + default
44 + eautoreconf
45 + multilib_copy_sources
46 +}
47 +
48 +multilib_src_configure() {
49 + econf \
50 + $(use_enable static-libs static)
51 +}