Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15012 - (hide annotations) (download)
Wed Jan 2 09:49:00 2013 UTC (11 years, 5 months ago) by niro
File size: 1088 byte(s)
-release branches/R11-stable
1 niro 14215 # $Id$
2    
3     PNAME="xmlrpc-c"
4     PVER="1.16.44"
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     UP2TARBALL="${PNAME}"
29     UP2DATE="updatecmd_sourceforge ${PNAME} 'Xmlrpc-c Super Stable' tgz"
30    
31     src_prepare()
32     {
33     munpack ${SRCFILE}
34     cd ${SRCDIR}
35    
36     # fixes pic issues
37     mpatch ${PNAME}-1.06.21-pic.patch || die
38    
39     # fix compilation against newer curl, which dropped types.h
40     sed -i '/#include <curl\/types.h>/d' lib/curl_transport/*.c || die
41     }
42    
43     src_compile()
44     {
45     cd ${SRCDIR}
46    
47     mconfigure \
48     --enable-libxml2-backend \
49     --enable-abyss-threads \
50     --enable-curl-client \
51     --disable-libwww-client \
52     --disable-wininet-client \
53     --disable-static \
54     || die
55    
56     mmake -j1 || die
57     }