Magellan Linux

Contents of /branches/magellan-next/extras/xerces-c/xerces-c-3.1.1-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8044 - (show annotations) (download)
Wed Jun 29 12:57:23 2011 UTC (12 years, 10 months ago) by niro
File size: 740 byte(s)
auto added: ver bump to 3.1.1-r2
1 # $Id$
2
3 PNAME="xerces-c"
4 PVER="3.1.1"
5 PBUILD="r2"
6
7 PCATEGORIE="dev-util"
8
9 DESCRIPTION="Xerces-C++ is a validating XML parser written in a portable subset of C++."
10 HOMEPAGE="http://xml.apache.org/xerces-c/"
11
12 SRCFILE="${PNAME}-${PVER}.tar.gz"
13 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
14
15 sminclude mbuild
16
17 UP2DATE="updatecmd http://www.apache.org/dist/xerces/c/3/sources/ | grep ${PNAME}- | lasttarball gz"
18
19 SRC_URI=(
20 http://www.apache.org/dist/xerces/c/3/sources/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 src_compile()
25 {
26 cd ${SRCDIR}
27 mconfigure \
28 --disable-pretty-make \
29 --disable-static \
30 --enable-threads \
31 --enable-msgloader-inmemory \
32 --enable-transcoder-gnuiconv \
33 --enable-netaccessor-socket \
34 || die
35
36 mmake -j1 || die
37 }