blob: 4f81d24443e21c74ed50575fc53fc11e3c3283fb (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglext/gtkglext-1.0.0.ebuild,v 1.1 2003/05/15 18:10:10 liquidx Exp $
inherit gnome2
IUSE="doc"
DESCRIPTION="GL extentions 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"
RDEPEND=">=dev-libs/glib-2
>=x11-libs/gtk+-2
>=x11-libs/pango-1
virtual/glu
virtual/opengl
virtual/x11"
DEPEND="${DEPEND}
doc? ( >=dev-util/gtk-doc-0.10 )"
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
}
|