diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-07-19 09:05:56 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-07-19 09:05:56 +0000 |
commit | d297fb08f8c9da86189763353c05dfb8cea0fbab (patch) | |
tree | d5df7bb16bad112baba671a28beafccfc9a240f4 /dev-ruby/ruby-xslt/ruby-xslt-0.9.7.ebuild | |
parent | Depend on openssl 0.9.8, wrt bug #328355 (diff) | |
download | historical-d297fb08f8c9da86189763353c05dfb8cea0fbab.tar.gz historical-d297fb08f8c9da86189763353c05dfb8cea0fbab.tar.bz2 historical-d297fb08f8c9da86189763353c05dfb8cea0fbab.zip |
Version bump.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/ruby-xslt/ruby-xslt-0.9.7.ebuild')
-rw-r--r-- | dev-ruby/ruby-xslt/ruby-xslt-0.9.7.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-ruby/ruby-xslt/ruby-xslt-0.9.7.ebuild b/dev-ruby/ruby-xslt/ruby-xslt-0.9.7.ebuild new file mode 100644 index 000000000000..9c42c7e1705d --- /dev/null +++ b/dev-ruby/ruby-xslt/ruby-xslt-0.9.7.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/ruby-xslt/ruby-xslt-0.9.7.ebuild,v 1.1 2010/07/19 09:05:56 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_EXTRADOC="ChangeLog AUTHORS README.rdoc" + +inherit multilib ruby-fakegem + +DESCRIPTION="A Ruby class for processing XSLT" +HOMEPAGE="http://www.rubyfr.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86" +IUSE="" + +DEPEND="${DEPEND} >=dev-libs/libxslt-1.1.12" +RDEPEND="${RDEPEND} >=dev-libs/libxslt-1.1.12" + +# One test fails but we have installed this code already for a long +# time so this probably isn't a regression. No upstream bug tracker to +# report the problem :-( +RESTRICT="test" + +each_ruby_configure() { + ${RUBY} -C ext/xslt_lib extconf.rb || die +} + +each_ruby_compile() { + emake -C ext/xslt_lib || die + mv ext/xslt_lib/xslt_lib$(get_modname) lib/xml/ || die +} + +each_ruby_test() { + ${RUBY} -I../lib -Ctest test.rb || die +} |