summaryrefslogtreecommitdiff
path: root/media-gfx/fotoxx/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
commit908778078736bd36f7a60a2d576d415cb8e000fa (patch)
treec6a4796c48b608c14dc7e9674cdbd38f905e3c15 /media-gfx/fotoxx/files
parent185fa19bbf68a4d4dca534d2b46729207a177f16 (diff)
gentoo resync : 22.05.2021
Diffstat (limited to 'media-gfx/fotoxx/files')
-rw-r--r--media-gfx/fotoxx/files/fotoxx-15.05-docdir.patch12
-rw-r--r--media-gfx/fotoxx/files/fotoxx-15.05-gcc-11.patch31
2 files changed, 0 insertions, 43 deletions
diff --git a/media-gfx/fotoxx/files/fotoxx-15.05-docdir.patch b/media-gfx/fotoxx/files/fotoxx-15.05-docdir.patch
deleted file mode 100644
index 8cab49ff51ea..000000000000
--- a/media-gfx/fotoxx/files/fotoxx-15.05-docdir.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- fotoxx-14.10.2.orig/Makefile 2014-10-09 15:17:09.000000000 +0700
-+++ fotoxx-14.10.2/Makefile 2014-10-13 20:44:55.061728475 +0700
-@@ -16,3 +16,3 @@
- LOCALESDIR = $(SHAREDIR)/locales
--DOCDIR = $(PREFIX)/share/doc/fotoxx
-+DOCDIR = $(PREFIX)/share/doc/$(PF)
- MANDIR = $(PREFIX)/share/man/man1
-@@ -90,4 +90,2 @@
- rm -f fotoxx.1.gz
-- # menu (desktop) file
-- cp -f desktop $(DESTDIR)$(MENUFILE)
-
diff --git a/media-gfx/fotoxx/files/fotoxx-15.05-gcc-11.patch b/media-gfx/fotoxx/files/fotoxx-15.05-gcc-11.patch
deleted file mode 100644
index 5d84e687d397..000000000000
--- a/media-gfx/fotoxx/files/fotoxx-15.05-gcc-11.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Fix 'smart_erase_blur' declaration and definition mismatch.
-
-https://bugs.gentoo.org/768207
---- a/f.repair.cc
-+++ b/f.repair.cc
-@@ -2265,7 +2265,7 @@ void smart_erase_func(int mode)
-
- // add blur to the erased area to help mask the side-effects
-
--int smart_erase_blur(float radius)
-+void smart_erase_blur(float radius)
- {
- int ii, px, py, dx, dy, adx, ady;
- float blur_weight[12][12]; // up to blur radius = 10
-@@ -2274,7 +2274,7 @@ int smart_erase_blur(float radius)
- float red, green, blue;
- float *pix9, *pix3, *pixN;
-
-- if (sa_stat != 3) return 0;
-+ if (sa_stat != 3) return;
-
- rad = radius - 0.2;
- rad2 = rad * rad;
-@@ -2342,7 +2342,6 @@ int smart_erase_blur(float radius)
- CEF->Fmods++;
- CEF->Fsaved = 0;
- Fpaint2(); // update window
-- return 0;
- }
-
-