diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-04 21:08:28 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-04 21:08:28 +0000 |
commit | 4a482808155bdc7219472f7e0f33a137ce8efde2 (patch) | |
tree | cf80f4c72377f95e59a37b47329ef2f65758ddf4 /dev-db/sqliteodbc | |
parent | x86 stable, bug #314899 (diff) | |
download | gentoo-2-4a482808155bdc7219472f7e0f33a137ce8efde2.tar.gz gentoo-2-4a482808155bdc7219472f7e0f33a137ce8efde2.tar.bz2 gentoo-2-4a482808155bdc7219472f7e0f33a137ce8efde2.zip |
Delete older ebuild.
Diffstat (limited to 'dev-db/sqliteodbc')
-rw-r--r-- | dev-db/sqliteodbc/files/sqliteodbc-0.77-iodbc.patch | 11 | ||||
-rw-r--r-- | dev-db/sqliteodbc/sqliteodbc-0.79.ebuild | 41 |
2 files changed, 0 insertions, 52 deletions
diff --git a/dev-db/sqliteodbc/files/sqliteodbc-0.77-iodbc.patch b/dev-db/sqliteodbc/files/sqliteodbc-0.77-iodbc.patch deleted file mode 100644 index 4e33006be534..000000000000 --- a/dev-db/sqliteodbc/files/sqliteodbc-0.77-iodbc.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- sqliteodbc-0.77/configure.in.orig 2008-07-19 14:10:18.000000000 +0300 -+++ sqliteodbc-0.77/configure.in 2008-07-19 14:11:06.000000000 +0300 -@@ -273,7 +273,7 @@ - for i in $ODBC_DIR ; do - if test -r "$i/include/iodbc/sql.h" -o -r "$i/include/sql.h" ; then - if test -r "$i/include/iodbc/iodbcinst.h" ; then -- ODBC_FLAGS="-DHAVE_IODBC=1 -I$i/iodbc/include" -+ ODBC_FLAGS="-DHAVE_IODBC=1 -I$i/include/iodbc" - if test -r "$i/lib/libiodbcinst.la" ; then - ODBC_LIB="$i/lib/libiodbcinst.la" - else diff --git a/dev-db/sqliteodbc/sqliteodbc-0.79.ebuild b/dev-db/sqliteodbc/sqliteodbc-0.79.ebuild deleted file mode 100644 index 4180eb91e73d..000000000000 --- a/dev-db/sqliteodbc/sqliteodbc-0.79.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.79.ebuild,v 1.5 2009/09/07 22:23:26 arfrever Exp $ - -inherit eutils autotools - -DESCRIPTION="ODBC driver to access local SQLite database files." - -HOMEPAGE="http://www.ch-werner.de/sqliteodbc/" -SRC_URI="http://www.ch-werner.de/sqliteodbc/${P}.tar.gz" -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="sqlite static" - -DEPEND=" - >=dev-db/sqlite-2.8.16 - || ( - >=dev-db/unixODBC-2.2 - >=dev-db/libiodbc-3.5 - ) - sqlite? ( >=dev-db/sqlite-3.5 )" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-0.77-iodbc.patch" - eautoconf -} - -src_compile() { - econf $(use_enable static) - emake || die "could not compile" -} - -src_install() { - dodir /usr/$(get_libdir) - einstall || die "could not install" - dodoc README ChangeLog -} |