commit:     48eaec8d39c191ef1c59ac457f882a6d61ad15c4
Author:     Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Fri Sep 18 23:59:18 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 20 15:30:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48eaec8d

games-action/garden: fix build with gcc 10

Closes: https://github.com/gentoo/gentoo/pull/17596
Closes: https://bugs.gentoo.org/707460
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../garden/files/garden-1.0.9-fnocommon.patch      | 11 +++++
 games-action/garden/garden-1.0.9-r2.ebuild         | 48 ++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/games-action/garden/files/garden-1.0.9-fnocommon.patch 
b/games-action/garden/files/garden-1.0.9-fnocommon.patch
new file mode 100644
index 00000000000..59d011f5f40
--- /dev/null
+++ b/games-action/garden/files/garden-1.0.9-fnocommon.patch
@@ -0,0 +1,11 @@
+--- a/src/main.c       2020-09-18 22:43:49.545959883 -0000
++++ b/src/main.c       2020-09-18 22:43:40.465778941 -0000
+@@ -55,7 +55,7 @@ struct enemystruct enemy [NO_ENEMIES];
+ struct ebulletstruct ebullet [NO_EBULLETS];
+ struct pbulletstruct pbullet [NO_PBULLETS];
+ struct arenastruct arena;
+-struct eclassstruct eclass [NO_ENEMY_TYPES];
++extern struct eclassstruct eclass [NO_ENEMY_TYPES];
+ struct cloudstruct cloud [NO_CLOUDS];
+ struct bossstruct boss;
+ 

diff --git a/games-action/garden/garden-1.0.9-r2.ebuild 
b/games-action/garden/garden-1.0.9-r2.ebuild
new file mode 100644
index 00000000000..5200fa04163
--- /dev/null
+++ b/games-action/garden/garden-1.0.9-r2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop flag-o-matic xdg-utils
+
+DESCRIPTION="Multiplatform vertical shoot-em-up with non-traditional elements"
+HOMEPAGE="http://garden.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="<media-libs/allegro-5"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+       "${FILESDIR}/${P}-dash.patch"
+       "${FILESDIR}/${P}-resources.patch"
+       "${FILESDIR}/${P}-fnocommon.patch"
+)
+
+src_prepare() {
+       default
+
+       # build with gcc52
+       sed -i \
+               -e 's/inline/extern inline/' \
+               src/stuff.h || die
+       eautoreconf
+       append-cflags -std=gnu89 # build with gcc5 (bug #572672)
+}
+
+src_install() {
+       default
+       doicon -s scalable resources/garden.svg
+       make_desktop_entry garden "Garden of coloured lights"
+}
+
+pkg_postinst() {
+       xdg_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_icon_cache_update
+}

Reply via email to