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/dbd-sqlite/dbd-sqlite-0.1.2.ebuild

37 lines
933 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite/dbd-sqlite-0.1.2.ebuild,v 1.8 2011/07/23 12:23:11 xarthisius Exp $
inherit "ruby"
DESCRIPTION="The SQLite 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 ppc ~sparc x86"
IUSE="test"
RDEPEND="
>=dev-ruby/ruby-dbi-0.4.2
dev-ruby/sqlite-ruby"
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
}