From dcab02d52ed21ede675ff724263771a6b6b25302 Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Fri, 22 Jun 2018 13:28:37 +0200 Subject: net-libs/gloox: Bump to version 1.0.21 Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- net-libs/gloox/Manifest | 1 + net-libs/gloox/gloox-1.0.21.ebuild | 49 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 net-libs/gloox/gloox-1.0.21.ebuild (limited to 'net-libs') diff --git a/net-libs/gloox/Manifest b/net-libs/gloox/Manifest index cdc907e70d60..045a5eb7521c 100644 --- a/net-libs/gloox/Manifest +++ b/net-libs/gloox/Manifest @@ -1 +1,2 @@ DIST gloox-1.0.20.tar.bz2 701114 BLAKE2B d86b4de05a040b4f7fe1200d5863514778197e7e13ee08ebe983a85255065045c47b322ba20fa4ea051049ce609f122c00374cc3188f46c8729ec904da7778eb SHA512 b94269487875ae32631b5b15eeebe3293c6b8ab4080a6e15926c575305841a609a5e4da25bff266806ef4b65c1db14e9a9e5dabf8af8b174773cbdc37cfa12f8 +DIST gloox-1.0.21.tar.bz2 716449 BLAKE2B 9728b137b088e3ebd067dd88688474e37ec27108cc87ffe6d2d78b206c3215f36c072e333d04c659e5dc9db43c330bcac7ee7f495208bd8df1bbeb72db1e0792 SHA512 ee2c180e6a6e05955707fdd3e790c4c0e7be46fdf071201abd081b8620e3f664045f000804e1a30bddf8a3324e90f211ce5ee870fd5330ab87979dedfeb45575 diff --git a/net-libs/gloox/gloox-1.0.21.ebuild b/net-libs/gloox/gloox-1.0.21.ebuild new file mode 100644 index 000000000000..f2fe910d22e6 --- /dev/null +++ b/net-libs/gloox/gloox-1.0.21.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="${P/_/-}" +DESCRIPTION="A portable high-level Jabber/XMPP library for C++" +HOMEPAGE="https://camaya.net/gloox/" +SRC_URI="https://camaya.net/download/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0/17" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~ia64 ~sparc ~x86" +IUSE="debug gnutls idn libressl ssl static-libs test zlib" + +DEPEND="idn? ( net-dns/libidn:= ) + gnutls? ( net-libs/gnutls ) + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + zlib? ( sys-libs/zlib )" + +RDEPEND="${DEPEND}" + +# GnuTLS checks hang forever +RESTRICT="test" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + # Examples are not installed anyway, so - why should we build them? + local myeconfargs=( + --without-examples + $(usex debug "--enable-debug" '') + $(use_enable static-libs static) + $(use_with idn libidn) + $(use_with gnutls) + $(use_with ssl openssl) + $(use_with test tests) + $(use_with zlib) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die +} -- cgit v1.2.3