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/fastthread/fastthread-1.0.7-r2.ebuild

58 lines
1.4 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fastthread/fastthread-1.0.7-r2.ebuild,v 1.11 2013/12/26 18:55:51 maekke Exp $
EAPI=2
# This package really only does anything meaningful for ruby 1.8, but
# other packages may depend on it unconditionally so we add their
# targets as well and install a no-op file.
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_TASK_TEST="test"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG"
inherit ruby-fakegem multilib
DESCRIPTION="Optimized replacement for thread.rb primitives"
HOMEPAGE="http://gemcutter.org/gems/fastthread"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
ruby_add_bdepend "doc? ( >=dev-ruby/echoe-2.7.1 )"
all_ruby_prepare() {
sed -i -e 's|if Platform|if Echoe::Platform|' Rakefile || die
mkdir lib || die
}
each_ruby_configure() {
${RUBY} -Cext/fastthread extconf.rb || die
}
each_ruby_compile() {
case ${RUBY} in
*ruby18)
emake -Cext/fastthread
cp ext/fastthread/*$(get_modname) lib/ || die
;;
*)
touch lib/fastthread.rb || die
;;
esac
}
each_ruby_test() {
case ${RUBY} in
*ruby18)
${RUBY} -Ilib -S testrb test/test_*.rb || die
;;
esac
}