diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2004-02-11 05:24:43 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2004-02-11 05:24:43 +0000 |
commit | ce4e01ea4e20cf6cd57a53035e00f6637953b069 (patch) | |
tree | 25d6c93bd7aed840aa429b0e8e8d9aeb781d00ca /dev-db | |
parent | added X autoconf patch from bug #35570 (Manifest recommit) (diff) | |
download | gentoo-2-ce4e01ea4e20cf6cd57a53035e00f6637953b069.tar.gz gentoo-2-ce4e01ea4e20cf6cd57a53035e00f6637953b069.tar.bz2 gentoo-2-ce4e01ea4e20cf6cd57a53035e00f6637953b069.zip |
tweaked gnome related USE var. Fixes #34916
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/unixODBC/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/dev-db/unixODBC/ChangeLog b/dev-db/unixODBC/ChangeLog index c9d5cb4e7452..0e4a571f3827 100644 --- a/dev-db/unixODBC/ChangeLog +++ b/dev-db/unixODBC/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/unixODBC # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.21 2004/02/11 05:18:55 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.22 2004/02/11 05:24:43 rphillips Exp $ + + 10 Feb 2004; root <root@gentoo.org> unixODBC-2.2.6-r1.ebuild: + changed USE var from gtk to gnome and tweaked dependency. Fixes #34916 *unixODBC-2.2.6-r1 (10 Feb 2004) diff --git a/dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild b/dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild index 6ea949529f3a..fe7f82471e5e 100644 --- a/dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild +++ b/dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild,v 1.1 2004/02/11 05:18:55 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.6-r1.ebuild,v 1.2 2004/02/11 05:24:43 rphillips Exp $ DESCRIPTION="ODBC Interface for Linux" HOMEPAGE="http://www.unixodbc.org/" @@ -9,11 +9,12 @@ SRC_URI="http://www.unixodbc.org/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~hppa ~alpha ~amd64 ~sparc" -IUSE="qt gtk" +IUSE="qt gnome" DEPEND="virtual/glibc >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 + gnome? ( gnome-base/gnome-libs ) qt? ( >=x11-libs/qt-3.0* )" # the configure.in patch is required for 'use qt' @@ -44,7 +45,7 @@ src_compile() { make || die - if [ "`use gtk`" ] + if [ "`use gnome`" ] then cd gODBCConfig ./configure --host=${CHOST} \ @@ -63,7 +64,7 @@ src_compile() { src_install() { make DESTDIR=${D} install || die - if [ "`use gtk`" ] + if [ "`use gnome`" ] then cd gODBCConfig make DESTDIR=${D} install || die |