Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-opengl/
Date: Sun, 30 Jul 2017 06:10:41
Message-Id: 1501394242.79efd8e1340d723ee5debd3e38ff51f7160a219f.graaff@gentoo
1 commit: 79efd8e1340d723ee5debd3e38ff51f7160a219f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 30 05:19:29 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 30 05:57:22 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79efd8e1
7
8 dev-ruby/ruby-opengl: cleanup
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-ruby/ruby-opengl/ruby-opengl-0.9.2-r1.ebuild | 49 ------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2-r1.ebuild b/dev-ruby/ruby-opengl/ruby-opengl-0.9.2-r1.ebuild
16 deleted file mode 100644
17 index 9ed9b04ec3f..00000000000
18 --- a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2-r1.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -USE_RUBY="ruby20 ruby21 ruby22 ruby23"
26 -
27 -RUBY_FAKEGEM_TASK_DOC=""
28 -
29 -# Two tests fails but the README already indicates that this may not
30 -# work. Additionally these tests require access to video devices such as
31 -# /dev/nvidiactl.
32 -RUBY_FAKEGEM_TASK_TEST=""
33 -
34 -RUBY_FAKEGEM_NAME="opengl"
35 -
36 -RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
37 -
38 -inherit multilib ruby-fakegem
39 -
40 -DESCRIPTION="OpenGL / GLUT bindings for ruby"
41 -HOMEPAGE="https://github.com/larskanis/opengl"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
46 -
47 -IUSE=""
48 -
49 -DEPEND+=" virtual/opengl
50 - media-libs/freeglut"
51 -RDEPEND+=" virtual/opengl
52 - media-libs/freeglut"
53 -
54 -each_ruby_configure() {
55 - ${RUBY} -Cext/opengl extconf.rb || die
56 -}
57 -
58 -each_ruby_compile() {
59 - emake -C ext/opengl V=1
60 -
61 - cp ext/*/*$(get_modname) lib/opengl/ || die
62 -}
63 -
64 -all_ruby_install() {
65 - all_fakegem_install
66 -
67 - insinto /usr/share/doc/${PF}/examples
68 - doins -r examples/*
69 -}