summaryrefslogtreecommitdiff
path: root/games-puzzle/atomix
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-02-21 19:15:18 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-02-21 19:15:18 +0000
commitcd495875e147dea4ad09ca786109d35e80c724d1 (patch)
tree681dd27a9bee25f493b1f33d27fb625dca4f4d19 /games-puzzle/atomix
parent41acd1fc9170cb5dbb6216621dc06e6a4b498809 (diff)
downloadbaldeagleos-repo-cd495875e147dea4ad09ca786109d35e80c724d1.tar.gz
baldeagleos-repo-cd495875e147dea4ad09ca786109d35e80c724d1.tar.xz
baldeagleos-repo-cd495875e147dea4ad09ca786109d35e80c724d1.zip
Adding metadata
Diffstat (limited to 'games-puzzle/atomix')
-rw-r--r--games-puzzle/atomix/Manifest1
-rw-r--r--games-puzzle/atomix/atomix-3.34.0-r1.ebuild30
-rw-r--r--games-puzzle/atomix/files/atomix-3.34.0-fnocommon.patch26
3 files changed, 0 insertions, 57 deletions
diff --git a/games-puzzle/atomix/Manifest b/games-puzzle/atomix/Manifest
index 65533d386eab..357350f02f1a 100644
--- a/games-puzzle/atomix/Manifest
+++ b/games-puzzle/atomix/Manifest
@@ -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
diff --git a/games-puzzle/atomix/atomix-3.34.0-r1.ebuild b/games-puzzle/atomix/atomix-3.34.0-r1.ebuild
deleted file mode 100644
index 75c5b6489394..000000000000
--- a/games-puzzle/atomix/atomix-3.34.0-r1.ebuild
+++ /dev/null
@@ -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"
-)
diff --git a/games-puzzle/atomix/files/atomix-3.34.0-fnocommon.patch b/games-puzzle/atomix/files/atomix-3.34.0-fnocommon.patch
deleted file mode 100644
index 7465fb23a6e2..000000000000
--- a/games-puzzle/atomix/files/atomix-3.34.0-fnocommon.patch
+++ /dev/null
@@ -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)
- {