Gentoo Archives: gentoo-commits

From: "Azamat H. Hackimov" <winterheart@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gamerlay:master commit in: games-strategy/vcmi/
Date: Mon, 12 Jul 2021 20:47:20
Message-Id: 1626122759.b477605151fd118fcbda43a444fe8a1232cbd5fc.winterheart@gentoo
1 commit: b477605151fd118fcbda43a444fe8a1232cbd5fc
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 12 20:23:26 2021 +0000
4 Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
5 CommitDate: Mon Jul 12 20:45:59 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=b4776051
7
8 games-strategy/vcmi: migrate to cmake.eclass
9
10 Fix ffmpeg dependency
11
12 Package-Manager: Portage-3.0.20, Repoman-3.0.2
13 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
14
15 games-strategy/vcmi/vcmi-0.99.ebuild | 12 ++++--------
16 1 file changed, 4 insertions(+), 8 deletions(-)
17
18 diff --git a/games-strategy/vcmi/vcmi-0.99.ebuild b/games-strategy/vcmi/vcmi-0.99.ebuild
19 index 82ccb57..0e8adba 100644
20 --- a/games-strategy/vcmi/vcmi-0.99.ebuild
21 +++ b/games-strategy/vcmi/vcmi-0.99.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 +# Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28
29 -inherit eutils cmake-utils flag-o-matic
30 +inherit eutils cmake flag-o-matic
31
32 DESCRIPTION="Heroes of Might and Magic III game engine rewrite"
33 HOMEPAGE="http://forum.vcmi.eu/index.php"
34 @@ -19,7 +19,7 @@ CDEPEND="
35 media-libs/sdl2-image
36 media-libs/sdl2-mixer
37 media-libs/sdl2-ttf
38 - virtual/ffmpeg
39 + media-video/ffmpeg
40 sys-libs/zlib[minizip]
41 launcher? (
42 dev-qt/qtgui
43 @@ -61,10 +61,6 @@ src_configure() {
44 # ^ or not?
45 )
46 export CCACHE_SLOPPINESS="time_macros"
47 - cmake-utils_src_configure
48 + cmake_src_configure
49 strip-cppflags -DNDEBUG
50 }
51 -
52 -src_install() {
53 - cmake-utils_src_install
54 -}