--- /dev/null
+# ChangeLog for dev-java/xsom
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/xsom/ChangeLog,v 1.1 2007/05/01 19:22:03 nelchael Exp $
+
+*xsom-20060901 (01 May 2007)
+
+ 01 May 2007; Krzysiek Pawlik <nelchael@gentoo.org> +metadata.xml,
+ +xsom-20060901.ebuild:
+ Initial commit of xsom.
+
--- /dev/null
+MD5 21c926fac1a6b5b02fca9d1438f1656e xsom-src-20060901.tar.bz2 105215
+RMD160 cf319632eb8d052f7e06f8f8d0ec5bff3acc927a xsom-src-20060901.tar.bz2 105215
+SHA256 98e3cf0dce95f4ad21524461a50696544a4e60a07e0691202211b12271dd8aee xsom-src-20060901.tar.bz2 105215
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/xsom/xsom-20060901.ebuild,v 1.1 2007/05/01 19:22:03 nelchael Exp $
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="XML Schema Object Model (XSOM) is a Java library that allows applications to easily parse XML Schema documents and inspect information in them."
+HOMEPAGE="https://xsom.dev.java.net/"
+# Upstream does not have versioned source bundles :|
+SRC_URI="mirror://gentoo/xsom-src-${PV}.tar.bz2"
+
+LICENSE="CDDL"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+COMMON_DEP="
+ dev-java/relaxng-datatype
+ dev-java/relaxngcc"
+
+RDEPEND=">=virtual/jre-1.5
+ ${COMMON_DEP}"
+
+DEPEND=">=virtual/jdk-1.5
+ ${COMMON_DEP}"
+
+S="${WORKDIR}"
+
+src_unpack() {
+ unpack ${A}
+
+ cd "${S}/lib"
+ java-pkg_jarfrom relaxng-datatype
+ java-pkg_jarfrom relaxngcc
+
+ cd "${S}"
+ sed -i \
+ -e 's/target name="compile" depends="ngcc,javacc"/target name="compile"/g' \
+ -e 's/target name="jar" depends="clean,compile"/target name="jar" depends="compile"/g' \
+ build.xml || die "sed failed"
+
+}
+
+src_install() {
+ java-pkg_dojar build/xsom.jar
+
+ use doc && java-pkg_dojavadoc build/javadoc/*
+ use source && java-pkg_dosrc src/* build/src/*
+}