diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-06-20 18:19:32 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-06-20 18:19:32 +0000 |
commit | f85c5fbe48dace6ca26cc741d4188dbe64dfbaa1 (patch) | |
tree | 3e41e2a369086b1440243da68d7f13cf2b2f1e68 /dev-ruby/dbd-sqlite3 | |
parent | alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #317279 (diff) | |
download | gentoo-2-f85c5fbe48dace6ca26cc741d4188dbe64dfbaa1.tar.gz gentoo-2-f85c5fbe48dace6ca26cc741d4188dbe64dfbaa1.tar.bz2 gentoo-2-f85c5fbe48dace6ca26cc741d4188dbe64dfbaa1.zip |
Convert to ruby-ng.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/dbd-sqlite3')
-rw-r--r-- | dev-ruby/dbd-sqlite3/ChangeLog | 10 | ||||
-rw-r--r-- | dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5-r1.ebuild | 42 |
2 files changed, 50 insertions, 2 deletions
diff --git a/dev-ruby/dbd-sqlite3/ChangeLog b/dev-ruby/dbd-sqlite3/ChangeLog index 8ffade28fabb..154e3ce0fd0e 100644 --- a/dev-ruby/dbd-sqlite3/ChangeLog +++ b/dev-ruby/dbd-sqlite3/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/dbd-sqlite3 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite3/ChangeLog,v 1.4 2009/12/20 12:42:57 graaff Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite3/ChangeLog,v 1.5 2010/06/20 18:19:32 graaff Exp $ + +*dbd-sqlite3-1.2.5-r1 (20 Jun 2010) + + 20 Jun 2010; Hans de Graaff <graaff@gentoo.org> + +dbd-sqlite3-1.2.5-r1.ebuild: + Convert to ruby-ng. Drop ppc keyword: bug 324859. 20 Dec 2009; Hans de Graaff <graaff@gentoo.org> dbd-sqlite3-1.2.5.ebuild: Remove obsolete virtual/ruby dependency. diff --git a/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5-r1.ebuild b/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5-r1.ebuild new file mode 100644 index 000000000000..6d1103543546 --- /dev/null +++ b/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5-r1.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/dbd-sqlite3/dbd-sqlite3-1.2.5-r1.ebuild,v 1.1 2010/06/20 18:19:32 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18" + +inherit ruby-ng + +DESCRIPTION="The SQLite 3 database driver (DBD) for Ruby/DBI" +HOMEPAGE="http://ruby-dbi.rubyforge.org" +SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~sparc ~x86" +IUSE="test" + +ruby_add_rdepend " + >=dev-ruby/ruby-dbi-0.4.2 + >=dev-ruby/sqlite3-ruby-1.2.4" + +src_test() { + elog "The tests require additional configuration." + elog "You will find them in /usr/share/${PN}/test/" + elog "Be sure to read the file called DBD_TESTS." +} + +each_ruby_configure() { + ${RUBY} setup.rb config --prefix=/usr || die +} + +each_ruby_install() { + ${RUBY} setup.rb install --prefix="${D}" || die "setup.rb install failed" +} + +all_ruby_install() { + if use test; then + dodir /usr/share/${PN} + cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests" + fi +} |