diff options
author | Hans de Graaff <graaff@gentoo.org> | 2017-05-31 06:22:16 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2017-05-31 06:24:20 +0200 |
commit | 207a26e68f8f3c6c2931d8a24c76d674c1d49312 (patch) | |
tree | f3edefd9deaba3842a2b0cf955710d7bd576ff4a /dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r3.ebuild | |
parent | remove masked dev-ruby/ruby-inifile (diff) | |
download | gentoo-207a26e68f8f3c6c2931d8a24c76d674c1d49312.tar.gz gentoo-207a26e68f8f3c6c2931d8a24c76d674c1d49312.tar.bz2 gentoo-207a26e68f8f3c6c2931d8a24c76d674c1d49312.zip |
remove masked dev-ruby/ruby-tcpwrap
Diffstat (limited to 'dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r3.ebuild')
-rw-r--r-- | dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r3.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r3.ebuild b/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r3.ebuild deleted file mode 100644 index a03a32e26ebc..000000000000 --- a/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -# ruby22 -> Does not compile -USE_RUBY="ruby21" - -inherit ruby-ng - -DESCRIPTION="A TCP wrappers library for Ruby" -HOMEPAGE="http://raa.ruby-lang.org/list.rhtml?name=ruby-tcpwrap" -SRC_URI="http://shugo.net/archive/ruby-tcpwrap/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~hppa ~mips ~ppc x86" -IUSE="" - -DEPEND+=" net-libs/libident - sys-apps/tcp-wrappers" - -RDEPEND+=" net-libs/libident - sys-apps/tcp-wrappers" - -RUBY_S="${PN}" -RUBY_PATCHES=( "${P}-ruby19.patch" ) - -each_ruby_configure() { - ${RUBY} extconf.rb || die "extconf.rb failed" -} - -each_ruby_compile() { - # We have injected --no-undefined in Ruby as a safety precaution - # against broken ebuilds, but the Ruby-Gnome bindings - # unfortunately rely on the lazy load of other extensions; see bug - # #320545. - find . -name Makefile -print0 | xargs -0 \ - sed -i -e 's:-Wl,--no-undefined ::' || die "--no-undefined removal failed" - - emake V=1 -} - -each_ruby_install() { - emake DESTDIR="${D}" install V=1 -} - -all_ruby_install() { - dodoc README* - dohtml doc/* - - docinto sample - dodoc sample/* -} |