Magellan Linux

Contents of /branches/magellan-next/core/xmlrpc-c/xmlrpc-c-1.16.35-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7632 - (show annotations) (download)
Fri May 27 20:30:14 2011 UTC (13 years ago) by niro
File size: 897 byte(s)
auto added: ver bump to 1.16.35-r1
1 # $Id$
2
3 PNAME="xmlrpc-c"
4 PVER="1.16.35"
5 PBUILD="r1"
6
7 PCATEGORIE="dev-libs"
8 STATE="unstable"
9
10 DESCRIPTION="Programming library for writing an XML-RPC server or client in C or C++."
11 HOMEPAGE="http://xmlrpc-c.sourceforge.net/"
12
13 DEPEND=">= net-misc/curl-7
14 >= dev-libs/libxml2-2.7"
15
16 SRCFILE="${PNAME}-${PVER}.tgz"
17 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18
19 sminclude mbuild
20
21 SRC_URI=(
22 sourceforge://${PNAME}/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 mirror://${PNAME}/${PNAME}-1.06.21-pic.patch
25 )
26
27 UP2DATE="updatecmd_sourceforge ${PNAME} 'Xmlrpc-c Super Stable' - ${PNAME}"
28
29 src_prepare()
30 {
31 munpack ${SRCFILE}
32 cd ${SRCDIR}
33
34 # fixes pic issues
35 mpatch ${PNAME}-1.06.21-pic.patch || die
36 }
37
38 src_compile()
39 {
40 cd ${SRCDIR}
41
42 mconfigure \
43 --enable-libxml2-backend \
44 --enable-abyss-threads \
45 --enable-curl-client \
46 --disable-libwww-client \
47 --disable-wininet-client \
48 || die
49
50 mmake -j1 || die
51 }