blob: 90133fbe5be01f76794cecf296900209f6627b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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.3 2003/09/06 22:25:50 msterret 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}
dodoc LICENSE.txt BUGS INSTALL NEWS README TODO
}
|