blob: 8e5a5cfe55f7ed7abe65b755b5c2e5c42cfae75f (
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
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbi/dbi-0.4.3.ebuild,v 1.3 2012/09/09 08:23:03 graaff Exp $
EAPI=4
USE_RUBY="ruby18"
inherit ruby-ng
DESCRIPTION="Ruby/DBI - a database independent interface for accessing databases - similar to Perl's DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="examples odbc postgres mysql sqlite sqlite3 test"
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
ruby_add_rdepend "dev-ruby/deprecated:2"
PDEPEND="
mysql? ( dev-ruby/dbd-mysql )
postgres? ( dev-ruby/dbd-pg )
odbc? ( dev-ruby/dbd-odbc )
sqlite? ( dev-ruby/dbd-sqlite )
sqlite3? ( dev-ruby/dbd-sqlite3 )"
S="${WORKDIR}/${MY_P}"
all_ruby_prepare() {
sed -i -e '/test_available_drivers/,/^ end/ s:^:#:' test/dbi/tc_dbi.rb || die
sed -i -e "s/gem 'deprecated'/gem 'deprecated', '~>2.0'/" lib/dbi/columninfo.rb lib/dbi.rb || die
}
each_ruby_configure() {
${RUBY} setup.rb config --prefix=/usr
}
each_ruby_test() {
${RUBY} test/ts_dbi.rb || die "Tests failed."
}
each_ruby_install() {
${RUBY} setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
}
all_ruby_install() {
dodoc ChangeLog README
if use examples ; then
cp -pPR examples "${D}/usr/share/doc/${PF}" || die "cp examples failed"
fi
}
pkg_postinst() {
if ! (use mysql || use postgres || use odbc || use sqlite || use sqlite3)
then
elog "${P} now comes with external database drivers."
elog "Be sure to set the right USE flags for ${PN} or emerge the drivers manually:"
elog "They are called dev-ruby/dbd-{mysql,odbc,pg,sqlite,sqlite3}"
fi
}
|