blob: 47f995efaf3b208a111f1138b5ba6367a4dfe33f (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglext/gtkglext-0.2.0.ebuild,v 1.3 2002/07/10 13:21:18 aliz Exp $
DESCRIPTION="GL extentions for Gtk+ 2.0"
HOMEPAGE="http://http://gtkglext.sourceforge.net/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
RDEPEND=">=x11-libs/gtk+-2.0.3
virtual/glu
virtual/opengl"
DEPEND="${DEPEND}
doc? ( >=dev-util/gtk-doc-0.9 )"
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/gtkglext/${P}.tar.bz2"
S=${WORKDIR}/${P}
src_compile() {
local myconf
use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --disable-gtk-doc"
./configure \
${myconf} \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
make || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING* ChangeLog* INSTALL NEWS* README* TODO
}
|