summaryrefslogtreecommitdiff
path: root/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-22 01:55:45 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-22 01:55:45 +0000
commitb2c59335bfbeb25c5644f32172e1e9b23c447710 (patch)
tree0e8e19f47e39be0a7b9b06cb86db760c6d6b5965 /net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
parent427ba64bd6bcdd59a1ae9bc7c5cec0299d135413 (diff)
gentoo auto-resync : 22:12:2022 - 01:55:45
Diffstat (limited to 'net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild')
-rw-r--r--net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
deleted file mode 100644
index 13e7508b5b20..000000000000
--- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Lightweight C Jabber library"
-HOMEPAGE="https://mcabber.com"
-SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 ~ppc-macos"
-
-IUSE="asyncns ssl openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-# Automagic libidn dependency
-RDEPEND="
- >=dev-libs/glib-2.16:2
- net-dns/libidn:=
- ssl? (
- !openssl? ( >=net-libs/gnutls-1.4.0:0= )
- openssl? ( dev-libs/openssl:0= )
- )
- asyncns? ( >=net-libs/libasyncns-0.3 )
-"
-DEPEND="${RDEPEND}
- dev-util/glib-utils
- dev-util/gtk-doc-am
- test? ( dev-libs/check )
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gcc7.patch
-)
-
-src_configure() {
- local myconf
-
- if use ssl; then
- if ! use openssl; then
- myconf="${myconf} --with-ssl=gnutls"
- else
- myconf="${myconf} --with-ssl=openssl"
- fi
- else
- myconf="${myconf} --with-ssl=no"
- fi
-
- econf \
- $(use_enable static-libs static) \
- $(use_with asyncns) \
- ${myconf}
-}