games-engines/stratagus: Drop old
authorPacho Ramos <pacho@gentoo.org>
Sun, 29 Apr 2018 13:04:45 +0000 (15:04 +0200)
committerPacho Ramos <pacho@gentoo.org>
Sun, 29 Apr 2018 13:06:48 +0000 (15:06 +0200)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

games-engines/stratagus/Manifest
games-engines/stratagus/stratagus-2.3.0.ebuild [deleted file]

index 7fe190bcd37992deb5e04f810cb9cc754956bd6e..7f53ed027712d4ad7c6a22d4a55e79d6dd74d38f 100644 (file)
@@ -1,2 +1 @@
 DIST stratagus-2.4.1.tar.gz 1087678 BLAKE2B be7fc8322aee2a28c80833d44c3180e26b961ce9dfd1bc5e0a8e3fa0caac74bf713224de4c38b2ebf6d5aeabbe778a5664346c6a444b066f07f719bba5317bac SHA512 1f0420677df72e3e2d2f31e60030fa2eba4c3d1ab80cfc79c045724fe39ac237846bc38e8762ee9aa51768a443cdbbaa1fe91bf80fb2164261288a1bb17e27cd
-DIST stratagus_2.3.0.orig.tar.gz 1000990 BLAKE2B 8d815a23a2efa6c55e1050e1762f9190656f25e355fafcb434238a3c024d313e8cbd6b5a5873430ea37aa7b7ba30d4128beec7c080c733415888ae2ddff412e6 SHA512 ad38568029aa777fcc2d2e6d4a862b4192bc87354b23712270b9f0a62e269548a08097305e97adcea7bc9d9d506a6d092c578656a1957db808a48f44712a76bf
diff --git a/games-engines/stratagus/stratagus-2.3.0.ebuild b/games-engines/stratagus/stratagus-2.3.0.ebuild
deleted file mode 100644 (file)
index cea036b..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils eutils games
-
-DESCRIPTION="A realtime strategy game engine"
-HOMEPAGE="https://launchpad.net/stratagus/"
-SRC_URI="https://launchpad.net/stratagus/trunk/2.3/+download/stratagus_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bzip2 debug doc fluidsynth mikmod mng theora vorbis"
-
-RDEPEND="dev-db/sqlite:3
-       >=dev-lang/lua-5:0
-       dev-lua/toluapp
-       media-libs/libpng:0
-       virtual/opengl
-       x11-libs/libX11
-       media-libs/libsdl[sound,opengl,video]
-       sys-libs/zlib
-       bzip2? ( app-arch/bzip2 )
-       fluidsynth? ( media-sound/fluidsynth )
-       mikmod? ( media-libs/libmikmod )
-       mng? ( media-libs/libmng )
-       vorbis? (
-               media-libs/libogg
-               media-libs/libvorbis
-               theora? ( media-libs/libtheora )
-       )"
-DEPEND="${RDEPEND}
-       doc? ( app-doc/doxygen )
-       virtual/pkgconfig"
-
-REQUIRED_USE="theora? ( vorbis )"
-PATCHES=( "${FILESDIR}"/${P}-{debug,doc}.patch )
-
-S=${WORKDIR}/${PN}_${PV}.orig
-
-src_prepare() {
-       cmake-utils_src_prepare
-}
-
-src_configure() {
-       # there are in-source switches
-       use debug && CMAKE_BUILD_TYPE=Debug
-
-       local mycmakeargs=(
-               -DGAMEDIR="${GAMES_BINDIR}"
-               -DBINDIR="${GAMES_BINDIR}"
-               -DSBINDIR="${GAMES_BINDIR}"
-               -DDOCDIR="/usr/share/doc/${PF}"
-               $(cmake-utils_use_with bzip2)
-               $(cmake-utils_use_enable doc)
-               $(cmake-utils_use_with fluidsynth)
-               $(cmake-utils_use_with mikmod)
-               $(cmake-utils_use_with mng)
-               $(cmake-utils_use_with vorbis OGGVORBIS)
-               $(cmake-utils_use_with theora)
-               -DENABLE_DEV=ON
-       )
-
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-}
-
-src_install() {
-       cmake-utils_src_install
-       prepgamesdirs
-}