games-puzzle/atomix: drop 3.34.0-r1

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2026-02-21 11:06:46 +01:00
parent 334600067c
commit f91fec3638
3 changed files with 0 additions and 57 deletions

View File

@@ -1,2 +1 @@
DIST atomix-3.34.0.tar.xz 532096 BLAKE2B bec3e29b2a3ef92e86b4c6e3c68f31d80b4e5fae9c2fbf86229813a4ce4aef469c94a21a51a102b556cae0764eb553e18301246d94ed475f64ec6fcfe226c784 SHA512 e51e8b727c80a1ea7078ac16d15884c7c84b06aba456424e659c3965fe7c2b3d0c68e0d3d2dd40224afd07b4f7a261e7510327e58974a94fe58c9a81d67c0937
DIST atomix-44.0.tar.xz 535508 BLAKE2B 96ff6bbff54ef48f41c6d0480d407907d4bc4e03217c20555698a75266ded03b421d79f9fe31bfb684b6463e7f67e9aa65ff96aab7a10f6b88539ecb6b4872e8 SHA512 396f5704dbdf4a090800d236ec6127ee6260daa2a274c2d6c55df38d671e44e3b06fd881c3883da7bd7442b604f4d393f735a44c758aee1bbc8f2d4799ab48de

View File

@@ -1,30 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit gnome.org meson xdg
DESCRIPTION="Mind game - build molecules out of single atoms"
HOMEPAGE="https://wiki.gnome.org/Apps/Atomix"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
>=x11-libs/gtk+-3.10:3
>=x11-libs/gdk-pixbuf-2.0.5:2
>=dev-libs/glib-2.36.0:2
dev-libs/libgnome-games-support:=
"
DEPEND="${RDEPEND}"
BDEPEND="
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}/${P}-fnocommon.patch"
)

View File

@@ -1,26 +0,0 @@
Fixes build with -fno-common
diff -Nurp atomix-3.34.0/src/level.c atomix-3.34.0-fix/src/level.c
--- atomix-3.34.0/src/level.c 2019-09-09 19:14:36.000000000 -0000
+++ atomix-3.34.0-fix/src/level.c 2020-09-12 23:21:04.917492187 -0000
@@ -31,7 +31,7 @@ static void level_class_init (GObjectCla
static void level_init (Level *level);
static void level_finalize (GObject *object);
-GObjectClass *parent_class;
+static GObjectClass *parent_class;
/*=================================================================
diff -Nurp atomix-3.34.0/src/theme.c atomix-3.34.0-fix/src/theme.c
--- atomix-3.34.0/src/theme.c 2019-09-09 19:14:36.000000000 -0000
+++ atomix-3.34.0-fix/src/theme.c 2020-09-12 23:21:19.557735891 -0000
@@ -32,7 +32,7 @@ static void theme_init (Theme *theme);
static void theme_finalize (GObject *object);
static void destroy_theme_image (gpointer data);
-GObjectClass *parent_class;
+static GObjectClass *parent_class;
GType theme_get_type (void)
{