2011-01-14 15:21:26 +00:00
|
|
|
# Template file for 'neon'
|
|
|
|
pkgname=neon
|
2013-09-28 07:54:55 +00:00
|
|
|
version=0.30.0
|
|
|
|
revision=1
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2011-06-22 20:30:29 +00:00
|
|
|
configure_args="--with-expat --with-ssl=openssl --enable-shared
|
2012-12-17 14:14:55 +00:00
|
|
|
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt --disable-static"
|
2013-09-28 07:54:55 +00:00
|
|
|
hostmakedepends="pkg-config"
|
2013-04-14 02:36:19 +00:00
|
|
|
makedepends="expat-devel openssl-devel>=1.0.1 mit-krb5-devel libproxy-devel
|
|
|
|
ca-certificates"
|
2014-01-01 15:10:11 +00:00
|
|
|
depends="ca-certificates"
|
2011-01-14 15:21:26 +00:00
|
|
|
short_desc="HTTP and WebDAV client library, with a C interface"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-12-17 14:14:55 +00:00
|
|
|
homepage="http://www.webdav.org/neon/"
|
|
|
|
license="LGPL-2.1"
|
|
|
|
distfiles="http://www.webdav.org/neon/neon-$version.tar.gz"
|
2013-09-28 07:54:55 +00:00
|
|
|
checksum=2962cfcb5d30f3272e3d2fa0e473434419770a3801afe3d46e5d1650787990c2
|
2011-01-14 15:21:26 +00:00
|
|
|
long_desc="
|
|
|
|
Features:
|
|
|
|
|
|
|
|
* High-level wrappers for common HTTP and WebDAV operations
|
|
|
|
(GET, MOVE, DELETE, etc)
|
|
|
|
* Low-level interface to the HTTP request/response engine, allowing the use
|
|
|
|
of arbitrary HTTP methods, headers, etc.
|
|
|
|
* Authentication support including Basic and Digest support, along with
|
|
|
|
GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32
|
|
|
|
* SSL/TLS support using OpenSSL or GnuTLS; exposing an abstraction layer
|
|
|
|
for verifying server certificates, handling client certificates, and
|
|
|
|
examining certificate properties. Smartcard-based client certificates are
|
|
|
|
also supported via a PKCS#11 wrapper interface.
|
|
|
|
* Abstract interface to parsing XML using libxml2 or expat, and wrappers for
|
|
|
|
simplifying handling XML HTTP response bodies
|
|
|
|
* WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify
|
|
|
|
property manipulation."
|
2013-04-14 02:36:19 +00:00
|
|
|
|
|
|
|
neon-devel_package() {
|
2013-09-28 07:54:55 +00:00
|
|
|
depends="expat-devel openssl-devel neon>=${version}_${revision}"
|
|
|
|
short_desc+=" - development files"
|
2013-04-14 02:36:19 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/bin
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
vmove usr/share/doc
|
|
|
|
vmove usr/share/man
|
2013-09-28 07:54:55 +00:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-14 02:36:19 +00:00
|
|
|
}
|
|
|
|
}
|