diff options
author | 2011-11-06 10:25:30 +0000 | |
---|---|---|
committer | 2011-11-06 10:25:30 +0000 | |
commit | 3b12c297caa5da87f7097e5be7b21ca4f8473f21 (patch) | |
tree | f33263f6ea4e803d4315e5d4ec9c93220546294d /dev-ruby/ruby-oci8 | |
parent | Remove PHP from OSI-APPROVED and kilgard, MaxMind, and No-Problem-Bugroff fro... (diff) | |
download | gentoo-2-3b12c297caa5da87f7097e5be7b21ca4f8473f21.tar.gz gentoo-2-3b12c297caa5da87f7097e5be7b21ca4f8473f21.tar.bz2 gentoo-2-3b12c297caa5da87f7097e5be7b21ca4f8473f21.zip |
Version bump proxied for Troy Bowman in bug 388711.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/ruby-oci8')
-rw-r--r-- | dev-ruby/ruby-oci8/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ruby/ruby-oci8/ruby-oci8-2.0.6.ebuild | 42 |
2 files changed, 49 insertions, 2 deletions
diff --git a/dev-ruby/ruby-oci8/ChangeLog b/dev-ruby/ruby-oci8/ChangeLog index 6c1d07d935b4..6c4737ab1c4c 100644 --- a/dev-ruby/ruby-oci8/ChangeLog +++ b/dev-ruby/ruby-oci8/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/ruby-oci8 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v 1.18 2010/07/05 18:52:32 graaff Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v 1.19 2011/11/06 10:25:30 graaff Exp $ + +*ruby-oci8-2.0.6 (06 Nov 2011) + + 06 Nov 2011; Hans de Graaff <graaff@gentoo.org> +ruby-oci8-2.0.6.ebuild: + Version bump proxied for Troy Bowman in bug 388711. 05 Jul 2010; Hans de Graaff <graaff@gentoo.org> -ruby-oci8-1.0.3.ebuild, -ruby-oci8-1.0.7.ebuild: diff --git a/dev-ruby/ruby-oci8/ruby-oci8-2.0.6.ebuild b/dev-ruby/ruby-oci8/ruby-oci8-2.0.6.ebuild new file mode 100644 index 000000000000..12622a054c36 --- /dev/null +++ b/dev-ruby/ruby-oci8/ruby-oci8-2.0.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 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.1 2011/11/06 10:25:30 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}" +} |