summaryrefslogtreecommitdiff
blob: 72c88a4ddd288a86d66ebc8fd032f110290cc46e (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/media-libs/SoGtk/SoGtk-20010601.ebuild,v 1.1 2001/06/04 06:41:14 achim Exp $


A=${P}.tar.gz
S=${WORKDIR}/${PN}
DESCRIPTION="A Qt Interface for coin"
SRC_URI="ftp://ftp.coin3d.org/pub/snapshots/${A}"
HOMEPAGE="http://www.coin3d.org"

DEPEND="virtual/x11 sys-devel/autoconf sys-devel/automake sys-devel/libtool
	>=x11-libs/gtkglarea-1.2.2
        =media-libs/coin-${PV}"

DEPEND="virtual/x11
	>=x11-libs/gtkglarea-1.2.2
        =media-libs/coin-${PV}"
src_compile() {

    ./bootstrap --add

    try ./configure --prefix=/usr/X11R6 --host=${CHOST} --build=${CHOST}
    try make

}

src_install () {
    
    try make DESTDIR=${D} install
    cd ${S}
    dodoc AUTHORS COPYING ChangeLog* LICENSE* NEWS README*
    docinto txt
    dodoc docs/qtcomponents.doxygen

}