blob: b21107ae36e4778089e137d48341259d1d3581cf (
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
40
41
42
43
44
45
46
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="OpenGL canvas and context provider for GTK+"
HOMEPAGE="https://www.mono-project.com/archived/gtkglarea/"
LICENSE="LGPL-2+ GPL-2+" # examples are GPL-2+, library is LGPL-2+
SLOT="2"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="examples"
RDEPEND="
>=x11-libs/gtk+-2.22:2
virtual/opengl
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
# Do not build examples
sed -e "s:\(SUBDIRS.*\)examples:\1:" \
-i Makefile.am Makefile.in || die "sed 1 failed"
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure --disable-static
}
src_install() {
DOCS="AUTHORS ChangeLog NEWS README* docs/*.txt"
gnome2_src_install
if use examples; then
cd "${S}"/examples
insinto /usr/share/doc/${PF}/examples
doins *.c *.h *.lwo README
fi
}
|