blob: 4c1df0f0229c8a66c7664e2a0d9064cca51eac8d (
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
47
48
49
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglext/gtkglext-1.0.4.ebuild,v 1.6 2004/08/08 00:52:07 slarti Exp $
inherit gnome2
IUSE="doc"
DESCRIPTION="GL extensions for Gtk+ 2.0"
HOMEPAGE="http://gtkglext.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ~sparc alpha"
RDEPEND=">=dev-libs/glib-2
>=x11-libs/gtk+-2
>=x11-libs/pango-1
virtual/glu
virtual/opengl"
DEPEND="${RDEPEND}
doc? ( >=dev-util/gtk-doc-0.10 )
dev-util/pkgconfig"
DOCS="AUTHORS COPYING* ChangeLog* INSTALL NEWS README* TODO"
# gtkglext doesn't build with some (faulty) nvidia drivers headers
# this makes it always switch to xfree during install
# foser <foser@gentoo.org>
pkg_setup () {
VOID=`cat /etc/env.d/09opengl | grep xfree`
USING_NVIDIA=$?
if [ ${USING_NVIDIA} -eq 1 ]
then
opengl-update xfree
fi
}
pkg_postinst () {
if [ ${USING_NVIDIA} -eq 1 ]
then
opengl-update nvidia
fi
}
|