Magellan Linux

Contents of /branches/R11-stable/extras/neon/neon-0.30.1-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24375 - (show annotations) (download)
Fri Feb 20 10:14:57 2015 UTC (9 years, 2 months ago) by niro
File size: 914 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="neon"
4 PVER="0.30.1"
5 PBUILD="r2"
6
7 PCAT="net-misc"
8
9 DESCRIPTION="neon is an http and webdav client library, with a C interface."
10 HOMEPAGE="http://www.webdav.org/neon/"
11
12 DEPEND=">= dev-libs/libxml2-2.9
13 >= dev-libs/openssl-1.0.1k
14 >= net-libs/libproxy-0.4
15 >= sys-libs/zlib-1.2.8
16 >= app-crypt/ca-certificates-2014"
17
18 SRCFILE="${PNAME}-${PVER}.tar.gz"
19 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
20
21 sminclude mbuild
22 msetfeature "!check"
23
24 SRC_URI=(
25 http://www.webdav.org/${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 )
28
29 UP2DATE="updatecmd ${HOMEPAGE} | grep 'Changes in release' | sed 's/.*neon\ \([0-9].*\),.*/\1/g;q'"
30
31 src_compile()
32 {
33 cd ${SRCDIR}
34
35 mconfigure \
36 --enable-shared \
37 --disable-debug \
38 --disable-warnings \
39 --disable-memleak \
40 --disable-tests-install \
41 --with-libxml2 \
42 --with-zlib \
43 --with-ssl=openssl \
44 --without-gssapi \
45 --without-pakchois \
46 || die
47
48 mmake || die
49 }