summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2023-10-16 23:22:48 +0100
committerJames Le Cuirot <chewi@gentoo.org>2023-10-16 23:22:48 +0100
commitb3b2246f36c7fb60f32d7842ffef47c3d8869644 (patch)
treeaa11a69f3a4877bd923676a2393813961287f6c9 /games-simulation
parentmedia-video/ffmpeg-chromium: Drop old 102 and 106 (diff)
downloadgentoo-b3b2246f36c7fb60f32d7842ffef47c3d8869644.tar.gz
gentoo-b3b2246f36c7fb60f32d7842ffef47c3d8869644.tar.bz2
gentoo-b3b2246f36c7fb60f32d7842ffef47c3d8869644.zip
games-simulation/corsix-th: Drop old 0.66-r1
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-simulation')
-rw-r--r--games-simulation/corsix-th/Manifest1
-rw-r--r--games-simulation/corsix-th/corsix-th-0.66-r1.ebuild79
2 files changed, 0 insertions, 80 deletions
diff --git a/games-simulation/corsix-th/Manifest b/games-simulation/corsix-th/Manifest
index b4fd70bd35e8..d6025c582c40 100644
--- a/games-simulation/corsix-th/Manifest
+++ b/games-simulation/corsix-th/Manifest
@@ -1,2 +1 @@
-DIST corsix-th-0.66.tar.gz 4117046 BLAKE2B 7bceb0d5893849ba906ccd9516ecd52f0a1c54f3a91bff932c0db053f66e71a3d38dfdb55979cb9bb2047c7338b3badbb32defa216a9867fb7166f4ca14bfa75 SHA512 a5cea74e7754132a7edbe188c63c08eb40ba8a8bbef6dc7441e41c5f46e96cacaa077d00bead4f8b3af3b8e07eadb4cfd08b1fb147e1397e2f9aa02642d29105
DIST corsix-th-0.67.tar.gz 4127698 BLAKE2B 3b95b2439b779eab88a680fc3543fc4695cab7eac09ec2b20f892e95faaaf176c4d6c4862a9cd716958283922a7a6d8d1011346f1ef7c7a2f43ccca0c0b076c6 SHA512 b0e245a8aed9ad36e1040f88bbf8bf031bddf8dead0c59bc99a3c7f19cd6957c52e8185b2b737e78d57c73a58e460360428c81d5df1f6660aa17c7ec91ac62ba
diff --git a/games-simulation/corsix-th/corsix-th-0.66-r1.ebuild b/games-simulation/corsix-th/corsix-th-0.66-r1.ebuild
deleted file mode 100644
index 3ce5a4f5640f..000000000000
--- a/games-simulation/corsix-th/corsix-th-0.66-r1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} )
-
-inherit cmake lua-single xdg
-
-MY_PN="CorsixTH"
-
-DESCRIPTION="Open source clone of Theme Hospital"
-HOMEPAGE="https://corsixth.com"
-SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="doc +midi +sound +truetype +videos"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-
-RDEPEND="${LUA_DEPS}
- $(lua_gen_cond_dep '
- >=dev-lua/luafilesystem-1.5[${LUA_USEDEP}]
- >=dev-lua/lpeg-0.9[${LUA_USEDEP}]
- >=dev-lua/luasocket-3.0_rc1-r4[${LUA_USEDEP}]
- ')
- media-libs/libsdl2[opengl,video]
- sound? ( media-libs/sdl2-mixer[midi?] )
- truetype? ( >=media-libs/freetype-2.5.3:2 )
- videos? ( >=media-video/ffmpeg-2.2.3:0= )
-"
-
-DEPEND="${RDEPEND}"
-
-# Technically, build-time generation of documentation could use any version
-# of Lua (or to be precise: if in src_configure cmake has been told to use
-# LuaJIT documentation generation looks for LuaJIT, otherwise any
-# dev-lang/lua slot will do; see the first few lines of the bundled file
-# CMake/GenerateDoc.cmake for details) - but since dev-lang/lua conflicts
-# with the other slots of same, try to keep the deptree sane until we get
-# rid of unslotted Lua.
-BDEPEND="
- virtual/pkgconfig
- doc? (
- app-doc/doxygen[dot]
- ${LUA_DEPS}
- )
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.66-cmake_lua_detection.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLUA_VERSION=$(lua_get_version)
- -DWITH_AUDIO=$(usex sound)
- -DWITH_FREETYPE2=$(usex truetype)
- -DWITH_MOVIES=$(usex videos)
- )
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- use doc && cmake_src_compile doc
-}
-
-src_install() {
- cmake_src_install
- dodoc changelog.txt CONTRIBUTING.md
-
- docinto html
- use doc && dodoc -r "${BUILD_DIR}"/doc/*
-}