diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-11-21 19:17:13 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-11-21 19:17:13 +0000 |
commit | c44f4e2f89b0c381ee98aad26fcab1afc31defd3 (patch) | |
tree | cec9e1562566c0292ea4bbaa081ebbb9cc72ae00 /dev-db/unixODBC | |
parent | version bump (diff) | |
download | historical-c44f4e2f89b0c381ee98aad26fcab1afc31defd3.tar.gz historical-c44f4e2f89b0c381ee98aad26fcab1afc31defd3.tar.bz2 historical-c44f4e2f89b0c381ee98aad26fcab1afc31defd3.zip |
removed older version
Diffstat (limited to 'dev-db/unixODBC')
-rw-r--r-- | dev-db/unixODBC/Manifest | 1 | ||||
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.0.6.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/dev-db/unixODBC/Manifest b/dev-db/unixODBC/Manifest index d16c8beedac1..ec1b7571c140 100644 --- a/dev-db/unixODBC/Manifest +++ b/dev-db/unixODBC/Manifest @@ -3,7 +3,6 @@ MD5 0bd88c25618464c75595f9e0e39195ff unixODBC-2.0.8.ebuild 1108 MD5 bce7742b423efcd78fb836b84c822c8a unixODBC-2.2.6.ebuild 952 MD5 b2e3dd45ad9c661f62edf96865878c7d ChangeLog 1858 MD5 059733ad92a101895ce18a1120b6eb55 metadata.xml 225 -MD5 34cbce459221e84e81fe21e09eed39ae unixODBC-2.0.6.ebuild 1426 MD5 ffd3cee4e2a1f6dffc130557ccda934b files/gentoo-yac.diff 316 MD5 f383c7806ba5f687ba55d5f1bc6a36aa files/digest-unixODBC-2.0.8 67 MD5 0f7614b93d6ede252ed2f7d7ff1aac90 files/digest-unixODBC-2.2.2 67 diff --git a/dev-db/unixODBC/unixODBC-2.0.6.ebuild b/dev-db/unixODBC/unixODBC-2.0.6.ebuild deleted file mode 100644 index 289fdff79006..000000000000 --- a/dev-db/unixODBC/unixODBC-2.0.6.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# 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.0.6.ebuild,v 1.20 2003/09/11 01:06:22 msterret Exp $ - -inherit gnuconfig - -DESCRIPTION="ODBC Interface for Linux" -HOMEPAGE="http://www.unixodbc.org/" -SRC_URI="http://www.unixodbc.org/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc hppa sparc alpha ~amd64" -IUSE="qt" - -DEPEND="virtual/glibc - >=sys-libs/readline-4.1 - >=sys-libs/ncurses-5.2 - qt? ( =x11-libs/qt-2.3* )" - -src_unpack() { - unpack ${A} - cd ${S} - cp Makefile.in Makefile.orig - sed -e "s:touch :touch \${DESTDIR}/:" Makefile.orig > Makefile.in - cp configure.in configure.orig - sed -e "s:AC_CHECK_LIB *( *c *,:AC_CHECK_FUNC(:" configure.orig >configure.in - cd gODBCConfig - libtoolize - aclocal - cd .. - libtoolize - aclocal - autoreconf-2.13 - - use amd64 && gnuconfig_update -} - -src_compile() { - local myconf - - 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 \ - ${myconf} || die - - make || die -} - -src_install() { - dodir /etc/unixODBC - make DESTDIR=${D} sysconfdir=${D}/etc/unixODBC install || die - rm -r ${D}/var - - dodoc AUTHORS COPYING ChangeLog NEWS README* - find doc/ -name "Makefile*" -exec rm '{}' \; - dohtml doc/* - prepalldocs -} |