diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-11-17 23:23:41 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-11-17 23:23:41 +0000 |
commit | 2185f8c734520d72a1b015aa22c2f00751ff70e7 (patch) | |
tree | 42fec11466a41e06ead33c08d811615a81557848 /dev-db/unixODBC/unixODBC-2.2.11-r1.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.11-r1.ebuild')
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.2.11-r1.ebuild | 34 |
1 files changed, 2 insertions, 32 deletions
diff --git a/dev-db/unixODBC/unixODBC-2.2.11-r1.ebuild b/dev-db/unixODBC/unixODBC-2.2.11-r1.ebuild index 26b1a1cc4993..6c1d0cdb0add 100644 --- a/dev-db/unixODBC/unixODBC-2.2.11-r1.ebuild +++ b/dev-db/unixODBC/unixODBC-2.2.11-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/unixODBC/unixODBC-2.2.11-r1.ebuild,v 1.14 2006/10/09 18:33:11 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.11-r1.ebuild,v 1.15 2006/11/17 23:23:41 compnerd Exp $ inherit eutils @@ -11,12 +11,11 @@ SRC_URI="http://www.unixodbc.org/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha ~amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="qt3 gnome" +IUSE="qt3" DEPEND="virtual/libc >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 - gnome? ( gnome-base/gnome-libs ) qt3? ( =x11-libs/qt-3* )" # the configure.in patch is required for 'use qt3' @@ -51,40 +50,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 \ - --libdir=/usr/$(get_libdir) \ - --sysconfdir=/etc/unixODBC \ - ${myconf} || 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 ChangeLog NEWS README* find doc/ -name "Makefile*" -exec rm '{}' \; dohtml doc/* |