diff options
Diffstat (limited to 'dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild')
-rw-r--r-- | dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild b/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild new file mode 100644 index 000000000000..f3e791c2e0d7 --- /dev/null +++ b/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild,v 1.1 2010/02/10 21:07:45 graaff Exp $ + +EAPI="2" +USE_RUBY="ruby18 ruby19" + +inherit ruby-ng + +DESCRIPTION="A Ruby library for Oracle" +HOMEPAGE="http://rubyforge.org/projects/ruby-oci8/" +SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz" +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-db/oracle-instantclient-basic" +DEPEND="${RDEPEND}" + +each_ruby_configure() { + ${RUBY} setup.rb config --prefix="${D}/usr" || die "configure failed" +} + +each_ruby_compile() { + ${RUBY} setup.rb setup || die "compile failed" +} + +each_ruby_install() { + ${RUBY} setup.rb install || die "install failed" +} + +all_ruby_install() { + for i in NEWS README ChangeLog + do test -e $i && dodoc $i + done +} + +pkg_postinst() { + test -e "/usr/share/doc/${PF}/NEWS.bz2" && \ + elog "Please read /usr/share/doc/${PF}/NEWS.bz2 for major change information in ${P}" +} |