blob: 65c0cfd3f3a61f283889ea40a0e067291172f949 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/coin/coin-3.1.3-r1.ebuild,v 1.5 2011/01/13 00:31:30 reavertm Exp $
EAPI=2
inherit flag-o-matic base
MY_P=${P/c/C}
S="${WORKDIR}/${MY_P}"
DESCRIPTION="A high-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1."
HOMEPAGE="http://www.coin3d.org/"
SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/all/${MY_P}.tar.gz"
LICENSE="|| ( GPL-2 PEL )"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE="bzip2 debug doc javascript openal simage static-libs threads zlib"
# NOTE: expat is not really needed as --enable-system-expat is broken
RDEPEND="
dev-libs/expat
media-libs/fontconfig
media-libs/freetype:2
virtual/opengl
virtual/glu
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
bzip2? ( app-arch/bzip2 )
javascript? ( dev-lang/spidermonkey )
openal? ( media-libs/openal )
simage? ( media-libs/simage )
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
x11-proto/xextproto
doc? ( app-doc/doxygen )
"
PATCHES=(
"${FILESDIR}/${PN}-3.1.0-javascript.patch"
"${FILESDIR}/${PN}-3.1.3-pkgconfig-partial.patch"
)
DOCS=(
AUTHORS FAQ FAQ.legal NEWS README RELNOTES THANKS
docs/{ChangeLog.v${PV},HACKING,oiki-launch.txt}
)
src_configure() {
append-cppflags -I/usr/include/freetype2
# Prefer link-time linking over dlopen
econf \
htmldir="/usr/share/doc/${PF}/html" \
--disable-dl-fontconfig \
--disable-dl-freetype \
--disable-dl-libbzip2 \
--disable-dl-openal \
--disable-dl-simage \
--disable-dl-zlib \
--disable-dyld \
--disable-loadlibrary \
--disable-man \
--disable-java-wrapper \
--enable-3ds-import \
--enable-compact \
--enable-dl-glu \
--enable-dl-spidermonkey \
--enable-system-expat \
--includedir="/usr/include/${PN}" \
--with-fontconfig \
--with-freetype \
$(use_with bzip2) \
$(use_enable debug) \
$(use_enable debug symbols) \
$(use_enable doc html) \
$(use_enable javascript javascript-api) \
$(use_with javascript spidermonkey) \
$(use_enable openal sound) \
$(use_with openal) \
$(use_with simage) \
$(use_enable static-libs static) \
$(use_enable threads threadsafe) \
$(use_with zlib)
}
src_install() {
# Remove Coin from Libs.private
sed -e '/Libs.private/s/ -lCoin//' -i Coin.pc || die
base_src_install
# Remove libtool files when not needed.
use static-libs || rm -f "${D}"/usr/lib*/*.la
}
|