commit: db8ee6d88fb1f2838180c46ac326473a57ad517a Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat Feb 27 20:32:04 2021 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Feb 28 12:26:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db8ee6d8
games-strategy/maxr: EAPI-7 bump, switch to cmake.eclass Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> games-strategy/maxr/maxr-0.2.9.ebuild | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/games-strategy/maxr/maxr-0.2.9.ebuild b/games-strategy/maxr/maxr-0.2.9.ebuild index 4e1287280ad..ad76a5a4f64 100644 --- a/games-strategy/maxr/maxr-0.2.9.ebuild +++ b/games-strategy/maxr/maxr-0.2.9.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils desktop gnome2-utils +inherit cmake desktop xdg-utils DESCRIPTION="Mechanized Assault and Exploration Reloaded" -HOMEPAGE="https://www.maxr.org" +HOMEPAGE="https://www.maxr.org/" SRC_URI="https://www.maxr.org/downloads/${P}.tar.gz" LICENSE="GPL-2 FDL-1.2+" @@ -14,26 +14,25 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="dedicated" -RDEPEND="media-libs/libsdl2[video] +RDEPEND=" + media-libs/libsdl2[video] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-net" DEPEND="${RDEPEND}" src_configure() { - mycmakeargs=( + local mycmakeargs=( -DMAXR_BUILD_DEDICATED_SERVER=$(usex dedicated) -DCMAKE_BUILD_TYPE=Release ) - - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install doicon -s 128 data/${PN}.png make_desktop_entry ${PN} "Mechanized Assault and Exploration Reloaded" } -pkg_preinst() { gnome2_icon_savelist; } -pkg_postinst() { gnome2_icon_cache_update; } -pkg_postrm() { gnome2_icon_cache_update; } +pkg_postinst() { xdg_icon_cache_update; } +pkg_postrm() { xdg_icon_cache_update; }
