blob: 9b02001ae84f9b86624b724f49b2de636f28ac84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2019 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 ~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 "*.la" -delete || die
}
|