From: Michael Orlitzky Date: Mon, 6 Jan 2014 13:24:32 +0000 (-0500) Subject: Add app-text/XML-Schema-learner (doesn't work yet). X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mjo-overlay.git;a=commitdiff_plain;h=2adbf0b3a05c145b91efdb15c6e5c1c1f8eca821 Add app-text/XML-Schema-learner (doesn't work yet). --- diff --git a/app-text/XML-Schema-learner/XML-Schema-learner-9999.ebuild b/app-text/XML-Schema-learner/XML-Schema-learner-9999.ebuild new file mode 100644 index 0000000..4313850 --- /dev/null +++ b/app-text/XML-Schema-learner/XML-Schema-learner-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +DESCRIPTION="Algorithmic inferencing of XML schema definitions and DTDs" +# See also: +# http://kore-nordmann.de/blog/0104_generating_xml_schemas_from_xml.html +HOMEPAGE="https://github.com/kore/XML-Schema-learner" +SRC_URI="" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND="test? ( dev-php/phpunit )" +RDEPEND="dev-lang/php[cli,xml,xmlreader]" + +src_test { + cd "${S}" + phpunit tests/suite.php || die 'test suite (suite.php) failed' +}