Magellan Linux

Annotation of /branches/R11-stable/core/xmlrpc-c/xmlrpc-c-1.25.29-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 21533 - (hide annotations) (download)
Mon Jun 30 12:47:30 2014 UTC (9 years, 11 months ago) by niro
Original Path: trunk/core/xmlrpc-c/xmlrpc-c-1.25.29-r1.smage2
File size: 979 byte(s)
auto added: ver bump to 1.25.29-r1
1 niro 21533 # $Id$
2    
3     PNAME="xmlrpc-c"
4     PVER="1.25.29"
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.8"
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     )
26    
27     UP2TARBALL="${PNAME}"
28     UP2DATE="updatecmd_sourceforge ${PNAME} 'Xmlrpc-c Super Stable' tgz"
29    
30     src_prepare()
31     {
32     munpack ${SRCFILE}
33     cd ${SRCDIR}
34    
35     # fix compilation against newer curl, which dropped types.h
36     sed -i '/#include <curl\/types.h>/d' lib/curl_transport/*.c || die
37     }
38    
39     src_compile()
40     {
41     cd ${SRCDIR}
42    
43     mconfigure \
44     --enable-libxml2-backend \
45     --enable-abyss-threads \
46     --enable-curl-client \
47     --disable-libwww-client \
48     --disable-wininet-client \
49     --disable-static \
50     || die
51    
52     mmake -j1 || die
53     }