blob: 504d36f0afa5984eb1c377264ec60a4412700178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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.3 2009/01/09 17:12:39 ranger 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="sqlite3 static"
DEPEND="
>=dev-db/sqlite-2.8.16
|| (
>=dev-db/unixODBC-2.2
>=dev-db/libiodbc-3.5
)
sqlite3? ( >=dev-db/sqlite-3.5 )"
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/lib
einstall || die "could not install"
dodoc README ChangeLog
}
|