You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/aoi/aoi-2.5.ebuild

51 lines
1.1 KiB

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
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"
}