You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/ruby-oci8/ruby-oci8-2.0.6.ebuild

43 lines
1014 B

# Copyright 1999-2012 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.6.ebuild,v 1.3 2012/01/22 15:16:48 ago Exp $
EAPI="2"
USE_RUBY="ruby18"
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}"
}