diff options
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/sumwars/Manifest | 1 | ||||
-rw-r--r-- | games-rpg/sumwars/metadata.xml | 14 | ||||
-rw-r--r-- | games-rpg/sumwars/sumwars-0.5.8-r101.ebuild | 70 |
3 files changed, 0 insertions, 85 deletions
diff --git a/games-rpg/sumwars/Manifest b/games-rpg/sumwars/Manifest deleted file mode 100644 index 4d17754bcef7..000000000000 --- a/games-rpg/sumwars/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sumwars-0.5.8-src.tar.bz2 107811288 BLAKE2B d7eef29ae9ba91d7a368730169d49c4b84e5db5cdbd4be7aa183e91baa50fd45be2b91928903e9cb17d947c2a4947094138c65efe076cdc85f14fbfacadddbd1 SHA512 ccf156f4484b0aeb8984631321d6691dc180ad63fdfa59d92aaa05ada3e871fc10656f32f9ba1b65abe7342e1481e14ca01f025ffc0ec5797cd8e91d97240cf1 diff --git a/games-rpg/sumwars/metadata.xml b/games-rpg/sumwars/metadata.xml deleted file mode 100644 index b6bf04ac1ccb..000000000000 --- a/games-rpg/sumwars/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> - </maintainer> - <use> - <flag name="tools">Builds editor tools</flag> - </use> - <upstream> - <remote-id type="sourceforge">sumwars</remote-id> - </upstream> -</pkgmetadata> diff --git a/games-rpg/sumwars/sumwars-0.5.8-r101.ebuild b/games-rpg/sumwars/sumwars-0.5.8-r101.ebuild deleted file mode 100644 index c77b37294846..000000000000 --- a/games-rpg/sumwars/sumwars-0.5.8-r101.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CMAKE_REMOVE_MODULES_LIST=( FindLua{,51} ) -LUA_COMPAT=( lua5-1 ) -inherit cmake desktop flag-o-matic lua-single - -MY_L10N=( de en it pl pt ru uk ) - -DESCRIPTION="Multi-player, 3D action role-playing game" -HOMEPAGE="https://sourceforge.net/projects/sumwars/" -SRC_URI="mirror://sourceforge/sumwars/${P/_/-}-src.tar.bz2" - -LICENSE="GPL-3 CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug tools ${MY_L10N[*]/#/l10n_}" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -DEPEND=" - ${LUA_DEPS} - dev-games/cegui[ogre,truetype] - dev-games/ogre:=[freeimage,opengl] - dev-games/ois - dev-games/physfs - dev-libs/tinyxml - media-libs/freealut - media-libs/libvorbis - media-libs/openal - net-libs/enet:1.3= - x11-libs/libX11 - x11-libs/libXrandr - tools? ( dev-libs/boost:= )" -RDEPEND=" - ${DEPEND} - media-libs/freeimage[jpeg,png]" - -src_configure() { - append-flags -fno-strict-aliasing - - local l langs= - for l in "${MY_L10N[@]}"; do - use l10n_${l} && langs+="${l} " - done - - use debug && CMAKE_BUILD_TYPE=Debug - - local mycmakeargs=( - -DLua_FIND_VERSION_MAJOR=$(ver_cut 1 $(lua_get_version)) - -DLua_FIND_VERSION_MINOR=$(ver_cut 2 $(lua_get_version)) - -DLua_FIND_VERSION_COUNT=2 - -DLua_FIND_VERSION_EXACT=ON - -DSUMWARS_BUILD_TOOLS=$(usex tools) - -DSUMWARS_DOC_DIR="${EPREFIX}"/usr/share/doc/${PF} - -DSUMWARS_LANGUAGES="${langs:-en}" - -DSUMWARS_NO_ENET=ON - -DSUMWARS_NO_TINYXML=ON - ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - - newicon share/icon/SumWarsIcon_128x128.png ${PN}.png - make_desktop_entry ${PN} "Summoning Wars" -} |