blob: 1bc4882784b2fc166b9ce39252719969db9fc266 (
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-2004 Gentoo Foundation
# 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.18 2004/06/24 23:23:15 agriffis 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 "
DEPEND="virtual/x11
<x11-libs/gtkglarea-1.99.0
media-libs/coin
=sys-apps/sed-4*
nls? ( sys-devel/gettext )
doc? ( app-doc/doxygen )"
src_compile() {
./bootstrap --add
local myconf
if ! 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
sed -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/*
}
|