summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-02-27 12:39:20 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-02-28 13:26:09 +0100
commitb7e2d3f3de0f6e7ed72635c0d7709c7ed045c5f1 (patch)
tree33ab7bd051f79d7c90bf3b74593c3442c17606bb /games-engines
parentgames-arcade/asteroid: EAPI-7, cmake.eclass, silence cmake warning (diff)
downloadgentoo-b7e2d3f3de0f6e7ed72635c0d7709c7ed045c5f1.tar.gz
gentoo-b7e2d3f3de0f6e7ed72635c0d7709c7ed045c5f1.tar.bz2
gentoo-b7e2d3f3de0f6e7ed72635c0d7709c7ed045c5f1.zip
games-engines/solarus: Drop 1.3.1-r1
Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/solarus/solarus-1.3.1-r1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/games-engines/solarus/solarus-1.3.1-r1.ebuild b/games-engines/solarus/solarus-1.3.1-r1.ebuild
deleted file mode 100644
index 31ce4cefa293..000000000000
--- a/games-engines/solarus/solarus-1.3.1-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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/*
-}