Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/uconv: uconv-0.6.1-r1.ebuild ChangeLog
Date: Fri, 04 Oct 2013 19:09:06
Message-Id: 20131004190902.02A982004C@flycatcher.gentoo.org
1 mrueg 13/10/04 19:09:01
2
3 Modified: ChangeLog
4 Added: uconv-0.6.1-r1.ebuild
5 Log:
6 Add ruby20 target.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.25 dev-ruby/uconv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/uconv/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 5 Sep 2013 12:35:00 -0000 1.24
24 +++ ChangeLog 4 Oct 2013 19:09:01 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/uconv
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uconv/ChangeLog,v 1.24 2013/09/05 12:35:00 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uconv/ChangeLog,v 1.25 2013/10/04 19:09:01 mrueg Exp $
30 +
31 +*uconv-0.6.1-r1 (04 Oct 2013)
32 +
33 + 04 Oct 2013; Manuel RĂ¼ger <mrueg@g.o> +uconv-0.6.1-r1.ebuild:
34 + Add ruby20 target.
35
36 05 Sep 2013; Agostino Sarubbo <ago@g.o> uconv-0.6.1.ebuild:
37 Stable for ppc64, wrt bug #480982
38
39
40
41 1.1 dev-ruby/uconv/uconv-0.6.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/uconv-0.6.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/uconv-0.6.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: uconv-0.6.1-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/uconv/uconv-0.6.1-r1.ebuild,v 1.1 2013/10/04 19:09:01 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20"
54
55 inherit ruby-ng
56
57 DESCRIPTION="A module to convert ISO/IEC 10646 (Unicode) string and Japanese strings"
58 HOMEPAGE="http://www.yoshidam.net/Ruby.html#uconv"
59 SRC_URI="http://www.yoshidam.net/${P}.tar.gz"
60 LICENSE="Ruby"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE=""
64
65 RUBY_S=${PN}
66
67 all_ruby_prepare() {
68 sed -i -e '/^\$CFLAGS = ""/d' extconf.rb || die "Unable to remove CFLAGS line"
69 }
70
71 each_ruby_configure() {
72 ${RUBY} extconf.rb || die
73 }
74
75 each_ruby_compile() {
76 emake V=1
77 }
78
79 each_ruby_install() {
80 emake V=1 DESTDIR="${D}" install
81 }
82
83 all_ruby_install() {
84 dodoc README*
85 }