diff options
author | Austin English <wizardedit@gentoo.org> | 2016-10-28 12:30:11 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-10-28 12:35:10 -0500 |
commit | 92ded880b93a3185302787da265a65ae318124e9 (patch) | |
tree | f34a99d5d272cd689913cb0ba995b1a04041438c /games-engines | |
parent | games-rpg/zsxd: remove deprecated games eclass (diff) | |
download | gentoo-92ded880b93a3185302787da265a65ae318124e9.tar.gz gentoo-92ded880b93a3185302787da265a65ae318124e9.tar.bz2 gentoo-92ded880b93a3185302787da265a65ae318124e9.zip |
games-engines/solarus: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.2
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/solarus/solarus-1.3.1-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/games-engines/solarus/solarus-1.3.1-r1.ebuild b/games-engines/solarus/solarus-1.3.1-r1.ebuild new file mode 100644 index 000000000000..e06034c89bf6 --- /dev/null +++ b/games-engines/solarus/solarus-1.3.1-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="An open-source Zelda-like 2D game engine" +HOMEPAGE="http://www.solarus-games.org/" +SRC_URI="http://www.zelda-solarus.com/downloads/${PN}/${P}-src.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc luajit" + +RDEPEND=" + dev-games/physfs + media-libs/libmodplug + >=media-libs/libsdl2-2.0.1[X,joystick,video] + media-libs/libvorbis + media-libs/openal + media-libs/sdl2-image[png] + >=media-libs/sdl2-ttf-2.0.12 + luajit? ( dev-lang/luajit:2 ) + !luajit? ( dev-lang/lua:0 )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_prepare() { + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DSOLARUS_INSTALL_DESTINATION="/usr/bin" + -DSOLARUS_USE_LUAJIT="$(usex luajit)" + ) + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + if use doc ; then + cd doc || die + doxygen || die + fi +} + +src_install() { + cmake-utils_src_install + doman solarus.6 + use doc && dodoc -r doc/${PV%.*}/html/* +} |