blob: ba1330430d8be3300d3e471961ee74cf32dde11c (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/aoi/aoi-1.6.ebuild,v 1.3 2004/02/17 21:46:53 gustavoz Exp $
inherit java-pkg
MY_P="AoIsrc16"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="A free, open-source 3D modelling and rendering studio."
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip
doc? ( http://aoi.sourceforge.net/docs/downloads/manual.zip )"
HOMEPAGE="http://aoi.sourceforge.net/index"
KEYWORDS="~x86 ~ppc ~sparc ~mips"
LICENSE="GPL-2"
SLOT="0"
DEPEND=""
RDEPEND=">=virtual/jdk-1.2
dev-java/jmf
dev-java/ant"
IUSE="doc"
src_unpack() {
cd ${WORKDIR}
unpack ${MY_P}.zip
use doc && unpack manual.zip
}
src_compile() {
export CLASSPATH="/usr/share/jmf/lib/jmf.jar"
ant -buildfile ArtOfIllusion.xml || die "Building ArtOfIllusion failed"
ant -buildfile OSSpecific.xml || die "Building OSSpecific failed"
ant -buildfile Renderers.xml || die "Building Renderers failed"
ant -buildfile Tools.xml || die "Building Tools failed"
ant -buildfile Translators.xml || die "Building Translators failed"
}
src_install() {
DEP_APPEND="jmf"
dobin ${FILESDIR}/aoi
dodoc HISTORY LICENSE README-source
if [ -n "`use doc`" ] ; then
mv ${WORKDIR}/AoI\ Manual/ ${WORKDIR}/aoi_manual/
dohtml -r ${WORKDIR}/aoi_manual/
fi
java-pkg_dojar ArtOfIllusion.jar
JARDESTTREE="lib/Plugins"
java-pkg_dojar Plugins/*.jar
}
|