summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-12-10 07:31:20 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-12-10 07:31:20 +0000
commit8042346ecd6732c657a374d9a9cce18b8e1a38c1 (patch)
tree5614cc8ffd5aab458c445d6b2b87ee7da1e3ebb9 /dev-db/tora
parentkeywords blah (diff)
downloadgentoo-2-8042346ecd6732c657a374d9a9cce18b8e1a38c1.tar.gz
gentoo-2-8042346ecd6732c657a374d9a9cce18b8e1a38c1.tar.bz2
gentoo-2-8042346ecd6732c657a374d9a9cce18b8e1a38c1.zip
keywords blah
Diffstat (limited to 'dev-db/tora')
-rw-r--r--dev-db/tora/Manifest2
-rw-r--r--dev-db/tora/files/digest-tora-1.3.11-r21
-rw-r--r--dev-db/tora/tora-1.3.11-r2.ebuild56
3 files changed, 2 insertions, 57 deletions
diff --git a/dev-db/tora/Manifest b/dev-db/tora/Manifest
index 2d665d9095a5..4e8ea17d6caf 100644
--- a/dev-db/tora/Manifest
+++ b/dev-db/tora/Manifest
@@ -1,6 +1,8 @@
+MD5 dfe5ee70936d7c075a8f2f765a951f36 tora-1.3.11-r2.ebuild 1452
MD5 b57d4b199d428af9f22aa328e1b7be81 tora-1.3.12.ebuild 1325
MD5 53010cf88b5b626651dac3df85960a04 ChangeLog 3102
MD5 bda8803c4adc9cf0b308b71157891f05 metadata.xml 536
MD5 0cb18bcf00a1bd7ccb4010bba81619ed files/tora-index-segfault.patch 619
MD5 84d2b43252820fa856e99a318c853da8 files/tora-clipboard.patch 2146
MD5 74ad78009cd80393e43affc569ee96da files/digest-tora-1.3.12 70
+MD5 6d41a4b9f78eb3b0b95c97281917205d files/digest-tora-1.3.11-r2 70
diff --git a/dev-db/tora/files/digest-tora-1.3.11-r2 b/dev-db/tora/files/digest-tora-1.3.11-r2
deleted file mode 100644
index d176267843c8..000000000000
--- a/dev-db/tora/files/digest-tora-1.3.11-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e056c5c84db1da8bccd7688a0aef9317 tora-alpha-1.3.11.tar.gz 2405314
diff --git a/dev-db/tora/tora-1.3.11-r2.ebuild b/dev-db/tora/tora-1.3.11-r2.ebuild
deleted file mode 100644
index b6d6d1fa6b44..000000000000
--- a/dev-db/tora/tora-1.3.11-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.11-r2.ebuild,v 1.5 2003/11/11 20:51:43 rizzo Exp $
-
-IUSE="kde oci8"
-DESCRIPTION="TOra - Toolkit For Oracle"
-HOMEPAGE="http://www.globecom.se/tora/"
-SRC_URI="mirror://sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-
-DEPEND=">=x11-libs/qt-3.0.0
- dev-lang/perl
- kde? ( >=kde-base/kdebase-3.1 )"
-
-pkg_setup() {
- if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then
- ewarn "ORACLE_HOME variable is not set."
- ewarn ""
- ewarn "You must install Oracle >= 8i client for Linux in"
- ewarn "order to compile TOra with Oracle support."
- ewarn ""
- ewarn "Otherwise specify -oci8 in your USE variable."
- ewarn ""
- ewarn "You can download the Oracle software from"
- ewarn "http://otn.oracle.com/software/content.html"
- die
- fi
-}
-
-src_unpack() {
- unpack ${PN}-alpha-${PV}.tar.gz
- cd ${P}
- epatch ${FILESDIR}/tora-index-segfault.patch
- epatch ${FILESDIR}/tora-clipboard.patch
-}
-
-src_compile() {
- local myconf
-
- use kde \
- && myconf="$myconf --with-kde" \
- || myconf="$myconf --without-kde"
- use oci8 || myconf="$myconf --without-oracle"
-
- ./configure --prefix=/usr --with-mono $myconf || die "conf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- dodir ${D}/usr/bin
- einstall ROOT=${D}
- dodoc LICENSE.txt BUGS INSTALL NEWS README TODO
-}