diff options
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/gloox/Manifest | 1 | ||||
-rw-r--r-- | net-libs/gloox/gloox-1.0.22.ebuild | 49 |
2 files changed, 0 insertions, 50 deletions
diff --git a/net-libs/gloox/Manifest b/net-libs/gloox/Manifest index 90396725d723..6f894687f9ed 100644 --- a/net-libs/gloox/Manifest +++ b/net-libs/gloox/Manifest @@ -1,2 +1 @@ -DIST gloox-1.0.22.tar.bz2 722653 BLAKE2B e029930ae51053772d4f7bb0cb0933cb260aacc571a6fab6b78c0e12cb7e119938c742afcc0e1af037a97c293f03b423a626c9b01dc9ce974b922c7e9054bcf2 SHA512 89b51dbee338ef8b234d934a5536a2e5d83d8121fa624e933b63bd15017d60f941781a1045884d0d125f50370ed7857cf4131242d39f6703e72c9cf064691416 DIST gloox-1.0.24.tar.bz2 727442 BLAKE2B 57e8916ddf057c115350e005a027e3a81684269f688dd80126bf3753a8dd71a8d64a86e1eb59de2886a6657ad1dac5f9431549db79f314173f49233044b52cb5 SHA512 e3ddb331a57e635b8da5d8cd36a89fa9521599301d1108a025a3526a02df5bf73555d54bccd3706fdffd857134716b23df6bf57a59a17be4f6a7873a810268ee diff --git a/net-libs/gloox/gloox-1.0.22.ebuild b/net-libs/gloox/gloox-1.0.22.ebuild deleted file mode 100644 index 683420569f62..000000000000 --- a/net-libs/gloox/gloox-1.0.22.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# 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 ~arm64 ~ia64 ~ppc ~ppc64 ~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:0= ) - ) - 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 "*.la" -delete || die -} |