blob: 0a7a7b706e6e60ab946b73412721d2004567572a (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.2.4.ebuild,v 1.6 2008/12/05 09:50:06 armin76 Exp $
inherit ruby
DESCRIPTION="An extension library to access a SQLite database from Ruby"
HOMEPAGE="http://rubyforge.org/projects/sqlite-ruby/"
LICENSE="BSD"
SRC_URI="mirror://rubyforge/sqlite-ruby/${P}.tar.bz2"
KEYWORDS="amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
SLOT="0"
IUSE="doc swig"
USE_RUBY="ruby18 ruby19"
RDEPEND="=dev-db/sqlite-3*"
DEPEND="${RDEPEND}
swig? ( dev-lang/swig )"
pkg_setup() {
if use swig && ! built_with_use dev-lang/swig ruby ; then
eerror "You must compile swig with ruby bindings. Please add"
eerror "'ruby' to your USE flags and recompile swig"
die "swig needs ruby bindings"
elif ! use swig ; then
elog "${PN} will work a lot better with swig; it is suggested"
elog "that you install swig with the 'ruby' USE flag, and then"
elog "install ${PN} with the swig USE flag"
ebeep
epause 5
fi
}
src_compile() {
myconf=""
if ! use swig ; then
myconf="--without-ext"
fi
${RUBY} setup.rb config --prefix=/usr ${myconf} \
|| die "setup.rb config failed"
${RUBY} setup.rb setup \
|| die "setup.rb setup failed"
}
src_install() {
${RUBY} setup.rb install --prefix="${D}" \
|| die "setup.rb install failed"
dodoc README.rdoc CHANGELOG.rdoc
dohtml doc/faq/faq.html
if use doc ; then
dohtml -r -V api
fi
}
|