Initial import

This commit is contained in:
2022-08-30 15:46:53 -04:00
commit e712bb5dc2
274 changed files with 27716 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST springlobby-0.270.tar.bz2 4561662 SHA256 fa2d9c11f658df423f1681cf204f37ea0795715f276ab87ed555df9838142fe4 SHA512 519d28d33c98d1bcb2aebbeee22c1cffd21a9cf9c3652cc9c6e6892528b7e7e90bd2566aaa26d5cca873316541f578e0b3a98b388ead1f43d69c77232ed1726b WHIRLPOOL 201657706cabcb014b14ed1c0d1733feaa525e28f05ec1cb506dc449baa5c2e7cf4558ed95e12be51f18a3366984102519b941fd91ff81074e62be21681e07af
EBUILD springlobby-0.270.ebuild 1049 SHA256 4f385f1e4283cc9bcab1c30f9222e226c0d48ad1b84fc608e925d68eb4022411 SHA512 97cec0d40ea58ad54f35f5b33e61075b5772b855b705ace3d317548dbe8593f156d14d38b214052467b769aa8304453c8df5f064c66ba58feb6bd7067ca972b4 WHIRLPOOL e39179aab9f4ac91c0dba4a4daab8c1a476b276ea3a58fb0f08ceb37f108c10f9b729f902be2c0d09a9b7bbaf4b3459b7d5c20e4055f42206700d7099e2230aa

View File

@@ -0,0 +1,54 @@
# 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
}