summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorVlastimil Babka <caster@gentoo.org>2009-11-10 19:57:09 +0000
committerVlastimil Babka <caster@gentoo.org>2009-11-10 19:57:09 +0000
commit024848279d99ce46d8e4075673d4cd2882275df5 (patch)
treec4d6cb96aea58850dc09b38bc66d6ab4b0cf8e5a /dev-db
parentChange net-fs/samba-client depend to net-fs/samba-client[-minimal] wrt #292599. (diff)
downloadgentoo-2-024848279d99ce46d8e4075673d4cd2882275df5.tar.gz
gentoo-2-024848279d99ce46d8e4075673d4cd2882275df5.tar.bz2
gentoo-2-024848279d99ce46d8e4075673d4cd2882275df5.zip
Remove old.
(Portage version: 2.2_rc48/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/octopus/ChangeLog5
-rw-r--r--dev-db/octopus/octopus-3.0.1-r1.ebuild81
2 files changed, 4 insertions, 82 deletions
diff --git a/dev-db/octopus/ChangeLog b/dev-db/octopus/ChangeLog
index b49d32b566ee..d5196c5ea964 100644
--- a/dev-db/octopus/ChangeLog
+++ b/dev-db/octopus/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/octopus
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/octopus/ChangeLog,v 1.16 2009/11/10 14:33:36 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/octopus/ChangeLog,v 1.17 2009/11/10 19:57:09 caster Exp $
+
+ 10 Nov 2009; Vlastimil Babka <caster@gentoo.org> -octopus-3.0.1-r1.ebuild:
+ Remove old.
10 Nov 2009; Markus Meier <maekke@gentoo.org> octopus-3.0.1-r2.ebuild:
x86 stable, bug #291465
diff --git a/dev-db/octopus/octopus-3.0.1-r1.ebuild b/dev-db/octopus/octopus-3.0.1-r1.ebuild
deleted file mode 100644
index cd6d26684801..000000000000
--- a/dev-db/octopus/octopus-3.0.1-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/octopus/octopus-3.0.1-r1.ebuild,v 1.9 2008/01/10 21:59:09 caster Exp $
-
-JAVA_PKG_IUSE="doc source"
-
-inherit versionator java-pkg-2 java-ant-2
-
-MY_PV=${PV//./-}
-MY_PV=${MY_PV/-/.}
-DESCRIPTION="A Java-based Extraction, Transformation, and Loading (ETL) tool."
-SRC_URI="http://download.forge.objectweb.org/${PN}/${PN}-${MY_PV}.src.tar.gz
- mirror://gentoo/${PN}-xmls-${PV}.tar.bz2"
-HOMEPAGE="http://octopus.objectweb.org"
-LICENSE="LGPL-2.1"
-SLOT="3.0"
-KEYWORDS="~amd64 x86"
-IUSE=""
-COMMON_DEP="
- >=dev-java/xerces-2.7
- >=dev-java/log4j-1.2.8
- =dev-java/rhino-1.6*
- =dev-java/junit-3.8*
- >=dev-java/ant-core-1.4"
-
-# Does not like org.w3c.dom.Node
-# from 1.5+
-RDEPEND=">=virtual/jre-1.4
- ${COMMON_DEP}"
-
-DEPEND="=virtual/jdk-1.4*
- ${COMMON_DEP}"
-
-TOPDIR="${PN}-$(get_version_component_range 1-2)"
-S=${WORKDIR}/${TOPDIR}/Octopus-src
-
-src_unpack() {
- unpack ${A}
- rm -fr ${TOPDIR}/maven
-
- mv xmls "${S}"/modules/Octopus
-
- cd "${S}"/modules
- cp "${FILESDIR}/${P}-gentoo-build.xml" build.xml
- java-ant_rewrite-classpath build.xml
- java-pkg_filter-compiler jikes
-}
-
-EANT_GENTOO_CLASSPATH="xerces-2,rhino-1.6,ant-core,junit,log4j"
-
-src_compile() {
- cd "${S}/modules"
-
- use source && antflags="${antflags} sourcezip-all"
-
- eant jar-all $(use_doc docs-all) ${antflags}
-}
-
-RESTRICT="test"
-
-# Would need maven to work properly as the build.xml just launches maven
-#src_test() {
-# eant test
-#}
-
-src_install() {
- dodoc ChangeLog.txt ReleaseNotes.txt
-
- cd "${S}/modules"
- java-pkg_dojar dist/*.jar
-
- if use source; then
- dodir /usr/share/doc/${PF}/source
- cp dist/*-src.zip "${D}usr/share/doc/${PF}/source"
- fi
- if use doc; then
- docinto html/api
- # Has multiple javadoc subdirs here
- java-pkg_dohtml -r docs/*
- fi
-}