diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2005-05-10 15:29:27 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2005-05-10 15:29:27 +0000 |
commit | 0fa3c2fbd52d311fe2339429f9076f09a85ebeda (patch) | |
tree | 1e5939c853a46a58858816567dc68e5b5d2abdbc /dev-db | |
parent | Stable on sparc (diff) | |
download | gentoo-2-0fa3c2fbd52d311fe2339429f9076f09a85ebeda.tar.gz gentoo-2-0fa3c2fbd52d311fe2339429f9076f09a85ebeda.tar.bz2 gentoo-2-0fa3c2fbd52d311fe2339429f9076f09a85ebeda.zip |
removed Qt 2 support
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/unixODBC/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.0.8.ebuild | 17 |
2 files changed, 8 insertions, 14 deletions
diff --git a/dev-db/unixODBC/ChangeLog b/dev-db/unixODBC/ChangeLog index 5120492fbb32..46e6fd054e20 100644 --- a/dev-db/unixODBC/ChangeLog +++ b/dev-db/unixODBC/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/unixODBC # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.38 2005/04/08 08:37:01 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.39 2005/05/10 15:29:27 carlo Exp $ + + 10 May 2005; Carsten Lohrke <carlo@gentoo.org> unixODBC-2.0.8.ebuild: + removed Qt 2 support 08 Apr 2005; Spider <spider@gentoo.org> unixODBC-2.2.6.ebuild: Ugh, Dumb fix. Commited from the wrong overlay :( diff --git a/dev-db/unixODBC/unixODBC-2.0.8.ebuild b/dev-db/unixODBC/unixODBC-2.0.8.ebuild index 19bdd1035303..754b0db13e86 100644 --- a/dev-db/unixODBC/unixODBC-2.0.8.ebuild +++ b/dev-db/unixODBC/unixODBC-2.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.0.8.ebuild,v 1.22 2005/01/01 17:44:35 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.0.8.ebuild,v 1.23 2005/05/10 15:29:27 carlo Exp $ DESCRIPTION="ODBC Interface for Linux" HOMEPAGE="http://www.unixodbc.org/" @@ -9,12 +9,11 @@ SRC_URI="http://www.unixodbc.org/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~hppa ~alpha" -IUSE="qt" +IUSE="" DEPEND="virtual/libc >=sys-libs/readline-4.1 - >=sys-libs/ncurses-5.2 - qt? ( =x11-libs/qt-2.3* )" + >=sys-libs/ncurses-5.2" src_unpack() { unpack ${A} @@ -24,16 +23,8 @@ src_unpack() { } src_compile() { - local myconf + local myconf="--enable-gui=no" - if use qt - then - myconf="--enable-gui=yes" - else - myconf="--enable-gui=no" - fi - - export QTDIR=/usr/qt/2 ./configure --host=${CHOST} \ --prefix=/usr \ --sysconfdir=/etc/unixODBC \ |