summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2007-07-12 22:25:17 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2007-07-12 22:25:17 +0000
commit592eda7266e0bbf5c4e921002215f411563f63b2 (patch)
tree599f69e06dac70c4a415ebf9850ffa832cd94716 /dev-db
parentPrefer virtual/jdk-1.5 over 1.4 and use JAVA_PKG_IUSE. (diff)
downloadgentoo-2-592eda7266e0bbf5c4e921002215f411563f63b2.tar.gz
gentoo-2-592eda7266e0bbf5c4e921002215f411563f63b2.tar.bz2
gentoo-2-592eda7266e0bbf5c4e921002215f411563f63b2.zip
Remove generation 1 ebuild.
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/octopus/ChangeLog5
-rw-r--r--dev-db/octopus/files/digest-octopus-3.0.16
-rw-r--r--dev-db/octopus/octopus-3.0.1.ebuild64
3 files changed, 4 insertions, 71 deletions
diff --git a/dev-db/octopus/ChangeLog b/dev-db/octopus/ChangeLog
index a0ed8db602b2..51da731f6290 100644
--- a/dev-db/octopus/ChangeLog
+++ b/dev-db/octopus/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/octopus
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/octopus/ChangeLog,v 1.9 2007/07/12 22:23:34 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/octopus/ChangeLog,v 1.10 2007/07/12 22:25:17 betelgeuse Exp $
+
+ 12 Jul 2007; Petteri Räty <betelgeuse@gentoo.org> -octopus-3.0.1.ebuild:
+ Remove generation 1 ebuild.
12 Jul 2007; Petteri Räty <betelgeuse@gentoo.org>
octopus-3.0.1-r1.ebuild:
diff --git a/dev-db/octopus/files/digest-octopus-3.0.1 b/dev-db/octopus/files/digest-octopus-3.0.1
deleted file mode 100644
index cd48e73b876a..000000000000
--- a/dev-db/octopus/files/digest-octopus-3.0.1
+++ /dev/null
@@ -1,6 +0,0 @@
-MD5 f10c24812c25006dedf71ee8e9c1a754 octopus-3.0-1.src.tar.gz 25968343
-RMD160 cb55e7fb574f522c4396bc83905dca9d8e94b983 octopus-3.0-1.src.tar.gz 25968343
-SHA256 9f37514f0540c64aba2163b4c4faa5d5327db6c7f1946fcbe7dc0a36a2097cac octopus-3.0-1.src.tar.gz 25968343
-MD5 68e08cccd4251b577b2becef5d64b26c octopus-xmls-3.0.1.tar.bz2 22492
-RMD160 c99466a70cf1d7ab17a69c606fad49fc3bdf8279 octopus-xmls-3.0.1.tar.bz2 22492
-SHA256 e92e32cfca1955e7de2cd6a02bdd9bf279b2cf9471bd0ba93a4e13532e4f4095 octopus-xmls-3.0.1.tar.bz2 22492
diff --git a/dev-db/octopus/octopus-3.0.1.ebuild b/dev-db/octopus/octopus-3.0.1.ebuild
deleted file mode 100644
index 8b9e7bae396c..000000000000
--- a/dev-db/octopus/octopus-3.0.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2006 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.ebuild,v 1.6 2006/12/27 23:16:19 betelgeuse Exp $
-
-inherit java-pkg
-
-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="doc jikes source"
-RDEPEND=">=virtual/jre-1.4
- >=dev-java/xerces-2.7
- >=dev-java/log4j-1.2.8
- =dev-java/rhino-1.6*
- >=dev-java/fop-0.20.5
- >=dev-db/hsqldb-1.7.2.4"
-DEPEND=">=virtual/jdk-1.4
- ${RDEPEND}
- jikes? ( >=dev-java/jikes-1.21 )
- source? ( app-arch/zip )
- >=dev-java/ant-core-1.4
- >=app-arch/unzip-5.50-r1"
-
-S=${WORKDIR}/${PN}-3.0/Octopus-src
-
-src_unpack() {
- unpack ${A}
-
- mv xmls ${S}/modules/Octopus
-
- cd ${S}/modules
- cp ${FILESDIR}/${P}-gentoo-build.xml build.xml
-}
-
-src_compile() {
- cd ${S}/modules
-
- local antflags="jar-all"
- use doc && antflags="${antflags} docs-all"
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- use source && antflags="${antflags} sourcezip-all"
- ant ${antflags} || die "failed to build"
-}
-
-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
- java-pkg_dohtml -r docs/*
- fi
-}