Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/war1gus/
Date: Sat, 03 Jul 2021 21:46:39
Message-Id: 1625348791.b96e72764166e7d5debe7aa3a5515f3ac225356a.mgorny@gentoo
1 commit: b96e72764166e7d5debe7aa3a5515f3ac225356a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 20:58:07 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 21:46:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b96e7276
7
8 games-strategy/war1gus: Bump to 3.1.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 games-strategy/war1gus/Manifest | 1 +
13 games-strategy/war1gus/war1gus-3.1.0.ebuild | 61 +++++++++++++++++++++++++++++
14 2 files changed, 62 insertions(+)
15
16 diff --git a/games-strategy/war1gus/Manifest b/games-strategy/war1gus/Manifest
17 index 27c10be561c..337ae31d798 100644
18 --- a/games-strategy/war1gus/Manifest
19 +++ b/games-strategy/war1gus/Manifest
20 @@ -1,2 +1,3 @@
21 DIST war1gus-2.4.3.tar.gz 436938 BLAKE2B 662c3e2d16d4ca3225a50ec28ff6ae11f9c309a02c1b71e26a28155012395091dec7833a4f32a0ee6c19119a9c0aa2aa96cb465b06937da8efdd54b040189778 SHA512 909dc3375a00a4ff05eb287e6a1e3414b084f51cda37fe73ab4d728eb2d13e3e0e8612700a90e000d67a9ddffb115fe41554a4ad9db9f68e0b62cdbc0d025ae0
22 DIST war1gus-3.0.0.tar.gz 446245 BLAKE2B f58d8fe8248cc7cc661a5c2dabef9b13410eb3530bb045c03c54abeea8028e26ada3bd98d50680165b3ce35b17a08acba2b953b8c896de990cdbb3acf59cd4ae SHA512 fad712945e939fededf202181523b34945ba58ded5b5ea8089709860b63ad9c9766eb926293e5195c14f0dc3b8531ac0ae4654ab6b6718068648f9efc0fb817c
23 +DIST war1gus-3.1.0.tar.gz 395576 BLAKE2B 3fe8341bac0811c86e8240a07500dc42972a275e6a0e3b1543246afa8e5ba86c7a56a3b49e1c7e7321067a5a66eeb5fe69b529650edfdcc14407d1062e47b1a9 SHA512 68a5f100f5973ab2666f4cd486914531587a27e13c2aef0d11b08c459bd43d5257a423a1648c86ace58b27b048eeca24afb23d09c07a6a32d32845bc49701a33
24
25 diff --git a/games-strategy/war1gus/war1gus-3.1.0.ebuild b/games-strategy/war1gus/war1gus-3.1.0.ebuild
26 new file mode 100644
27 index 00000000000..ae327b99a8c
28 --- /dev/null
29 +++ b/games-strategy/war1gus/war1gus-3.1.0.ebuild
30 @@ -0,0 +1,61 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake xdg-utils
37 +
38 +DESCRIPTION="Warcraft: Orcs & Humans for the Stratagus game engine"
39 +HOMEPAGE="
40 + https://stratagus.com/war1gus.html
41 + https://github.com/Wargus/war1gus"
42 +SRC_URI="https://github.com/Wargus/war1gus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND="
50 + =games-engines/stratagus-${PV}*[theora]
51 + media-libs/libpng:0=
52 + sys-libs/zlib:=
53 + x11-libs/gtk+:2
54 + x11-libs/libX11"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="
57 + virtual/pkgconfig"
58 +
59 +src_configure() {
60 + local mycmakeargs=(
61 + -DGAMEDIR="${EPREFIX}/usr/bin"
62 + -DBINDIR="${EPREFIX}/usr/bin"
63 + -DSTRATAGUS="${EPREFIX}/usr/bin/stratagus"
64 + -DSHAREDIR="${EPREFIX}/usr/share/stratagus/war1gus"
65 + -DICONDIR=/usr/share/icons/hicolor/64x64/apps
66 + )
67 + cmake_src_configure
68 +}
69 +
70 +pkg_postinst() {
71 + elog "War1gus requires the data from the original game to run. The game"
72 + elog "will ask you for the location of the game data and extract/convert"
73 + elog "it automatically on the first run."
74 +
75 + if ! has_version media-video/ffmpeg ||
76 + ! has_version media-sound/timidity++
77 + then
78 + elog
79 + elog "If you did not convert the game data yet, you may want to install"
80 + elog "the following optional dependencies:"
81 + elog
82 + elog "media-video/ffmpeg -- to convert game videos"
83 + elog "media-sound/timidity++ -- to convert game music"
84 + fi
85 +
86 + xdg_icon_cache_update
87 +}
88 +
89 +pkg_postrm() {
90 + xdg_icon_cache_update
91 +}