blob: 84be964361043309f3c193e8690ea80f47d301ac (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/coin/coin-2.1.0.ebuild,v 1.1 2003/07/20 13:48:25 caleb Exp $
MY_P=${P/c/C}
S=${WORKDIR}/${MY_P}
DESCRIPTION="An OpenSource implementation of SGI's OpenInventor"
SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/${MY_P}.tar.gz"
HOMEPAGE="http://www.coin3d.org"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~sparc"
DEPEND="virtual/x11
virtual/opengl"
src_compile() {
econf `use_with X x` || die
emake || die
}
src_install () {
# Note that this is slightly different from einstall
make DESTDIR=${D} \
prefix=/usr \
datadir=/usr/share \
infodir=/usr/share/info \
localstatedir=/var/lib \
mandir=/usr/share/man \
sysconfdir=/etc \
install || die "make install failed"
dodoc AUTHORS BUGS.txt COPYING ChangeLog HACKING LICENSE* NEWS README* RELEASE RELNOTES THANKS
docinto txt
dodoc docs/*.txt
}
|