Magellan Linux

Contents of /trunk/core/xmlrpc-c/xmlrpc-c-1.16.42-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13016 - (show annotations) (download)
Fri Aug 17 08:26:34 2012 UTC (12 years, 1 month ago) by niro
File size: 1073 byte(s)
auto added: ver bump to 1.16.42-r1
1 # $Id$
2
3 PNAME="xmlrpc-c"
4 PVER="1.16.42"
5 PBUILD="r1"
6
7 PCAT="dev-libs"
8
9 DESCRIPTION="Programming library for writing an XML-RPC server or client in C or C++."
10 HOMEPAGE="http://xmlrpc-c.sourceforge.net/"
11
12 DEPEND=">= net-misc/curl-7
13 >= dev-libs/libxml2-2.7
14 >= sys-libs/libstdc++-4.6"
15
16 SRCFILE="${PNAME}-${PVER}.tgz"
17 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18
19 sminclude mbuild
20 msetfeature "!check"
21
22 SRC_URI=(
23 sourceforge://${PNAME}/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${PNAME}-1.06.21-pic.patch
26 )
27
28 UP2DATE="updatecmd_sourceforge ${PNAME} 'Xmlrpc-c Super Stable' - ${PNAME}"
29
30 src_prepare()
31 {
32 munpack ${SRCFILE}
33 cd ${SRCDIR}
34
35 # fixes pic issues
36 mpatch ${PNAME}-1.06.21-pic.patch || die
37
38 # fix compilation against newer curl, which dropped types.h
39 sed -i '/#include <curl\/types.h>/d' lib/curl_transport/*.c || die
40 }
41
42 src_compile()
43 {
44 cd ${SRCDIR}
45
46 mconfigure \
47 --enable-libxml2-backend \
48 --enable-abyss-threads \
49 --enable-curl-client \
50 --disable-libwww-client \
51 --disable-wininet-client \
52 --disable-static \
53 || die
54
55 mmake -j1 || die
56 }