Files
gentoo/dev-ruby/ruby-shadow/ruby-shadow-2.5.0.ebuild
Robin H. Johnson 61b861acd7 Drop $Id$ per council decision in bug #611234.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2017-02-28 11:50:50 -08:00

32 lines
688 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
USE_RUBY="ruby20 ruby21 ruby22 ruby23"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="HISTORY README README.euc"
inherit multilib ruby-fakegem
DESCRIPTION="ruby shadow bindings"
HOMEPAGE="https://github.com/apalmblad/ruby-shadow http://ttsky.net"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="amd64 hppa ppc ~sparc x86"
IUSE=""
each_ruby_configure() {
${RUBY} extconf.rb || die "Configuration failed."
sed -i -e "/^ldflags =/s/$/ \$(LDFLAGS)/" Makefile || die
}
each_ruby_compile() {
emake V=1
mkdir -p lib
cp shadow$(get_modname) lib/ || die
}