81 lines
2 KiB
Bash
81 lines
2 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
USE_RUBY="ruby20 ruby21 ruby22"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
RUBY_FAKEGEM_TASK_TEST=""
|
|
|
|
RUBY_FAKEGEM_EXTRAINSTALL="data"
|
|
|
|
inherit java-pkg-2 ruby-ng ruby-fakegem
|
|
|
|
DESCRIPTION="Rjb is a Ruby-Java software bridge"
|
|
HOMEPAGE="https://github.com/arton/rjb"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="examples hardened"
|
|
|
|
DEPEND=">=virtual/jdk-1.5
|
|
hardened? ( sys-apps/paxctl )"
|
|
RDEPEND="virtual/jre"
|
|
|
|
pkg_setup() {
|
|
ruby-ng_pkg_setup
|
|
java-pkg-2_pkg_setup
|
|
}
|
|
|
|
all_ruby_prepare() {
|
|
# The console is not available for testing.
|
|
sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
|
|
|
|
# Avoid encoding tests since not all locales may be available.
|
|
sed -i -e '/test_kjconv/,/^ end/ s:^:#:' test/test.rb || die
|
|
}
|
|
|
|
each_ruby_prepare() {
|
|
#dev-lang/ruby might need the "hardened" flag to enforce the following:
|
|
if use hardened; then
|
|
paxctl -v /usr/bin/ruby 2>/dev/null | grep MPROTECT | grep disabled || ewarn '!!! rjb will only work if ruby is MPROTECT disabled\n please disable it if required using paxctl -m /usr/bin/ruby'
|
|
fi
|
|
# force compilation of class file for our JVM
|
|
rm -rf data
|
|
}
|
|
|
|
each_ruby_configure() {
|
|
${RUBY} -C ext extconf.rb || die "extconf.rb failed"
|
|
}
|
|
|
|
each_ruby_compile() {
|
|
emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}"
|
|
}
|
|
|
|
each_ruby_install() {
|
|
each_fakegem_install
|
|
|
|
# currently no elegant way to do this (bug #352765)
|
|
ruby_fakegem_newins ext/rjbcore.so lib/rjbcore.so
|
|
|
|
if use examples; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r samples
|
|
fi
|
|
}
|
|
|
|
each_ruby_test() {
|
|
if use hardened; then
|
|
paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
|
|
if [ $? = 0 ]; then
|
|
${RUBY} -C test -I../lib:.:../ext test.rb || die
|
|
else
|
|
ewarn "${RUBY} has MPROTECT enabled, rjb will not work until it is disabled, skipping tests."
|
|
fi
|
|
else
|
|
${RUBY} -C test -I../lib:.:../ext test.rb || die
|
|
fi
|
|
}
|