diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-06-25 23:51:52 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-06-26 19:54:56 +0200 |
commit | 3bae7146b8521e4872e3d387343b7b8b4dcf1685 (patch) | |
tree | 5322e08baeb2a2df6cb94b8ebecc1a150c2b954d /dev-java/xmldb | |
parent | dev-java/xmldb: stable for amd64. mark stable for the remaining arches using ... (diff) | |
download | gentoo-3bae7146b8521e4872e3d387343b7b8b4dcf1685.tar.gz gentoo-3bae7146b8521e4872e3d387343b7b8b4dcf1685.tar.bz2 gentoo-3bae7146b8521e4872e3d387343b7b8b4dcf1685.zip |
dev-java/xmldb: clean up old.
Package-Manager: Portage-2.3.5, Repoman-2.3.1
Diffstat (limited to 'dev-java/xmldb')
-rw-r--r-- | dev-java/xmldb/xmldb-20011111-r1.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-java/xmldb/xmldb-20011111-r1.ebuild b/dev-java/xmldb/xmldb-20011111-r1.ebuild deleted file mode 100644 index 1fef14c0113a..000000000000 --- a/dev-java/xmldb/xmldb-20011111-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 eutils java-ant-2 - -MY_PN="${PN}-api" -MY_PV="11112001" -MY_P="${MY_PN}-${MY_PV}" -DESCRIPTION="Java implementation for specifications made by XML:DB" -HOMEPAGE="https://sourceforge.net/projects/xmldb-org/" -SRC_URI="mirror://sourceforge/xmldb-org/${MY_P}.tar.gz" - -LICENSE="Apache-1.1" -SLOT="0" -KEYWORDS="amd64 ~arm ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -# TODO please make compiling the junit tests optional -COMMON_DEP=" - >=dev-java/xerces-2.7 - >=dev-java/xalan-2.7 - =dev-java/junit-3.8*" -DEPEND=">=virtual/jdk-1.4 - ${COMMON_DEP}" -RDEPEND=">=virtual/jre-1.4 - ${COMMON_DEP}" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - rm -v *.jar || die - mkdir lib - - epatch "${FILESDIR}/${P}-unreachable.patch" - - mkdir src && mv org src - cp "${FILESDIR}/build-${PV}.xml" build.xml -} - -src_compile() { - # --with-dependencies because of indirectly referenced xml-commons-external - eant jar $(use_doc) \ - -Dclasspath=$(java-pkg_getjars --with-dependencies xerces-2,xalan,junit) -} - -src_install() { - java-pkg_dojar dist/*.jar - - use doc && java-pkg_dojavadoc dist/doc/api - use source && java-pkg_dosrc src/* -} |