diff options
author | Alex Legler <a3li@gentoo.org> | 2009-08-26 23:08:04 +0000 |
---|---|---|
committer | Alex Legler <a3li@gentoo.org> | 2009-08-26 23:08:04 +0000 |
commit | 30eb887c7505af6b99d5b763a07890eeee57776a (patch) | |
tree | dca7e6f672961d14c59f5082b96cb64269b16e01 /dev-ruby | |
parent | Initial import, ebuild by /me. (diff) | |
download | historical-30eb887c7505af6b99d5b763a07890eeee57776a.tar.gz historical-30eb887c7505af6b99d5b763a07890eeee57776a.tar.bz2 historical-30eb887c7505af6b99d5b763a07890eeee57776a.zip |
Initial commit, ebuild by /me.
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/dbd-sqlite3/ChangeLog | 10 | ||||
-rw-r--r-- | dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5.ebuild | 37 | ||||
-rw-r--r-- | dev-ruby/dbd-sqlite3/metadata.xml | 5 |
3 files changed, 52 insertions, 0 deletions
diff --git a/dev-ruby/dbd-sqlite3/ChangeLog b/dev-ruby/dbd-sqlite3/ChangeLog new file mode 100644 index 000000000000..3abfa8a28b05 --- /dev/null +++ b/dev-ruby/dbd-sqlite3/ChangeLog @@ -0,0 +1,10 @@ +# 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.1 2009/08/26 23:08:04 a3li Exp $ + +*dbd-sqlite3-1.2.5 (26 Aug 2009) + + 26 Aug 2009; Alex Legler <a3li@gentoo.org> +dbd-sqlite3-1.2.5.ebuild, + +metadata.xml: + Initial import, ebuild by /me. + diff --git a/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5.ebuild b/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5.ebuild new file mode 100644 index 000000000000..6e1181a52165 --- /dev/null +++ b/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2009 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.ebuild,v 1.1 2009/08/26 23:08:04 a3li Exp $ + +inherit "ruby" + +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 ~x86" +IUSE="test" + +DEPEND="virtual/ruby" +RDEPEND="${DEPEND} + >=dev-ruby/ruby-dbi-0.4.2 + >=dev-ruby/sqlite3-ruby-1.2.4" + +USE_RUBY="ruby18" + +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." +} + +src_install() { + ruby setup.rb install \ + --prefix="${D}" || die "setup.rb install failed" + + if use test; then + dodir /usr/share/${PN} + cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests" + fi +} diff --git a/dev-ruby/dbd-sqlite3/metadata.xml b/dev-ruby/dbd-sqlite3/metadata.xml new file mode 100644 index 000000000000..0040b1162894 --- /dev/null +++ b/dev-ruby/dbd-sqlite3/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>ruby</herd> +</pkgmetadata> |