blob: be3b103a3b4775474e25ed4dba00a7c14166aee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby27 ruby30 ruby31 ruby32"
# Two tests fails but the README already indicates that this may not
# work. Additionally these tests require access to video devices such as
# /dev/nvidiactl.
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_NAME="opengl"
RUBY_FAKEGEM_EXTRADOC="History.md README.rdoc"
RUBY_FAKEGEM_EXTENSIONS=(ext/opengl/extconf.rb)
RUBY_FAKEGEM_EXTENSION_LIBDIR=(lib/opengl)
inherit ruby-fakegem
DESCRIPTION="OpenGL / GLUT bindings for ruby"
HOMEPAGE="https://github.com/larskanis/opengl"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc ppc64 x86"
IUSE=""
DEPEND+=" virtual/opengl
media-libs/freeglut"
RDEPEND+=" virtual/opengl
media-libs/freeglut"
all_ruby_install() {
all_fakegem_install
dodoc -r examples
}
|