blob: 28d7995d31159da62426210c1dacfcb8098fb4e4 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkglextmm/gtkglextmm-1.0.1.ebuild,v 1.6 2004/10/17 18:21:59 liquidx Exp $
inherit gnome2
DESCRIPTION="C++ bindings for gtkglext"
HOMEPAGE="http://gtkglext.sourceforge.net/"
SRC_URI="mirror://sourceforge/gtkglext/${P}.tar.bz2"
KEYWORDS="~x86 ~amd64"
IUSE=""
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
RDEPEND=">=x11-libs/gtkglext-1
=dev-cpp/gtkmm-2.2*
virtual/x11
virtual/opengl
virtual/glu"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
if [ "${ARCH}" = "amd64" ]; then
aclocal -I m4macros
automake -c -f
autoconf
fi
gnome2_src_compile
}
|