Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-termios: ChangeLog ruby-termios-0.9.6-r1.ebuild
Date: Mon, 05 Jul 2010 19:00:13
Message-Id: 20100705190011.D2E7C2CE14@corvid.gentoo.org
1 graaff 10/07/05 19:00:11
2
3 Modified: ChangeLog
4 Added: ruby-termios-0.9.6-r1.ebuild
5 Log:
6 Convert to ruby-ng.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 dev-ruby/ruby-termios/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-termios/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-termios/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-termios/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-termios/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 1 May 2010 00:49:01 -0000 1.23
23 +++ ChangeLog 5 Jul 2010 19:00:11 -0000 1.24
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/ruby-termios
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-termios/ChangeLog,v 1.23 2010/05/01 00:49:01 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-termios/ChangeLog,v 1.24 2010/07/05 19:00:11 graaff Exp $
29 +
30 +*ruby-termios-0.9.6-r1 (05 Jul 2010)
31 +
32 + 05 Jul 2010; Hans de Graaff <graaff@g.o>
33 + +ruby-termios-0.9.6-r1.ebuild:
34 + Convert to ruby-ng.
35
36 01 May 2010; Diego E. Pettenò <flameeyes@g.o>
37 ruby-termios-0.9.6.ebuild:
38
39
40
41 1.1 dev-ruby/ruby-termios/ruby-termios-0.9.6-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-termios/ruby-termios-0.9.6-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-termios/ruby-termios-0.9.6-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ruby-termios-0.9.6-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-termios/ruby-termios-0.9.6-r1.ebuild,v 1.1 2010/07/05 19:00:11 graaff Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18"
54
55 inherit ruby-ng
56
57 DESCRIPTION="A Ruby interface to termios"
58 HOMEPAGE="http://arika.org/ruby/termios" # trailing / isn't needed
59 SRC_URI="http://github.com/arika/ruby-termios/tarball/version_0_9_6 -> ${P}.tar.gz"
60 LICENSE="Ruby"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
63 IUSE="examples"
64
65 S="${WORKDIR}/arika-${PN}-94fd9ac"
66
67 each_ruby_configure() {
68 ${RUBY} extconf.rb || die
69 }
70
71 each_ruby_compile() {
72 emake || die
73 }
74
75 each_ruby_test() {
76 ${RUBY} test/test0.rb
77 }
78
79 each_ruby_install() {
80 emake DESTDIR="${D}" install || die
81 }
82
83 all_ruby_install() {
84 dodoc ChangeLog README termios.rd
85 use examples && docinto examples && dodoc examples/*
86 }