diff options
author | Tom Wijsman <tomwij@gentoo.org> | 2013-08-16 21:44:02 +0000 |
---|---|---|
committer | Tom Wijsman <tomwij@gentoo.org> | 2013-08-16 21:44:02 +0000 |
commit | f17120c42b7742a575626864bd9133a4fc2d55f0 (patch) | |
tree | 64482dc653bb3f08a95997b93cca036d149bf082 /www-misc/litmus | |
parent | Version bump. (diff) | |
download | gentoo-2-f17120c42b7742a575626864bd9133a4fc2d55f0.tar.gz gentoo-2-f17120c42b7742a575626864bd9133a4fc2d55f0.tar.bz2 gentoo-2-f17120c42b7742a575626864bd9133a4fc2d55f0.zip |
New package for www-misc/litmus, WebDAV server protocol compliance test suite. Fixes bug #472878, proxied commit for Bertrand Jacquin (beber) who will be the primary maintainer.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'www-misc/litmus')
-rw-r--r-- | www-misc/litmus/ChangeLog | 11 | ||||
-rw-r--r-- | www-misc/litmus/litmus-0.13.ebuild | 52 | ||||
-rw-r--r-- | www-misc/litmus/metadata.xml | 16 |
3 files changed, 79 insertions, 0 deletions
diff --git a/www-misc/litmus/ChangeLog b/www-misc/litmus/ChangeLog new file mode 100644 index 000000000000..c2790991213d --- /dev/null +++ b/www-misc/litmus/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for www-misc/litmus +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-misc/litmus/ChangeLog,v 1.1 2013/08/16 21:44:02 tomwij Exp $ + +*litmus-0.13 (16 Aug 2013) + + 16 Aug 2013; Tom Wijsman <TomWij@gentoo.org> +litmus-0.13.ebuild, + +metadata.xml: + New package for www-misc/litmus, WebDAV server protocol compliance test suite. + Fixes bug #472878, proxied commit for Bertrand Jacquin (beber) who will be the + primary maintainer. diff --git a/www-misc/litmus/litmus-0.13.ebuild b/www-misc/litmus/litmus-0.13.ebuild new file mode 100644 index 000000000000..255f8015e272 --- /dev/null +++ b/www-misc/litmus/litmus-0.13.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-misc/litmus/litmus-0.13.ebuild,v 1.1 2013/08/16 21:44:02 tomwij Exp $ + +EAPI="5" + +# TODO: FAIL (connection refused by '...' port 80: Connection refused) +RESTRICT="test" + +DESCRIPTION="WebDAV server protocol compliance test suite" +HOMEPAGE="http://www.webdav.org/neon/litmus" +SRC_URI="http://www.webdav.org/neon/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="debug gnutls gssapi libproxy openssl pkcs11" + +REQUIRED_USE="openssl? ( !gnutls ) gnutls? ( !openssl )" + +neon_dep="<net-libs/neon-0.30:0/0" + +# First paragraph are required dependencies, second optional. +DEPEND=" + gnutls? ( ${neon_dep}[ssl,zlib] ) + openssl? ( ${neon_dep}[ssl,zlib] ) + !gnutls? ( !openssl? ( ${neon_dep}[zlib] ) ) + || ( dev-libs/expat:0 dev-libs/libxml2:2 ) + + gnutls? ( net-libs/gnutls:0 ) + gssapi? ( dev-perl/GSSAPI:0 ) + libproxy? ( net-libs/libproxy:0 ) + pkcs11? ( dev-libs/pakchois:0 ) + openssl? ( dev-libs/openssl:0 )" + +RDEPEND="${DEPEND}" + +DOCS=( ChangeLog FAQ NEWS README THANKS TODO ) + +src_configure() { + # TODO: No EGD in the Portage tree for --with-egd. + econf \ + $(use_with gnutls ssl gnutls) \ + $(use_with gssapi) \ + $(use_with libproxy) \ + $(use_with openssl ssl openssl) \ + $(use_with pkcs11 pakchois) \ + $(use_enable debug) \ + --with-neon \ + --without-included-neon +} diff --git a/www-misc/litmus/metadata.xml b/www-misc/litmus/metadata.xml new file mode 100644 index 000000000000..7313724a5e72 --- /dev/null +++ b/www-misc/litmus/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>beber@meleeweb.net</email> + <name>Bertrand Jacquin</name> + </maintainer> + <longdescription>WebDAV server protocol compliance test suite</longdescription> + <use> + <flag name="gssapi">Support for GSSAPI through <pkg>dev-perl/GSSAPI</pkg>.</flag> + <flag name="libproxy">Support for automatic proxy configuratino management through <pkg>net-libs/libproxy</pkg>.</flag> + <flag name="openssl">Support for SSL through OpenSSL (<pkg>dev-libs/openssl</pkg>).</flag> + <flag name="pkcs11">Support for PKCS #11 through PaKChoiS (<pkg>dev-libs/pakchois</pkg>).</flag> + </use> +</pkgmetadata> |