Magellan Linux

Contents of /branches/magellan-next/core/neon/neon-0.29.6-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9051 - (show annotations) (download)
Tue Oct 4 12:39:03 2011 UTC (12 years, 7 months ago) by niro
File size: 837 byte(s)
-rebuild against openssl-1.0.0e
1 # $Id$
2
3 PNAME="neon"
4 PVER="0.29.6"
5 PBUILD="r2"
6
7 PCATEGORIE="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.7
13 >= dev-libs/openssl-1.0.0
14 >= sys-libs/zlib-1.2.5"
15
16 SRCFILE="${PNAME}-${PVER}.tar.gz"
17 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18
19 sminclude mbuild
20
21 SRC_URI=(
22 http://www.webdav.org/${PNAME}/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 )
25
26 UP2DATE="updatecmd ${HOMEPAGE} | grep 'Changes in release' | sed 's/.*neon\ \([0-9].*\),.*/\1/g;q'"
27
28 src_compile()
29 {
30 cd ${SRCDIR}
31
32 mconfigure \
33 --enable-shared \
34 --disable-debug \
35 --disable-warnings \
36 --disable-memleak \
37 --disable-tests-install \
38 --with-libxml2 \
39 --with-zlib \
40 --with-ssl=openssl \
41 --without-gssapi \
42 --without-pakchois \
43 || die
44
45 mmake || die
46 }