blob: ff66c8db086ec536f04e5655dcc5b4788f69d21f (
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
50
51
52
53
54
55
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/SoGtk/SoGtk-20010601-r1.ebuild,v 1.11 2002/11/09 09:57:53 seemant Exp $
IUSE="nls doc"
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"
LICENSE="LGPL-2.1"
KEYWORDS="x86 sparc sparc64"
DEPEND="virtual/x11
<x11-libs/gtkglarea-1.99.0
media-libs/coin
sys-apps/supersed
nls? ( sys-devel/gettext )
doc? ( app-doc/doxygen )"
src_compile() {
./bootstrap --add
local myconf
if [ -z "`use nls`" ]
then
myconf="${myconf} --disable-nls"
touch intl/libgettext.h
fi
use doc && myconf="${myconf} --with-html --with-man"
econf \
--with-x \
${myconf} || die
ssed -i "s:ENABLE_NLS 1:ENABLE_NLS 0:" config.h
make || die
}
src_install () {
einstall \
bindir=${D}/usr/bin \
includedir=${D}/usr/include \
libdir=${D}/usr/lib || die
cd ${S}
dodoc AUTHORS COPYING ChangeLog* LICENSE* NEWS README*
docinto txt
dodoc docs/*
}
|