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/ruby-opengl: ruby-opengl-0.9.0.ebuild ChangeLog
Date: Wed, 26 Mar 2014 20:37:39
Message-Id: 20140326203729.788E72004E@flycatcher.gentoo.org
1 mrueg 14/03/26 20:37:29
2
3 Modified: ChangeLog
4 Added: ruby-opengl-0.9.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.67 dev-ruby/ruby-opengl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-opengl/ChangeLog?rev=1.67&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-opengl/ChangeLog?rev=1.67&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-opengl/ChangeLog?r1=1.66&r2=1.67
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-opengl/ChangeLog,v
20 retrieving revision 1.66
21 retrieving revision 1.67
22 diff -u -r1.66 -r1.67
23 --- ChangeLog 29 Dec 2013 09:48:57 -0000 1.66
24 +++ ChangeLog 26 Mar 2014 20:37:29 -0000 1.67
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ruby-opengl
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-opengl/ChangeLog,v 1.66 2013/12/29 09:48:57 graaff Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-opengl/ChangeLog,v 1.67 2014/03/26 20:37:29 mrueg Exp $
31 +
32 +*ruby-opengl-0.9.0 (26 Mar 2014)
33 +
34 + 26 Mar 2014; Manuel RĂ¼ger <mrueg@g.o> +ruby-opengl-0.9.0.ebuild:
35 + Version bump.
36
37 29 Dec 2013; Hans de Graaff <graaff@g.o>
38 -ruby-opengl-0.60.1-r2.ebuild:
39
40
41
42 1.1 dev-ruby/ruby-opengl/ruby-opengl-0.9.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-opengl/ruby-opengl-0.9.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-opengl/ruby-opengl-0.9.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ruby-opengl-0.9.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-opengl/ruby-opengl-0.9.0.ebuild,v 1.1 2014/03/26 20:37:29 mrueg Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19 ruby20"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57
58 # Two tests fails but the README already indicates that this may not
59 # work. Additionally these tests require access to video devices such as
60 # /dev/nvidiactl.
61 RUBY_FAKEGEM_TASK_TEST=""
62
63 RUBY_FAKEGEM_NAME="opengl"
64
65 RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
66
67 inherit multilib ruby-fakegem
68
69 DESCRIPTION="OpenGL / GLUT bindings for ruby"
70 HOMEPAGE="http://ruby-opengl.rubyforge.org/ https://github.com/larskanis/opengl"
71
72 LICENSE="MIT"
73 SLOT="0"
74 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
75
76 IUSE=""
77
78 DEPEND+=" virtual/opengl
79 media-libs/freeglut"
80 RDEPEND+=" virtual/opengl
81 media-libs/freeglut"
82
83 each_ruby_configure() {
84 ${RUBY} -Cext/opengl extconf.rb || die
85 }
86
87 each_ruby_compile() {
88 emake -C ext/opengl V=1
89
90 cp ext/*/*$(get_modname) lib/ || die
91 }
92
93 all_ruby_install() {
94 all_fakegem_install
95
96 insinto /usr/share/doc/${PF}/examples
97 doins -r examples/*
98 }