* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/meandmyshadow/files/, games-puzzle/meandmyshadow/
@ 2018-06-28 21:43 Andreas Sturmlechner
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Sturmlechner @ 2018-06-28 21:43 UTC (permalink / raw
To: gentoo-commits
commit: ee0da788f5576e80c5718f1dfc5dc7cc685ca567
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 28 20:05:06 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jun 28 21:43:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee0da788
games-puzzle/meandmyshadow: EAPI-6 bump
Package-Manager: Portage-2.3.41, Repoman-2.3.9
.../files/meandmyshadow-0.4-cmake.patch | 6 ++---
.../meandmyshadow/meandmyshadow-0.4-r1.ebuild | 29 +++++++++-------------
2 files changed, 15 insertions(+), 20 deletions(-)
diff --git a/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch b/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch
index 0bd66d5d284..504f6c0987a 100644
--- a/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch
+++ b/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch
@@ -1,6 +1,6 @@
---- meandmyshadow-0.4.orig/CMakeLists.txt
-+++ meandmyshadow-0.4/CMakeLists.txt
-@@ -15,13 +15,12 @@
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -15,13 +15,12 @@
Find_Package(CURL REQUIRED)
Find_Package(LibArchive REQUIRED)
Find_Package(OpenSSL REQUIRED)
diff --git a/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild b/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild
index c7d403f40c4..567f9a34f9b 100644
--- a/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild
+++ b/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
+
inherit cmake-utils gnome2-utils
DESCRIPTION="A puzzle/platform game with a player and its shadow"
@@ -13,19 +14,22 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="opengl"
-DEPEND="media-libs/libsdl[sound,video,X]
+DEPEND="
+ app-arch/libarchive
+ dev-libs/openssl:0=
+ media-libs/libsdl[sound,video,X]
media-libs/sdl-gfx
- media-libs/sdl-ttf
- media-libs/sdl-mixer[vorbis]
media-libs/sdl-image[png]
- dev-libs/openssl:0=
+ media-libs/sdl-mixer[vorbis]
+ media-libs/sdl-ttf
net-misc/curl
- app-arch/libarchive
x11-libs/libX11
opengl? ( virtual/opengl )
"
RDEPEND="${DEPEND}"
+DOCS=( AUTHORS ChangeLog README docs/{Controls,ThemeDescription}.txt )
+
PATCHES=( "${FILESDIR}"/${P}-cmake.patch )
src_configure() {
@@ -36,20 +40,11 @@ src_configure() {
-DDATAROOTDIR="/usr/share"
-DICONDIR=/usr/share/icons
-DDESKTOPDIR=/usr/share/applications
- $(cmake-utils_use opengl HARDWARE_ACCELERATION)
- )
+ -DHARDWARE_ACCELERATION=$(usex opengl)
+ )
cmake-utils_src_configure
}
-src_install() {
- cmake-utils_src_install
- dodoc AUTHORS ChangeLog README docs/{Controls,ThemeDescription}.txt
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
pkg_postinst() {
gnome2_icon_cache_update
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-puzzle/meandmyshadow/files/, games-puzzle/meandmyshadow/
@ 2021-01-02 0:07 Andreas Sturmlechner
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Sturmlechner @ 2021-01-02 0:07 UTC (permalink / raw
To: gentoo-commits
commit: 3e16a24d63c349d5d784a5c4013a0dc1f9eddca5
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 1 23:56:07 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jan 2 00:04:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e16a24d
games-puzzle/meandmyshadow: EAPI-7 bump, switch to cmake, xdg-utils
- New HOMEPAGE
- Revert broken/unnecessary patch file change.
Closes: https://bugs.gentoo.org/659598
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../meandmyshadow/files/meandmyshadow-0.4-cmake.patch | 6 +++---
games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild | 17 +++++++++--------
2 files changed, 12 insertions(+), 11 deletions(-)
diff --git a/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch b/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch
index 504f6c0987a..0bd66d5d284 100644
--- a/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch
+++ b/games-puzzle/meandmyshadow/files/meandmyshadow-0.4-cmake.patch
@@ -1,6 +1,6 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -15,13 +15,12 @@
+--- meandmyshadow-0.4.orig/CMakeLists.txt
++++ meandmyshadow-0.4/CMakeLists.txt
+@@ -15,13 +15,12 @@
Find_Package(CURL REQUIRED)
Find_Package(LibArchive REQUIRED)
Find_Package(OpenSSL REQUIRED)
diff --git a/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild b/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild
index d576bee444c..809adb12079 100644
--- a/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild
+++ b/games-puzzle/meandmyshadow/meandmyshadow-0.4-r1.ebuild
@@ -1,12 +1,13 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-inherit cmake-utils gnome2-utils
+inherit cmake xdg-utils
-DESCRIPTION="A puzzle/platform game with a player and its shadow"
-HOMEPAGE="http://meandmyshadow.sourceforge.net/"
+DESCRIPTION="Puzzle/platform game with a player and its shadow"
+HOMEPAGE="https://acmepjz.github.io/meandmyshadow/
+https://github.com/acmepjz/meandmyshadow/"
SRC_URI="mirror://sourceforge/meandmyshadow/${PV}/${P}-src.tar.gz"
LICENSE="GPL-3 OFL-1.1 CC-BY-SA-2.5"
@@ -41,13 +42,13 @@ src_configure() {
-DDESKTOPDIR=/usr/share/applications
-DHARDWARE_ACCELERATION=$(usex opengl)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
pkg_postinst() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
pkg_postrm() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-01-02 0:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-02 0:07 [gentoo-commits] repo/gentoo:master commit in: games-puzzle/meandmyshadow/files/, games-puzzle/meandmyshadow/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2018-06-28 21:43 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox