# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.2.4.ebuild,v 1.1 2008/09/23 19:03:12 graaff Exp $ inherit ruby DESCRIPTION="An extension library to access a SQLite database from Ruby" HOMEPAGE="http://rubyforge.org/projects/sqlite-ruby/" LICENSE="BSD" SRC_URI="mirror://rubyforge/sqlite-ruby/${P}.tar.bz2" KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" SLOT="0" IUSE="doc swig" USE_RUBY="ruby18 ruby19" RDEPEND="=dev-db/sqlite-3*" DEPEND="${RDEPEND} swig? ( dev-lang/swig )" pkg_setup() { if use swig && ! built_with_use dev-lang/swig ruby ; then eerror "You must compile swig with ruby bindings. Please add" eerror "'ruby' to your USE flags and recompile swig" die "swig needs ruby bindings" elif ! use swig ; then elog "${PN} will work a lot better with swig; it is suggested" elog "that you install swig with the 'ruby' USE flag, and then" elog "install ${PN} with the swig USE flag" ebeep epause 5 fi } src_compile() { myconf="" if ! use swig ; then myconf="--without-ext" fi ${RUBY} setup.rb config --prefix=/usr ${myconf} \ || die "setup.rb config failed" ${RUBY} setup.rb setup \ || die "setup.rb setup failed" } src_install() { ${RUBY} setup.rb install --prefix="${D}" \ || die "setup.rb install failed" dodoc README.rdoc CHANGELOG.rdoc dohtml doc/faq/faq.html if use doc ; then dohtml -r -V api fi }