summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-29 15:04:45 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-29 15:06:48 +0200
commit45565427e7aa7337f755689fce59f8f9c1683882 (patch)
tree42b2966cc1f457238ed580a62d7fd2c977d692c4
parentgames-engines/qtads: Drop old (diff)
downloadgentoo-45565427e7aa7337f755689fce59f8f9c1683882.tar.gz
gentoo-45565427e7aa7337f755689fce59f8f9c1683882.tar.bz2
gentoo-45565427e7aa7337f755689fce59f8f9c1683882.zip
games-engines/stratagus: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
-rw-r--r--games-engines/stratagus/Manifest1
-rw-r--r--games-engines/stratagus/stratagus-2.3.0.ebuild75
2 files changed, 0 insertions, 76 deletions
diff --git a/games-engines/stratagus/Manifest b/games-engines/stratagus/Manifest
index 7fe190bcd379..7f53ed027712 100644
--- a/games-engines/stratagus/Manifest
+++ b/games-engines/stratagus/Manifest
@@ -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
index cea036b23b00..000000000000
--- a/games-engines/stratagus/stratagus-2.3.0.ebuild
+++ /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
-}