diff options
author | 2006-11-17 23:23:41 +0000 | |
---|---|---|
committer | 2006-11-17 23:23:41 +0000 | |
commit | 2185f8c734520d72a1b015aa22c2f00751ff70e7 (patch) | |
tree | 42fec11466a41e06ead33c08d811615a81557848 /dev-db/unixODBC/unixODBC-2.2.6.ebuild | |
parent | Version bump; clean up (diff) | |
download | historical-2185f8c734520d72a1b015aa22c2f00751ff70e7.tar.gz historical-2185f8c734520d72a1b015aa22c2f00751ff70e7.tar.bz2 historical-2185f8c734520d72a1b015aa22c2f00751ff70e7.zip |
dropping gnome useflag for gnome-1.x removal
Package-Manager: portage-2.1.2_rc1-r7
Diffstat (limited to 'dev-db/unixODBC/unixODBC-2.2.6.ebuild')
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.2.6.ebuild | 35 |
1 files changed, 3 insertions, 32 deletions
diff --git a/dev-db/unixODBC/unixODBC-2.2.6.ebuild b/dev-db/unixODBC/unixODBC-2.2.6.ebuild index 08febb0fb03c..2d34a7d92026 100644 --- a/dev-db/unixODBC/unixODBC-2.2.6.ebuild +++ b/dev-db/unixODBC/unixODBC-2.2.6.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/unixODBC/unixODBC-2.2.6.ebuild,v 1.19 2006/06/24 15:08:38 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.6.ebuild,v 1.20 2006/11/17 23:23:41 compnerd Exp $ DESCRIPTION="ODBC Interface for Linux" HOMEPAGE="http://www.unixodbc.org/" @@ -9,13 +9,12 @@ SRC_URI="http://www.unixodbc.org/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc hppa alpha amd64 sparc ia64" -IUSE="qt3 gnome" +IUSE="qt3" DEPEND="virtual/libc >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 - qt3? ( =x11-libs/qt-3* ) - gnome? ( gnome-base/gnome-libs )" + qt3? ( =x11-libs/qt-3* )" src_compile() { local myconf @@ -33,39 +32,11 @@ src_compile() { ${myconf} || die make || die - - if use gnome - then - # Symlink for configure - ln -s ${S}/odbcinst/.libs ./lib - # Symlink for libtool - ln -s ${S}/odbcinst/.libs ./lib/.libs - cd gODBCConfig - ./configure --host=${CHOST} \ - --with-odbc=${S} \ - --prefix=/usr \ - --x-libraries=/usr/lib \ - --sysconfdir=/etc/unixODBC \ - || die - - # not sure why these symlinks are needed. busted configure, i guess... - ln -s ../depcomp . - ln -s ../libtool . - make || die - cd .. - fi } src_install() { make DESTDIR=${D} install || die - if use gnome - then - cd gODBCConfig - make DESTDIR=${D} install || die - cd .. - fi - dodoc AUTHORS COPYING ChangeLog NEWS README* find doc/ -name "Makefile*" -exec rm '{}' \; dohtml doc/* |