--- /dev/null
+# 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'
+}