summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-02-04 10:13:35 +0100
committerJakov Smolić <jsmolic@gentoo.org>2022-02-04 10:13:35 +0100
commitcb2f67e1315e7d4ef1b93cc2b6241c97fd5c7b6e (patch)
treedf8070975932e213f70122bc2afb421ca4e47903 /games-util
parentdev-python/reportlab: Stabilize 3.6.5 x86, #832647 (diff)
downloadgentoo-cb2f67e1315e7d4ef1b93cc2b6241c97fd5c7b6e.tar.gz
gentoo-cb2f67e1315e7d4ef1b93cc2b6241c97fd5c7b6e.tar.bz2
gentoo-cb2f67e1315e7d4ef1b93cc2b6241c97fd5c7b6e.zip
games-util/springlobby: treeclean
Closes: https://bugs.gentoo.org/830588 Closes: https://bugs.gentoo.org/756715 Closes: https://bugs.gentoo.org/739398 Closes: https://bugs.gentoo.org/732582 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r--games-util/springlobby/Manifest1
-rw-r--r--games-util/springlobby/metadata.xml15
-rw-r--r--games-util/springlobby/springlobby-0.269.ebuild54
3 files changed, 0 insertions, 70 deletions
diff --git a/games-util/springlobby/Manifest b/games-util/springlobby/Manifest
deleted file mode 100644
index 1905bf3a9024..000000000000
--- a/games-util/springlobby/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST springlobby-0.269.tar.bz2 4576001 BLAKE2B bd55b480c98d74bc83f99bf32148ef2be5e1f59e1539fdb432430d5e36e653e1c3d550bc7a3c996e5df029a19ea729d456f34ae3522a2a6385a0d646697e537c SHA512 32e9b5bfc72bcfccd1487621e6035e7338977f7262702cd39ec2c43734bff5b8757a97428d1207f8e6721dd450c1cddd68e43cea416503dd1987596e61e126e1
diff --git a/games-util/springlobby/metadata.xml b/games-util/springlobby/metadata.xml
deleted file mode 100644
index 80ef44e55181..000000000000
--- a/games-util/springlobby/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
-The official lobby client for SpringRTS community games: Balanced Annihilation; Journeywar; Metal Factions; Spring:1944 World War II; Star Wars: Imperial Winter; Tech Annihilation; The Cursed; Evolution RTS; ...
- </longdescription>
- <longdescription lang="fr">
-Le client officiel du lobby pour les jeux de la communauté SpringRTS : Balanced Annihilation; Journeywar; Metal Factions; Spring:1944 World War II; Star Wars: Imperial Winter; Tech Annihilation; The Cursed; Evolution RTS; ...
- </longdescription>
- <upstream>
- <remote-id type="github">springlobby/springlobby</remote-id>
- <bugs-to>https://github.com/springlobby/springlobby/issues</bugs-to>
- </upstream>
-</pkgmetadata>
diff --git a/games-util/springlobby/springlobby-0.269.ebuild b/games-util/springlobby/springlobby-0.269.ebuild
deleted file mode 100644
index d35dc36a2bb7..000000000000
--- a/games-util/springlobby/springlobby-0.269.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-WX_GTK_VER="3.0"
-inherit cmake xdg-utils wxwidgets
-
-DESCRIPTION="The official lobby client for SpringRTS community games"
-HOMEPAGE="https://springlobby.springrts.com"
-SRC_URI="https://springlobby.springrts.com/dl/stable/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug +libnotify +nls +sound"
-
-RDEPEND="
- dev-libs/openssl:0=
- net-misc/curl
- sys-libs/zlib[minizip]
- x11-libs/libICE
- x11-libs/libSM
- x11-libs/libXext
- x11-libs/wxGTK:${WX_GTK_VER}[X]
- libnotify? ( x11-libs/libnotify )
- sound? (
- media-libs/alure
- media-libs/openal
- )
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-src_configure() {
- setup-wxwidgets
- local mycmakeargs=(
- -DOPTION_NOTIFY=$(usex libnotify)
- -DOPTION_SOUND=$(usex sound)
- -DOPTION_TRANSLATION_SUPPORT=$(usex nls)
- -DAUX_VERSION="(Gentoo,${ARCH})"
- )
- cmake_src_configure
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}