blob: a038aaf7e996f8136516dcc5bc99e18a7a75c3d6 [file] [log] [blame]
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit java-pkg-2 eutils
MY_P="aoi25"
MY_MANUAL_V="2.3"
S="${WORKDIR}/ArtOfIllusion25"
DESCRIPTION="A free, open-source 3D modelling and rendering studio"
SRC_URI="mirror://sourceforge/aoi/${MY_P}.zip
doc? ( mirror://sourceforge/aoi/manual${MY_MANUAL_V}.zip )"
HOMEPAGE="http://aoi.sourceforge.net/index"
KEYWORDS="~amd64 x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="app-arch/unzip"
RDEPEND=">=virtual/jre-1.4"
IUSE="doc"
src_install() {
# documentation
dodoc HISTORY README
if use doc ; then
mv "${WORKDIR}"/AoI\ Manual/ "${WORKDIR}"/aoi_manual
dohtml -r "${WORKDIR}"/aoi_manual/
fi
# main app
java-pkg_dojar ArtOfIllusion.jar
# run script
java-pkg_dolauncher aoi \
--jar ArtOfIllusion.jar \
--java_args -Xmx128M
# plugins
mv Plugins "${D}"/usr/share/${PN}/lib
# scripts
mv Scripts "${D}"/usr/share/${PN}/lib
# icon
mv Icons/64x64.png Icons/aoi.png
doicon Icons/aoi.png
# desktop entry
make_desktop_entry aoi "Art of Illusion" aoi "Graphics"
}