summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Scherbaum <dertobi123@gentoo.org>2006-12-29 02:36:01 +0000
committerTobias Scherbaum <dertobi123@gentoo.org>2006-12-29 02:36:01 +0000
commit5f41e61b31bd9ad565880a69b98aa9f94faa7220 (patch)
treef8b8cd5d1107f57b8cbbe0558290cac7ac2eda80 /dev-db/tora
parentAdded hotfix for security vulerability, addresses #153901 (diff)
downloadgentoo-2-5f41e61b31bd9ad565880a69b98aa9f94faa7220.tar.gz
gentoo-2-5f41e61b31bd9ad565880a69b98aa9f94faa7220.tar.bz2
gentoo-2-5f41e61b31bd9ad565880a69b98aa9f94faa7220.zip
Fix configure call, #159285
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'dev-db/tora')
-rw-r--r--dev-db/tora/ChangeLog6
-rw-r--r--dev-db/tora/tora-1.3.21-r1.ebuild16
2 files changed, 12 insertions, 10 deletions
diff --git a/dev-db/tora/ChangeLog b/dev-db/tora/ChangeLog
index 5a0ff2f42a50..a9278bfd32d5 100644
--- a/dev-db/tora/ChangeLog
+++ b/dev-db/tora/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/tora
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v 1.54 2006/12/26 18:45:09 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v 1.55 2006/12/29 02:36:01 dertobi123 Exp $
+
+ 29 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
+ tora-1.3.21-r1.ebuild:
+ Fix configure call, #159285
*tora-1.3.21-r1 (26 Dec 2006)
diff --git a/dev-db/tora/tora-1.3.21-r1.ebuild b/dev-db/tora/tora-1.3.21-r1.ebuild
index fa25a124ab18..5db7b44bac22 100644
--- a/dev-db/tora/tora-1.3.21-r1.ebuild
+++ b/dev-db/tora/tora-1.3.21-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.21-r1.ebuild,v 1.1 2006/12/26 18:45:09 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.21-r1.ebuild,v 1.2 2006/12/29 02:36:01 dertobi123 Exp $
inherit debug eutils kde-functions
@@ -57,16 +57,14 @@ src_compile() {
addwrite "${QTDIR}/etc/settings"
local myconf
- #myconf="--prefix=/usr"
- #myconf="$myconf --with-mono"
-
- use kde \
- && myconf="$myconf --with-kde" \
- || myconf="$myconf --without-kde"
- use oracle || myconf="$myconf --without-oracle"
- myconf="${myconf} $(use_with oci8-instant-client instant-client)"
+ myconf="${myconf} $(use_with kde)"
+ myconf="${myconf} $(use_with oracle)"
myconf="${myconf} $(use_with xinerama)"
+ if use oci8-instant-client; then
+ myconf="$myconf --with-instant-client"
+ fi
+
myconf="$myconf --with-qt-dir=/usr/qt/3"
#./configure $myconf || die "configure failed"