* [gentoo-commits] repo/gentoo:master commit in: games-arcade/jvgs/
@ 2017-10-16 0:08 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-10-16 0:08 UTC (permalink / raw
To: gentoo-commits
commit: 37b09f4d427dcf1bad0971ea1a3b770198f0bb88
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 15 23:42:50 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 00:07:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b09f4d
games-arcade/jvgs: [QA] Add cmake-utils_src_prepare
Package-Manager: Portage-2.3.11, Repoman-2.3.3
games-arcade/jvgs/jvgs-0.5.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/games-arcade/jvgs/jvgs-0.5.ebuild b/games-arcade/jvgs/jvgs-0.5.ebuild
index d53c882b314..e621f1b4519 100644
--- a/games-arcade/jvgs/jvgs-0.5.ebuild
+++ b/games-arcade/jvgs/jvgs-0.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -24,10 +24,7 @@ DEPEND="${RDEPEND}
dev-lang/swig"
S=${WORKDIR}/${P}-src
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-flags.patch
-}
+PATCHES=( "${FILESDIR}"/${P}-flags.patch )
src_configure() {
cmake-utils_src_configure
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/jvgs/
@ 2018-08-27 21:23 James Le Cuirot
0 siblings, 0 replies; 3+ messages in thread
From: James Le Cuirot @ 2018-08-27 21:23 UTC (permalink / raw
To: gentoo-commits
commit: 8123f9a143bf86ed1c5cd7af4d58a1faa6caf74e
Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Aug 3 01:09:57 2018 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Aug 27 21:23:01 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8123f9a1
games-arcade/jvgs: eutils->desktop
Only has eutils for the implicit desktop inheritance for
make_desktop_entry and newicon.
Package-Manager: Portage-2.3.44, Repoman-2.3.10
games-arcade/jvgs/jvgs-0.5-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/games-arcade/jvgs/jvgs-0.5-r1.ebuild b/games-arcade/jvgs/jvgs-0.5-r1.ebuild
index 779b57dd740..45d527c885b 100644
--- a/games-arcade/jvgs/jvgs-0.5-r1.ebuild
+++ b/games-arcade/jvgs/jvgs-0.5-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit cmake-utils eutils
+inherit cmake-utils desktop
DESCRIPTION="An open-source platform game with a sketched and minimalistic look"
HOMEPAGE="http://jvgs.sourceforge.net/"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/jvgs/
@ 2021-02-01 2:07 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2021-02-01 2:07 UTC (permalink / raw
To: gentoo-commits
commit: df698e7fb683b112df9d75f19bbf5d82a4a8ae28
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 1 01:06:58 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 1 02:07:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df698e7f
games-arcade/jvgs: fix installed binary
Actually install the binary we build.
Thanks-to: Samuel Bauer <samuel.bauer <AT> yahoo.fr>
Closes: https://bugs.gentoo.org/687610
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-arcade/jvgs/jvgs-0.5-r1.ebuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/games-arcade/jvgs/jvgs-0.5-r1.ebuild b/games-arcade/jvgs/jvgs-0.5-r1.ebuild
index 45d527c885b..6fa5af29b09 100644
--- a/games-arcade/jvgs/jvgs-0.5-r1.ebuild
+++ b/games-arcade/jvgs/jvgs-0.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -26,8 +26,14 @@ DEPEND="${RDEPEND}
S=${WORKDIR}/${P}-src
PATCHES=( "${FILESDIR}"/${PN}-0.5-fix-build-system.patch )
+src_prepare() {
+ sed -i "s:main.lua:/usr/share/${PN}/&:" src/main.cpp
+ default
+ eapply_user
+}
+
src_install() {
- dobin src/${PN}
+ dobin ${BUILD_DIR}/src/${PN}
insinto /usr/share/${PN}
doins -r main.lua resources
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-02-01 2:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-16 0:08 [gentoo-commits] repo/gentoo:master commit in: games-arcade/jvgs/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2018-08-27 21:23 James Le Cuirot
2021-02-01 2:07 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox