blob: 34bf1f5e205a24401ac4606bcd8336160e04467e (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-libs/SoGtk/SoGtk-20010601-r1.ebuild,v 1.5 2002/07/11 06:30:38 drobbins Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="A Gtk Interface for coin"
SRC_URI="ftp://ftp.coin3d.org/pub/snapshots/${P}.tar.gz"
HOMEPAGE="http://www.coin3d.org"
SLOT="0"
DEPEND="virtual/x11
sys-devel/autoconf
sys-devel/automake
sys-devel/libtool
<x11-libs/gtkglarea-1.99.0
~media-libs/coin-${PV}"
RDEPEND="virtual/x11
<x11-libs/gtkglarea-1.99.0
~media-libs/coin-${PV}"
src_compile() {
./bootstrap --add
./configure --prefix=/usr \
--host=${CHOST} \
--build=${CHOST} || die
make || die
}
src_install () {
make prefix=${D}/usr install || die
cd ${S}
dodoc AUTHORS COPYING ChangeLog* LICENSE* NEWS README*
docinto txt
dodoc docs/qtcomponents.doxygen
}
|