diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-07-30 07:51:50 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-07-30 07:51:50 +0000 |
commit | 1a9117689fd3e4f4fdae740f93e081fc0c169853 (patch) | |
tree | 8452973d1860df41869bc759aff600f7a2dab009 /dev-db/sqliteodbc/sqliteodbc-0.96.ebuild | |
parent | Removed old versions (diff) | |
download | gentoo-2-1a9117689fd3e4f4fdae740f93e081fc0c169853.tar.gz gentoo-2-1a9117689fd3e4f4fdae740f93e081fc0c169853.tar.bz2 gentoo-2-1a9117689fd3e4f4fdae740f93e081fc0c169853.zip |
Bump
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/sqliteodbc/sqliteodbc-0.96.ebuild')
-rw-r--r-- | dev-db/sqliteodbc/sqliteodbc-0.96.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild b/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild new file mode 100644 index 000000000000..240c5e4623d4 --- /dev/null +++ b/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild,v 1.1 2012/07/30 07:51:50 patrick Exp $ + +EAPI=4 + +inherit eutils multilib toolchain-funcs + +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 ~arm ~ppc ~x86" +IUSE="" + +DEPEND=">=dev-db/sqlite-3.6 + || ( + >=dev-db/unixODBC-2.2 + >=dev-db/libiodbc-3.5 + )" +RDEPEND="${DEPEND}" + +pkg_setup() { + tc-export CC +} + +src_prepare() { + epatch "${FILESDIR}/${PN}-0.93-respect_LDFLAGS.patch" +} + +src_configure() { + econf --disable-static +} + +src_install() { + dodir "/usr/$(get_libdir)" + einstall + find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" + dodoc ChangeLog README +} |