diff options
author | Hans de Graaff <graaff@gentoo.org> | 2016-05-04 07:06:59 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2016-05-04 07:23:27 +0200 |
commit | b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02 (patch) | |
tree | 86f48e65ba61dc0d76f387dd9cf62da8075bc750 /dev-ruby/ruby-termios | |
parent | dev-ruby/ruby-termios: mark ruby21 revision stable (diff) | |
download | gentoo-b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02.tar.gz gentoo-b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02.tar.bz2 gentoo-b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02.zip |
dev-ruby/ruby-termios: cleanup
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-ruby/ruby-termios')
-rw-r--r-- | dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild b/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild deleted file mode 100644 index 09157e298859..000000000000 --- a/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20" - -inherit multilib ruby-ng - -DESCRIPTION="A Ruby interface to termios" -HOMEPAGE="http://arika.org/ruby/termios" -SRC_URI="https://github.com/arika/ruby-termios/archive/version_${PV//./_}.tar.gz -> ${P}.tar.gz" -LICENSE="Ruby" -SLOT="0" -KEYWORDS="amd64 ~hppa ~mips ~ppc x86 ~x86-macos" -IUSE="" - -RUBY_S="${PN}-version_${PV//./_}" - -# Tests require a normal TTY, bug 340575. They should all pass when run -# manually. -RESTRICT=test - -each_ruby_configure() { - ${RUBY} -Cext extconf.rb || die -} - -each_ruby_compile() { - emake -Cext V=1 - cp ext/termios$(get_modname) lib/ || die -} - -each_ruby_test() { - ${RUBY} -Ilib test/test0.rb || die "tests failed" -} - -each_ruby_install() { - emake V=1 -Cext DESTDIR="${D}" install -} - -all_ruby_install() { - dodoc ChangeLog README termios.rd - - insinto /usr/share/doc/${PF}/examples - doins examples/* -} |