blob: 093989b6cbc4b6fe292b32b521ddf84795ff53df (
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
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xmlrpc-c/xmlrpc-c-1.18.02.ebuild,v 1.3 2009/04/29 10:38:48 loki_val Exp $
EAPI=2
inherit eutils multilib base autotools
DESCRIPTION="A lightweigt RPC library based on XML and HTTP"
SRC_URI="mirror://gentoo/${PN}/${P}.tar.bz2"
HOMEPAGE="http://xmlrpc-c.sourceforge.net/"
KEYWORDS=" ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="+curl +cxx tools +cgi abyss threads"
LICENSE="BSD"
SLOT="0"
DEPEND="dev-libs/libxml2
tools? ( dev-perl/frontier-rpc )
curl? ( net-misc/curl )"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! use curl
then
ewarn "Curl support disabled: No client library will be be built"
fi
}
#Bug 214137: We need to filter this.
unset SRCDIR
PATCHES=( "${FILESDIR}/${P}/dumpvalue.patch" )
src_prepare() {
base_src_util autopatch
# Respect the user's CFLAGS/CXXFLAGS.
sed -i \
-e "/CFLAGS_COMMON/s:-g -O3$:${CFLAGS}:" \
-e "/CXXFLAGS_COMMON/s:-g$:${CXXFLAGS}:" \
"${S}"/common.mk || die "404. File not found while sedding"
sed -i \
-e "/^LIBINST_DIR = / s:\$(PREFIX)/lib:\$(PREFIX)/$(get_libdir):" \
config.mk.in
eautoconf
}
src_configure() {
# Respect the user's LDFLAGS.
export LADD=${LDFLAGS}
econf --disable-wininet-client \
--disable-libwww-client \
--enable-libxml2-backend \
$(use_enable tools) \
$(use_enable threads abyss-threads) \
$(use_enable cgi cgi-server) \
$(use_enable abyss abyss-server) \
$(use_enable cxx cplusplus) \
$(use_enable curl curl-client) \
|| die "econf failed"
}
src_compile() {
emake || die "Compiling failed"
}
src_test() {
if use abyss
then
unset LDFLAGS LADD SRCDIR
cd "${S}"/src/test/
einfo "Building general tests"
make || die "Make of general tests failed"
einfo "Running general tests"
./test || die "General tests failed"
if use cpp
then
cd "${S}"/src/cpp/test
einfo "Building C++ tests"
make || die "Make of C++ tests failed"
einfo "Running C++ tests"
./test || die "C++ tests failed"
fi
else
elog "Running of tests in ${PN} fails unless USE='abyss' is set."
fi
}
src_install() {
emake DESTDIR="${D}" install || die "installation failed"
}
|