blob: cd0bb45311d727bcf1a357997c7eda98f95fd4c0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-odbc/ruby-odbc-0.9993.ebuild,v 1.4 2006/10/14 20:06:39 agriffis Exp $
inherit ruby
DESCRIPTION="RubyODBC - For accessing ODBC data sources from the Ruby language"
HOMEPAGE="http://www.ch-werner.de/rubyodbc/"
SRC_URI="http://www.ch-werner.de/rubyodbc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
USE_RUBY="ruby18"
IUSE=""
DEPEND="virtual/ruby
>=dev-db/unixODBC-2.0.6"
src_compile() {
ruby extconf.rb
emake
}
src_install() {
ruby_src_install
dodoc LICENSE README
}
|