summaryrefslogtreecommitdiff
blob: 21e1c40dbd27bb08bc36defb25cd13c2899ab3a5 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openvrml/openvrml-0.14.3.ebuild,v 1.9 2005/03/23 16:18:10 seemant Exp $

IUSE="java javascript jpeg opengl png truetype truetype zlib"

DESCRIPTION="VRML97 library"
SRC_URI="mirror://sourceforge/openvrml/${P}.tar.gz"
HOMEPAGE="http://openvrml.org"

SLOT="0"
LICENSE="LGPL-2.1 GPL-2"
KEYWORDS="~x86 ~sparc ~amd64"

DEPEND="virtual/x11
	app-doc/doxygen
	zlib? ( sys-libs/zlib )
	png? ( media-libs/libpng )
	jpeg? ( media-libs/jpeg )
	truetype? ( media-libs/freetype media-libs/fontconfig )
	javascript? ( www-client/mozilla )
	java? ( virtual/jdk )
	opengl? ( virtual/opengl virtual/glut )"

# TODO: add support for java via libmozjs (http://www.mozilla.org/js/spidermonkey/)

pkg_setup() {

	if ! use jpeg || ! use png ; then
		einfo
		einfo "OpenVRML will *not* be built with ImageTexture support."
		einfo "Both 'png' and 'jpeg' must be enabled in USE flags for ImageTexture support."
		einfo
	fi
}

src_compile() {

	local myconf=""

	use zlib \
		&& myconf="${myconf} --enable-gzip" \
		|| myconf="${myconf} --disable-gzip"

	use png && use jpeg \
		&& myconf="${myconf} --enable-imagetexture-node" \
		|| myconf="${myconf} --disable-imagetexture-node"

	use truetype \
		&& myconf="${myconf} --enable-text-node" \
		|| myconf="${myconf} --disable-text-node"

	use javascript \
		&& myconf="${myconf} --enable-script-node-javascript" \
		|| myconf="${myconf} --disable-script-node-javascript"

	use java \
		&& myconf="${myconf} --enable-script-node-java --with-jdk=`java-config -O`" \
		|| myconf="${myconf} --disable-script-node-java"

	use opengl \
		&& myconf="${myconf} --enable-gl-renderer --enable-lookat" \
		|| myconf="${myconf} --disable-gl-renderer --disable-lookat"

	./configure --with-x --prefix=/usr ${myconf} || die "configure failed"

	make || die "make failed"

}

src_install() {

	make DESTDIR=${D} install || die "make install failed"

	dodoc AUTHORS COPYING* ChangeLog INSTALL NEWS README THANKS

}