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