diff options
author | Michael Weber <xmw@gentoo.org> | 2012-05-05 11:12:24 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-05-05 11:12:24 +0000 |
commit | 52cbf2120337f66e2b67937eb870f954f53e9db4 (patch) | |
tree | 92230601535651af18093ef4dfc437e7959d991c /dev-db | |
parent | Add ~arm keyword, requested by Anton Romanov (bug 409433) (diff) | |
download | gentoo-2-52cbf2120337f66e2b67937eb870f954f53e9db4.tar.gz gentoo-2-52cbf2120337f66e2b67937eb870f954f53e9db4.tar.bz2 gentoo-2-52cbf2120337f66e2b67937eb870f954f53e9db4.zip |
Version bump
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/sqliteodbc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/sqliteodbc/sqliteodbc-0.94.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-db/sqliteodbc/ChangeLog b/dev-db/sqliteodbc/ChangeLog index db36aa901448..fef4af501a88 100644 --- a/dev-db/sqliteodbc/ChangeLog +++ b/dev-db/sqliteodbc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/sqliteodbc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.26 2012/05/05 11:10:37 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.27 2012/05/05 11:12:24 xmw Exp $ + +*sqliteodbc-0.94 (05 May 2012) + + 05 May 2012; Michael Weber <xmw@gentoo.org> +sqliteodbc-0.94.ebuild: + Version bump 05 May 2012; Michael Weber <xmw@gentoo.org> sqliteodbc-0.93.ebuild: Add ~arm keyword, requested by Anton Romanov (bug 409433) diff --git a/dev-db/sqliteodbc/sqliteodbc-0.94.ebuild b/dev-db/sqliteodbc/sqliteodbc-0.94.ebuild new file mode 100644 index 000000000000..bee023a97be1 --- /dev/null +++ b/dev-db/sqliteodbc/sqliteodbc-0.94.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.94.ebuild,v 1.1 2012/05/05 11:12:24 xmw Exp $ + +EAPI=4 + +inherit eutils 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 +} |