blob: 045fa541f7955a6a58c9c947a429293fd2c88918 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
SCONS_MIN_VERSION="1.2"
LANGS=" ca de es fr hu nl pl ru se sk"
[[ ${PV} = *9999* ]] && VCS_ECLASS="git-2" || VCS_ECLASS=""
inherit scons-utils toolchain-funcs ${VCS_ECLASS}
DESCRIPTION="Swiften is a robust, high-quality, standards-compliant, cross-platform, and performant C++ library for implementing XMPP applications. Swiften is used as the back-end library for the Swift IM client."
HOMEPAGE="http://swift.im/"
MY_P="swift-${PV}"
S="${WORKDIR}/${MY_P}"
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="git://swift.im/swift"
else
SRC_URI="http://swift.im/downloads/releases/${MY_P}/${MY_P}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="GPL-3"
SLOT="0"
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64 ~x86"
else
KEYWORDS=""
fi
IUSE="avahi debug doc test"
IUSE+="${LANGS// / linguas_}"
RDEPEND="
avahi? ( net-dns/avahi )
>=dev-libs/boost-1.42
>=dev-libs/openssl-0.9.8g
>=net-dns/libidn-1.10
dev-libs/libxml2
>=dev-libs/expat-2.0.1
sys-libs/zlib
"
DEPEND="${RDEPEND}
doc? (
>=app-text/docbook-xsl-stylesheets-1.75
>=app-text/docbook-xml-dtd-4.5
dev-libs/libxslt
)
"
src_prepare() {
pushd 3rdParty || die
# TODO CppUnit, Lua
rm -rf Boost CAres DocBook Expat LCov LibIDN OpenSSL SCons SQLite ZLib || die
popd || die
epatch "${FILESDIR}"/*.patch
}
src_compile() {
scons_vars=(
cc="$(tc-getCC)"
cxx="$(tc-getCXX)"
ccflags="${CFLAGS}"
linkflags="${LDFLAGS}"
allow_warnings=1
ccache=1
distcc=1
$(use_scons debug)
openssl="${EPREFIX}/usr"
docbook_xsl="${EPREFIX}/usr/share/sgml/docbook/xsl-stylesheets"
docbook_xml="${EPREFIX}/usr/share/sgml/docbook/xml-dtd-4.5"
swiften_dll=1
Swiften
)
escons "${scons_vars[@]}"
}
src_test() {
escons "${scons_vars[@]}" test="unit" QA
}
src_install() {
escons "${scons_vars[@]}" SWIFTEN_INSTALLDIR="${ED}/usr" SWIFTEN_LIBDIR="${ED}/usr/$(get_libdir)" "${ED}/usr"
use doc && dohtml "Documentation/SwiftenDevelopersGuide/Swiften Developers Guide.html"
}
|