diff options
author | Filip Kobierski <fkobi@pm.me> | 2024-08-28 17:47:29 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-08-30 10:25:29 +0300 |
commit | 3f70a4add4eefc3a7a18e9d55d85486377970271 (patch) | |
tree | cc6f945af3a8fa81af8e18adc6187df1ed8e0343 /net-libs | |
parent | media-tv/plex-media-server: add 1.40.5.8921 (diff) | |
download | gentoo-3f70a4add4eefc3a7a18e9d55d85486377970271.tar.gz gentoo-3f70a4add4eefc3a7a18e9d55d85486377970271.tar.bz2 gentoo-3f70a4add4eefc3a7a18e9d55d85486377970271.zip |
net-libs/gloox: drop 1.0.24-r0
Signed-off-by: Filip Kobierski <fkobi@pm.me>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/gloox/gloox-1.0.24.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/net-libs/gloox/gloox-1.0.24.ebuild b/net-libs/gloox/gloox-1.0.24.ebuild deleted file mode 100644 index b63398759439..000000000000 --- a/net-libs/gloox/gloox-1.0.24.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -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" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-3" -# Check upstream changelog: https://camaya.net/gloox/changelog/ -SLOT="0/18" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="debug gnutls idn ssl static-libs test zlib" -RESTRICT="!test? ( test )" - -DEPEND=" - idn? ( net-dns/libidn:= ) - gnutls? ( net-libs/gnutls:= ) - ssl? ( - dev-libs/openssl:0= - ) - zlib? ( sys-libs/zlib ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-1.0.24-musl.patch" - "${FILESDIR}/${PN}-1.0.24-Makefile.patch" - "${FILESDIR}/${PN}-1.0.24-slibtool.patch" - "${FILESDIR}/${PN}-1.0.24-pthread-link.patch" -) - -src_prepare() { - default - eautoreconf -} - -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 -} |