Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/springlobby/
Date: Thu, 17 Jan 2019 08:54:10
Message-Id: 1547715234.e6932f6e3fc351caa71fef1c1ab7f2e51a6e9c20.monsieurp@gentoo
1 commit: e6932f6e3fc351caa71fef1c1ab7f2e51a6e9c20
2 Author: OursDesCavernes <totocoq <AT> yahoo <DOT> fr>
3 AuthorDate: Sun Jan 13 21:41:43 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 17 08:53:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6932f6e
7
8 games-util/springlobby: version bump to 0.267.
9
10 Signed-off-by: Thomas Coquelin <totocoq <AT> yahoo.fr>
11 Closes: https://bugs.gentoo.org/673848
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13 Closes: https://github.com/gentoo/gentoo/pull/10830
14 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
15
16 games-util/springlobby/Manifest | 1 +
17 games-util/springlobby/springlobby-0.267.ebuild | 54 +++++++++++++++++++++++++
18 2 files changed, 55 insertions(+)
19
20 diff --git a/games-util/springlobby/Manifest b/games-util/springlobby/Manifest
21 index bf0204143ef..87dde623bbe 100644
22 --- a/games-util/springlobby/Manifest
23 +++ b/games-util/springlobby/Manifest
24 @@ -1 +1,2 @@
25 DIST springlobby-0.266.tar.bz2 2642384 BLAKE2B 93444df4e139a657dc5d87b0ea9e796bd025259663693de9dcb04760ee611674546170813d71406e94aa456834cc96c8bc811ee5cf65b0bd0199cf66b4a51a50 SHA512 dc1a5e408515cb82004bf66bc014ebdd451eaea07d3543094cec494beb6d87165bdc0ac3672d6474a13d1918b1405507ee97ead05b9f1663789416b072aa6d6b
26 +DIST springlobby-0.267.tar.bz2 2642229 BLAKE2B 591eddda344ea4ce4ed7cad433bd7d46c7b2e727d7f97c07541cc00c6991fb1a9a62e8980f6a0249e6a509e475fe300aeb040ff1886f2da77b176b52d196db90 SHA512 6127bd7377f9a843b23df6dae7a07af1122f6ec5fa13cd8d16c0c7a3cc84e1f7af2fb7df929f904ee0b4e3abf12ae1e525ffb39b2afa0215433209054cf0de5f
27
28 diff --git a/games-util/springlobby/springlobby-0.267.ebuild b/games-util/springlobby/springlobby-0.267.ebuild
29 new file mode 100644
30 index 00000000000..cd52d846024
31 --- /dev/null
32 +++ b/games-util/springlobby/springlobby-0.267.ebuild
33 @@ -0,0 +1,54 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +WX_GTK_VER="3.0"
40 +inherit cmake-utils gnome2-utils wxwidgets
41 +
42 +DESCRIPTION="The official lobby client for SpringRTS community games"
43 +HOMEPAGE="https://springlobby.info"
44 +SRC_URI="https://www.springlobby.info/tarballs/${P}.tar.bz2"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="debug +libnotify +nls +sound"
50 +
51 +RDEPEND="
52 + >=dev-libs/boost-1.35:=
53 + dev-libs/openssl:0=
54 + net-misc/curl
55 + sys-libs/zlib[minizip]
56 + x11-libs/libICE
57 + x11-libs/libSM
58 + x11-libs/libXext
59 + x11-libs/wxGTK:${WX_GTK_VER}[X]
60 + libnotify? ( x11-libs/libnotify )
61 + sound? ( media-libs/alure
62 + media-libs/openal
63 + )
64 +"
65 +
66 +DEPEND="${RDEPEND}
67 + nls? ( sys-devel/gettext )
68 +"
69 +
70 +src_configure() {
71 + setup-wxwidgets
72 + local mycmakeargs=(
73 + -DOPTION_NOTIFY=$(usex libnotify)
74 + -DOPTION_SOUND=$(usex sound)
75 + -DOPTION_TRANSLATION_SUPPORT=$(usex nls)
76 + -DAUX_VERSION="(Gentoo,${ARCH})"
77 + )
78 + cmake-utils_src_configure
79 +}
80 +
81 +pkg_postinst() {
82 + gnome2_icon_cache_update
83 +}
84 +
85 +pkg_postrm() {
86 + gnome2_icon_cache_update
87 +}