blob: c45b91a311f6f7e921f78d6636767f815c71f33f (
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
|
# Copyright 1999-2008 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.14.07.ebuild,v 1.1 2008/06/04 12:19:08 loki_val Exp $
EAPI=1
inherit eutils 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="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="+curl +cxx"
LICENSE="BSD"
SLOT="0"
DEPEND="dev-libs/libxml2
curl? ( net-misc/curl )"
pkg_setup() {
if ! use curl
then
ewarn "Curl support disabled: No client library will be be built"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# Respect the user's CFLAGS/CXXFLAGS.
sed -i -e "/CFLAGS_COMMON/s:-g -O3$:${CFLAGS}:" Makefile.common
sed -i -e "/CXXFLAGS_COMMON/s:-g$:${CXXFLAGS}:" Makefile.common
eautoreconf
}
src_compile() {
#Bug 214137: We need to filter this.
unset SRCDIR
# Respect the user's LDFLAGS.
export LADD=${LDFLAGS}
econf --disable-wininet-client \
--enable-libxml2-backend \
--disable-libwww-client \
--disable-abyss-server \
--enable-cgi-server \
--disable-abyss-threads \
$(use_enable curl curl-client) \
$(use_enable cxx cplusplus ) || die "econf failed"
emake -j1 || die "emake failed"
}
src_test() {
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"
ewarn "The tests are made of fail. Skipping."
return 0
#C++ tests. They fail.
#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"
}
src_install() {
unset SRCDIR
emake -j1 DESTDIR="${D}" install || die "installation failed"
dodoc README doc/CREDITS doc/DEVELOPING doc/HISTORY doc/SECURITY doc/TESTING \
doc/TODO || die "installing docs failed"
}
|