blob: 719ee24a0eb60b9ca0c325ad6f8ca2a53568098a (
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
|
# Copyright 1999-2009 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.4.2.ebuild,v 1.4 2009/09/24 14:11:11 armin76 Exp $
inherit "ruby"
MY_P=${P##ruby-}
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/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~sparc ~x86"
IUSE="examples odbc postgres mysql sqlite sqlite3 test"
DEPEND="
virtual/ruby
dev-ruby/deprecated
test? ( dev-ruby/test-unit )"
RDEPEND="${DEPEND}"
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}"
USE_RUBY="ruby18 ruby19"
src_test() {
for rb in $USE_RUBY; do
[ -n "$(type -p ${rb})" ] || continue
ebegin "Testing for ${rb}"
${rb} setup.rb test || die "test failed"
eend $?
done
}
src_install() {
ruby setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
dodoc 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
}
|