diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-02-02 17:29:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-02-02 17:31:23 +0100 |
commit | a87cda1f0cb270b7ac42ad568394aea6f5ae3756 (patch) | |
tree | e2779817e4d1c2b78183137bbfce24efb5a06e31 /media-gfx | |
parent | dev-python/awxkit: Remove last-rited pkg (diff) | |
download | gentoo-a87cda1f0cb270b7ac42ad568394aea6f5ae3756.tar.gz gentoo-a87cda1f0cb270b7ac42ad568394aea6f5ae3756.tar.bz2 gentoo-a87cda1f0cb270b7ac42ad568394aea6f5ae3756.zip |
media-gfx/figurine: Remove last-rited pkg
Closes: https://bugs.gentoo.org/899790
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/figurine/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/figurine/figurine-1.0.5-r1.ebuild | 24 | ||||
-rw-r--r-- | media-gfx/figurine/files/figurine-1.0.5-fno-common.patch | 115 | ||||
-rw-r--r-- | media-gfx/figurine/metadata.xml | 8 |
4 files changed, 0 insertions, 148 deletions
diff --git a/media-gfx/figurine/Manifest b/media-gfx/figurine/Manifest deleted file mode 100644 index ac399fc647f7..000000000000 --- a/media-gfx/figurine/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST figurine-1.0.5.tar.gz 293105 BLAKE2B 1530ee872cb80e4aa629ec4901c48b49a4aee77667286563da50c037a820ea028defb135e47c1b1b6363b7a59d55d633b30dc516f3b43819b3cc4e61439a6cba SHA512 e3b6a2d0d4b8a4837f27eb40ff158444ff59ac7d826cc780c6c13760e0d6e72844a7b6de69e482dfee12c020600e40c58fb5b4b9efa935342ada6fe62b57eff6 diff --git a/media-gfx/figurine/figurine-1.0.5-r1.ebuild b/media-gfx/figurine/figurine-1.0.5-r1.ebuild deleted file mode 100644 index 1895738ddc54..000000000000 --- a/media-gfx/figurine/figurine-1.0.5-r1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="A vector based graphics editor similar to xfig, but simpler" -HOMEPAGE="http://figurine.sourceforge.net/" -SRC_URI="mirror://sourceforge/figurine/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" - -DEPEND="media-gfx/transfig" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) - -src_configure() { - tc-export CC - econf -} diff --git a/media-gfx/figurine/files/figurine-1.0.5-fno-common.patch b/media-gfx/figurine/files/figurine-1.0.5-fno-common.patch deleted file mode 100644 index 362d40b2257a..000000000000 --- a/media-gfx/figurine/files/figurine-1.0.5-fno-common.patch +++ /dev/null @@ -1,115 +0,0 @@ -https://bugs.gentoo.org/707666 ---- a/src/draw.c -+++ b/src/draw.c -@@ -126,6 +126,8 @@ - #include "include/figurine.h" - #include "include/extern.h" - -+extern GC whitegc; -+ - /* redraws a section of a view */ - /* this should really take a number of disjoint regions */ - void ---- a/src/include/extern.h -+++ b/src/include/extern.h -@@ -285,7 +285,7 @@ extern Pixmap bfills[]; - extern Pixmap nofill; - extern char *filltags[]; - extern char *fontnames[40][2]; --int numfontnames; -+extern int numfontnames; - extern List afonts; - - extern uint justificationicon_number; ---- a/src/include/stk_extern.h -+++ b/src/include/stk_extern.h -@@ -71,8 +71,8 @@ extern GC fontgc; - extern GC sfontgc; - extern GC colgc; - extern Cursor stk_arrow_cursor; --XFontStruct *stk_font; --XFontStruct *stk_sfont; -+extern XFontStruct *stk_font; -+extern XFontStruct *stk_sfont; - extern List stk_window_list; - extern stkInternalMenuBar stk_menu_bar; - extern stkInternalIconPanel stk_icon_panel; ---- a/src/init.c -+++ b/src/init.c -@@ -151,6 +151,8 @@ - /* xbm's for fillstyle */ - #include "pixmaps/fillstyles.h" - -+extern int numfontnames; -+extern GC whitegc; - - static Colormap colourmap; - static Visual *visual; ---- a/src/stk_dialog.c -+++ b/src/stk_dialog.c -@@ -74,6 +74,9 @@ - - static int dial_ticket=0; - -+extern XFontStruct *stk_sfont; -+extern GC whitegc; -+ - void free_list(void *); - void set_window_cursor(Window, int); - ---- a/src/stk_globals.c -+++ b/src/stk_globals.c -@@ -52,7 +52,7 @@ - #include "include/stk.h" - - GC topleftgc; /* top & left decoration */ --GC whitegc; /* white */ -+extern GC whitegc; /* white */ - GC bottomrightgc; /* bottom and right decoration */ - GC backgroundgc; /* standard GC for STK widget */ - GC fontgc; /* for drawing the font */ ---- a/src/stk_init.c -+++ b/src/stk_init.c -@@ -60,6 +60,9 @@ - extern int screen; - extern WindowStruct bar_window; - -+extern XFontStruct *stk_sfont; -+extern GC whitegc; -+ - void free_list(void *); - - void ---- a/src/stk_keyboard.c -+++ b/src/stk_keyboard.c -@@ -59,6 +59,8 @@ - - int str_print(char *str); - -+extern XFontStruct *stk_font; -+ - int str_print(char *str) - { - while (*str!='\0') ---- a/src/stk_menu.c -+++ b/src/stk_menu.c -@@ -85,6 +85,8 @@ - - void free_list(void *); - -+extern XFontStruct *stk_font; -+ - /* create top-level menu bar */ - int - stk_create_menu_bar(WindowStruct window, stkMenuBar *menu) ---- a/src/stk_util.c -+++ b/src/stk_util.c -@@ -70,6 +70,8 @@ - - extern Atom windelete; - -+extern XFontStruct *stk_font; -+ - /* client-side toggle tooltips */ - void - stk_tooltips(Boolean on) diff --git a/media-gfx/figurine/metadata.xml b/media-gfx/figurine/metadata.xml deleted file mode 100644 index dc9ca777dab7..000000000000 --- a/media-gfx/figurine/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="sourceforge">figurine</remote-id> - </upstream> -</pkgmetadata> |