summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2016-04-22 07:03:22 +0200
committerHans de Graaff <graaff@gentoo.org>2016-04-22 07:07:10 +0200
commit554cb4ea888f2159e214a902cd8dd143b0f5e9e0 (patch)
treea2c83fc3193750c7c7f9248142e39e2893a5d56a /dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild
parentdev-ruby/ruby-tcpwrap: mark ruby21 revision stable (diff)
downloadgentoo-554cb4ea888f2159e214a902cd8dd143b0f5e9e0.tar.gz
gentoo-554cb4ea888f2159e214a902cd8dd143b0f5e9e0.tar.bz2
gentoo-554cb4ea888f2159e214a902cd8dd143b0f5e9e0.zip
dev-ruby/ruby-tcpwrap: cleanup
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild')
-rw-r--r--dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild b/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild
deleted file mode 100644
index f88fc6fbc6fb..000000000000
--- a/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# ruby22 -> Does not compile
-USE_RUBY="ruby19 ruby20"
-
-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/*
-}