blob: df5eb2526f1a486df8654de4093c607bd207706a (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-dbi/ruby-dbi-0.2.0.ebuild,v 1.1 2008/03/16 21:18:31 rbrown Exp $
EAPI="1"
inherit "ruby"
DESCRIPTION="Ruby/DBI - a database independent interface for accessing databases - similar to Perl's DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="http://rubyforge.org/frs/download.php/33959/dbi-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="examples firebird odbc postgres mysql sqlite sqlite3"
DEPEND="virtual/ruby
mysql? ( dev-ruby/mysql-ruby )
postgres? ( dev-ruby/ruby-postgres )
firebird? ( >=dev-db/firebird-1.0-r1 )
odbc? ( dev-ruby/ruby-odbc )
sqlite? ( dev-db/sqlite:0 )
sqlite3? ( dev-db/sqlite:3 )"
S="${WORKDIR}/dbi-${PV}"
PATCHES="${FILESDIR}/ruby-dbi-destdir-gentoo.diff
${FILESDIR}/ruby-dbi-0.1.1-destdir-gentoo.diff"
src_compile() {
myconf="dbi,dbd_proxy,dbd_sqlrelay"
use mysql && myconf="${myconf},dbd_mysql"
use postgres && myconf="${myconf},dbd_pg"
use firebird && myconf="${myconf},dbd_interbase"
use odbc && myconf="${myconf},dbd_odbc"
use sqlite && myconf="${myconf},dbd_sqlite"
use sqlite3 && myconf="${myconf},dbd_sqlite3"
ruby setup.rb config \
--with=${myconf} --ruby-path=/usr/bin/ruby || die
ruby setup.rb setup || die
}
src_install() {
DESTDIR=${D} ruby setup.rb install || die
dodoc README
if use examples; then
cp -pPR examples "${D}/usr/share/doc/${PF}" || die "cp examples failed"
fi
}
|