summaryrefslogtreecommitdiff
path: root/package/neon
diff options
context:
space:
mode:
authorwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
committerwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
commit219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch)
treeb9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/neon
Initial import
Diffstat (limited to 'package/neon')
-rw-r--r--package/neon/Config.in31
-rw-r--r--package/neon/Makefile29
-rw-r--r--package/neon/ipkg/neon.control5
3 files changed, 65 insertions, 0 deletions
diff --git a/package/neon/Config.in b/package/neon/Config.in
new file mode 100644
index 000000000..70609f89f
--- /dev/null
+++ b/package/neon/Config.in
@@ -0,0 +1,31 @@
+config ADK_PACKAGE_NEON
+ prompt "neon.............................. an HTTP and WebDAV client library"
+ tristate
+ default n
+ select ADK_PACKAGE_LIBPTHREAD
+ select ADK_PACKAGE_LIBOPENSSL
+ select ADK_PACKAGE_LIBXML2
+ select ADK_PACKAGE_ZLIB
+ help
+ neon is an HTTP and WebDAV client library, with a C interface.
+
+ Featuring:
+
+ * High-level interface to HTTP and WebDAV methods (PUT, GET,
+ HEAD etc)
+ * Low-level interface to HTTP request handling, to allow
+ implementing new methods easily.
+ * persistent connections
+ * RFC2617 basic and digest authentication (including auth-int,
+ md5-sess)
+ * Proxy support (including basic/digest authentication)
+ * SSL/TLS support using OpenSSL (including client certificate
+ support)
+ * Generic WebDAV 207 XML response handling mechanism
+ * XML parsing using the expat or libxml parsers
+ * Easy generation of error messages from 207 error responses
+ * WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
+ * WebDAV metadata support: set and remove properties, query any
+ set of properties (PROPPATCH/PROPFIND).
+ * autoconf macros supplied for easily embedding neon directly
+ inside an application source tree.
diff --git a/package/neon/Makefile b/package/neon/Makefile
new file mode 100644
index 000000000..ffd9da574
--- /dev/null
+++ b/package/neon/Makefile
@@ -0,0 +1,29 @@
+# $Id$
+#-
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME= neon
+PKG_VERSION= 0.28.4
+PKG_RELEASE= 1
+PKG_MD5SUM= 6c3b94362af743d046e198e9fcbe4a85
+MASTER_SITES= http://webdav.org/neon/
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,NEON,neon,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+CONFIGURE_STYLE= gnu
+CONFIGURE_ARGS+= --with-ssl=openssl \
+ --without-gssapi \
+ --with-libxml2
+BUILD_STYLE= auto
+INSTALL_STYLE= auto confprog
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_NEON}/usr/lib
+ $(CP) ${WRKINST}/usr/lib/lib*.so.* ${IDIR_NEON}/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/neon/ipkg/neon.control b/package/neon/ipkg/neon.control
new file mode 100644
index 000000000..c23c17a53
--- /dev/null
+++ b/package/neon/ipkg/neon.control
@@ -0,0 +1,5 @@
+Package: neon
+Priority: optional
+Section: admin
+Depends: libpthread, libxml2, openssl, zlib
+Description: HTTP and WebDAV library