diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:20 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:42:14 +0100 |
commit | 665f58a826178e0c05552e4a582d2f4330580b84 (patch) | |
tree | 885ac2638a6c96ccab9e4e91c509eb3065da6a39 | |
parent | games-engines/residualvm: Remove old (diff) | |
download | gentoo-665f58a826178e0c05552e4a582d2f4330580b84.tar.gz gentoo-665f58a826178e0c05552e4a582d2f4330580b84.tar.bz2 gentoo-665f58a826178e0c05552e4a582d2f4330580b84.zip |
games-engines/solarus: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
-rw-r--r-- | games-engines/solarus/solarus-1.3.1.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/games-engines/solarus/solarus-1.3.1.ebuild b/games-engines/solarus/solarus-1.3.1.ebuild deleted file mode 100644 index 54eea7cef952..000000000000 --- a/games-engines/solarus/solarus-1.3.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils games - -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="${GAMES_BINDIR}" - $(cmake-utils_use luajit SOLARUS_USE_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 && dohtml -r doc/${PV%.*}/html/* - prepgamesdirs -} |