* [gentoo-commits] repo/gentoo:master commit in: games-emulation/gens/
@ 2018-04-29 11:26 Pacho Ramos
0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2018-04-29 11:26 UTC (permalink / raw
To: gentoo-commits
commit: 0eeae19ad1a5981c08aca3b5b50bbe7ca6e2e245
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 29 09:50:24 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Apr 29 11:25:48 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eeae19a
games-emulation/gens: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
games-emulation/gens/gens-2.15.5.ebuild | 44 ---------------------------------
1 file changed, 44 deletions(-)
diff --git a/games-emulation/gens/gens-2.15.5.ebuild b/games-emulation/gens/gens-2.15.5.ebuild
deleted file mode 100644
index 9d936ba15a3..00000000000
--- a/games-emulation/gens/gens-2.15.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils flag-o-matic games
-
-DESCRIPTION="A Sega Genesis/CD/32X emulator"
-HOMEPAGE="https://sourceforge.net/projects/gens/"
-SRC_URI="mirror://sourceforge/gens/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-RDEPEND="virtual/opengl
- >=media-libs/libsdl-1.2[joystick,video]
- x11-libs/gtk+:2"
-DEPEND="${RDEPEND}
- >=dev-lang/nasm-0.98"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-romsdir.patch \
- "${FILESDIR}"/${P}-as-needed.patch \
- "${FILESDIR}"/${P}-ovflfix.patch \
- "${FILESDIR}"/${P}-gcc34.patch
- sed -i -e '1i#define OF(x) x' src/gens/util/file/unzip.h || die
- append-ldflags -Wl,-z,noexecstack
-}
-
-src_configure() {
- egamesconf \
- --disable-gtktest \
- --disable-sdltest
-}
-
-src_install() {
- DOCS="AUTHORS BUGS README gens.txt history.txt" \
- default
- newicon pixmaps/gens_small.png ${PN}.png
- make_desktop_entry "${PN}" "Gens"
- prepgamesdirs
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-emulation/gens/
@ 2021-07-04 4:17 Ionen Wolkens
0 siblings, 0 replies; 3+ messages in thread
From: Ionen Wolkens @ 2021-07-04 4:17 UTC (permalink / raw
To: gentoo-commits
commit: 82e4e1a2308eafa6f3cf048d131d63173ad9eaa2
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 4 02:30:29 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Jul 4 04:16:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82e4e1a2
games-emulation/gens: refactor multilib usage, EAPI 7->8
There is little sense in having a REQUIRED_USE (via MULTILIB_COMPAT)
and MULTILIB_USEDEP for a single choice.
This hidden that this can't be built on amd64 no-multilib by trading
NonSolvableDeps error with RequiredUseDefaults warning (now masked).
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-emulation/gens/gens-2.15.5-r2.ebuild | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/games-emulation/gens/gens-2.15.5-r2.ebuild b/games-emulation/gens/gens-2.15.5-r2.ebuild
index 7b8c385e9b0..b4c3edece97 100644
--- a/games-emulation/gens/gens-2.15.5-r2.ebuild
+++ b/games-emulation/gens/gens-2.15.5-r2.ebuild
@@ -1,13 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-MULTILIB_COMPAT=( abi_x86_32 )
+inherit desktop flag-o-matic multilib
-inherit desktop flag-o-matic multilib-build
-
-DESCRIPTION="A Sega Genesis/CD/32X emulator"
+DESCRIPTION="Sega Genesis/CD/32X emulator"
HOMEPAGE="https://sourceforge.net/projects/gens/"
SRC_URI="mirror://sourceforge/gens/${P}.tar.gz"
@@ -16,12 +14,12 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
- media-libs/libsdl[${MULTILIB_USEDEP},joystick,video]
- sys-libs/zlib[${MULTILIB_USEDEP}]
- virtual/opengl[${MULTILIB_USEDEP}]
- x11-libs/gtk+:2[${MULTILIB_USEDEP}]"
+ media-libs/libsdl[abi_x86_32(-),joystick,video]
+ sys-libs/zlib:=[abi_x86_32(-)]
+ virtual/opengl[abi_x86_32(-)]
+ x11-libs/gtk+:2[abi_x86_32(-)]"
DEPEND="${RDEPEND}"
-BDEPEND=">=dev-lang/nasm-0.98"
+BDEPEND="dev-lang/nasm"
PATCHES=(
"${FILESDIR}"/${P}-romsdir.patch
@@ -43,8 +41,9 @@ src_configure() {
src_install() {
default
+
dodoc gens.txt history.txt
newicon pixmaps/gens_small.png gens.png
- make_desktop_entry "gens" "Gens"
+ make_desktop_entry gens Gens
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-emulation/gens/
@ 2024-08-19 1:29 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-08-19 1:29 UTC (permalink / raw
To: gentoo-commits
commit: 560f0b431341d9f4d01782818e5337db71b49f61
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 01:29:30 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 01:29:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560f0b43
games-emulation/gens: allow textrels
We already allow execstack.
It's an emulator, so no further comment needed.
Closes: https://bugs.gentoo.org/800284
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-emulation/gens/gens-2.15.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-emulation/gens/gens-2.15.5-r2.ebuild b/games-emulation/gens/gens-2.15.5-r2.ebuild
index 180732886a45..e8751bcbe79c 100644
--- a/games-emulation/gens/gens-2.15.5-r2.ebuild
+++ b/games-emulation/gens/gens-2.15.5-r2.ebuild
@@ -31,7 +31,7 @@ PATCHES=(
)
src_configure() {
- append-ldflags -Wl,-z,noexecstack
+ append-ldflags -Wl,-z,notext -Wl,-z,noexecstack
use amd64 && multilib_toolchain_setup x86 #441876
econf \
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-08-19 1:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-04 4:17 [gentoo-commits] repo/gentoo:master commit in: games-emulation/gens/ Ionen Wolkens
-- strict thread matches above, loose matches on Subject: below --
2024-08-19 1:29 Sam James
2018-04-29 11:26 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox