games-puzzle/wmpuzzle: drop 0.5.2-r1

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

View File

@@ -1,2 +1 @@
DIST wmpuzzle-0.5.2.tar.gz 87373 BLAKE2B c2187fce6fbfe4f68b969da605755f379d14d47a478c6ca43da25dcb607939cf63552e108073d7031ef0dfc2d5455aade5d2f8617cbadad62587ffcaef95ed1f SHA512 7d171d307e3829005dff4d718161655785e87129b07917d494bb498eff904adafc7c6f83e71f996759ee9e365fe70c67858a5ec9d2647fe573e0a1505126f6c0
DIST wmpuzzle-0.5.3.tar.gz 117479 BLAKE2B 1f471fd8e1643a7d40ac971ffcc1229f02b05df469cffd864148b90ea371eb0501bb0891588a42257ce440e4f5c5b61a76d76b6fcf717d474b83e6886393ce3f SHA512 b986cf8a6d39b37cbbcff8c6d7e858d049d6157b1311134a2e0b604367c096bd3b50da1bf93764061659a3ba85ac5b8c32252d1c9faa80e5cb9c7e1389558e77

View File

@@ -1,24 +0,0 @@
diff -Naur src.orig/wmgeneral.h src/wmgeneral.h
--- src.orig/wmgeneral.h 2002-10-19 11:33:41.000000000 +0200
+++ src/wmgeneral.h 2020-03-01 16:22:30.891485480 +0100
@@ -36,7 +36,7 @@
/* Global variable */
/*******************/
-Display *display;
+extern Display *display;
/***********************/
/* Function Prototypes */
diff -Naur src.orig/wmpuzzle.c src/wmpuzzle.c
--- src.orig/wmpuzzle.c 2013-06-27 20:42:26.000000000 +0200
+++ src/wmpuzzle.c 2020-03-01 16:22:28.716484905 +0100
@@ -41,6 +41,8 @@
int blank = 15,
puzzle[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
+Display *display;
+
int main(int argc, char *argv[])
{
int n,

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop xdg
DESCRIPTION="4x4 puzzle on a 64x64 mini window"
HOMEPAGE="https://people.debian.org/~godisch/wmpuzzle/"
SRC_URI="https://people.debian.org/~godisch/wmpuzzle/${P}.tar.gz"
S="${WORKDIR}/${P}/src"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}"/${P}-gcc-10.patch )
src_install() {
dobin ${PN}
dodoc ../{CHANGES,README}
newicon -s 48 numbers.xpm ${PN}.xpm
doman ${PN}.6
make_desktop_entry ${PN}
}