diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2003-08-11 07:10:03 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2003-08-11 07:10:03 +0000 |
commit | 3260d4bd3f9aefa314f68b98dfa7268db4d3cb4d (patch) | |
tree | 915ffaa1fddf7bd38c4d1e68fadd315e4c065899 /dev-db | |
parent | version bump (diff) | |
download | historical-3260d4bd3f9aefa314f68b98dfa7268db4d3cb4d.tar.gz historical-3260d4bd3f9aefa314f68b98dfa7268db4d3cb4d.tar.bz2 historical-3260d4bd3f9aefa314f68b98dfa7268db4d3cb4d.zip |
version bump
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/tora/Manifest | 2 | ||||
-rw-r--r-- | dev-db/tora/files/digest-tora-1.3.11 | 1 | ||||
-rw-r--r-- | dev-db/tora/tora-1.3.11.ebuild | 47 |
3 files changed, 49 insertions, 1 deletions
diff --git a/dev-db/tora/Manifest b/dev-db/tora/Manifest index fdd0af61a451..5b5d3fc5340e 100644 --- a/dev-db/tora/Manifest +++ b/dev-db/tora/Manifest @@ -1,4 +1,4 @@ -MD5 774b6c7f3e913fafbd06035f2c5cbc27 tora-1.3.11.ebuild 1245 +MD5 8419022a25ffe64dc4d8f9a3df4a72bf tora-1.3.11.ebuild 1247 MD5 f03fff2b63ddd77a03f5e3b3c756af27 tora-1.3.8.ebuild 1574 MD5 774b6c7f3e913fafbd06035f2c5cbc27 tora-1.3.10.ebuild 1245 MD5 6df9df1a4a6aaf82cd39239ee161738c tora-1.3.9.2.ebuild 1249 diff --git a/dev-db/tora/files/digest-tora-1.3.11 b/dev-db/tora/files/digest-tora-1.3.11 new file mode 100644 index 000000000000..d176267843c8 --- /dev/null +++ b/dev-db/tora/files/digest-tora-1.3.11 @@ -0,0 +1 @@ +MD5 e056c5c84db1da8bccd7688a0aef9317 tora-alpha-1.3.11.tar.gz 2405314 diff --git a/dev-db/tora/tora-1.3.11.ebuild b/dev-db/tora/tora-1.3.11.ebuild new file mode 100644 index 000000000000..3798114d83d8 --- /dev/null +++ b/dev-db/tora/tora-1.3.11.ebuild @@ -0,0 +1,47 @@ +# 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.ebuild,v 1.1 2003/08/11 07:09:55 phosphan Exp $ + +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 + einfo "ORACLE_HOME variable is not set." + einfo "" + einfo "You must install Oracle >= 8i client for Linux in" + einfo "order to compile TOra with Oracle support." + einfo "" + einfo "Otherwise specify -oci8 in your USE variable." + einfo "" + einfo "You can download the Oracle software from" + einfo "http://otn.oracle.com/software/content.html" + die + fi +} + +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} +} |