diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2017-04-16 17:42:15 +0200 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2017-04-16 17:42:46 +0200 |
commit | cbe4c6c3a354718374b20e0017069c62e523457e (patch) | |
tree | fe48d83a0cc0c33f80d01ae6bcd6f4c06cdc7ad4 /media-gfx/gnome-raw-thumbnailer/files | |
parent | media-libs/libopenraw: version bump 0.1.0 → 0.1.1 (diff) | |
download | gentoo-cbe4c6c3a354718374b20e0017069c62e523457e.tar.gz gentoo-cbe4c6c3a354718374b20e0017069c62e523457e.tar.bz2 gentoo-cbe4c6c3a354718374b20e0017069c62e523457e.zip |
media-gfx/gnome-raw-thumbnailer: fix build with >=libopenraw-0.1, bug #609970
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-gfx/gnome-raw-thumbnailer/files')
3 files changed, 123 insertions, 0 deletions
diff --git a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-deprecation-warning.patch b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-deprecation-warning.patch new file mode 100644 index 000000000000..8fddadb435ab --- /dev/null +++ b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-deprecation-warning.patch @@ -0,0 +1,63 @@ +From e769ad77617a3456f0f4aee9418ef6bdbab40403 Mon Sep 17 00:00:00 2001 +From: Anton Keks <anton@codeborne.com> +Date: Thu, 2 Jan 2014 23:14:55 +0200 +Subject: [PATCH 1/8] fix deprecation warnings + +--- + src/raw-thumbnailer.c | 11 ++--------- + 1 file changed, 2 insertions(+), 9 deletions(-) + +diff --git a/src/raw-thumbnailer.c b/src/raw-thumbnailer.c +index d638102..b32bc49 100644 +--- a/src/raw-thumbnailer.c ++++ b/src/raw-thumbnailer.c +@@ -64,7 +64,7 @@ save_pixbuf (GdkPixbuf *pixbuf, const char *path, int size) + } + else { + small = pixbuf; +- gdk_pixbuf_ref (small); ++ g_object_ref (small); + } + + a_width = g_strdup_printf ("%d", width); +@@ -88,14 +88,11 @@ save_pixbuf (GdkPixbuf *pixbuf, const char *path, int size) + g_free(a_height); + + if (small) { +- gdk_pixbuf_unref (small); ++ g_object_unref (small); + } + return; + } + +- +- +- + static const GOptionEntry entries[] = { + { "jpeg", 'j', 0, G_OPTION_ARG_NONE, &jpeg_output, "Output the thumbnail as a JPEG instead of PNG", NULL }, + { "size", 's', 0, G_OPTION_ARG_INT, &output_size, "Size of the thumbnail in pixels", NULL }, +@@ -107,8 +104,6 @@ static const GOptionEntry entries[] = { + { NULL } + }; + +- +- + int main (int argc, char ** argv) + { + const char *output_name; +@@ -121,7 +116,6 @@ int main (int argc, char ** argv) + + context = g_option_context_new ("Thumbnail camera RAW files."); + g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE); +- g_type_init (); + + if (g_option_context_parse (context, &argc, &argv, &err) == FALSE) { + g_print ("couldn't parse command-line options: %s\n", err->message); +@@ -161,4 +155,3 @@ int main (int argc, char ** argv) + return 0; + } + +- +-- +2.12.2 + diff --git a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-fix-downscale.patch b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-fix-downscale.patch new file mode 100644 index 000000000000..def91cb3fb39 --- /dev/null +++ b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-fix-downscale.patch @@ -0,0 +1,35 @@ +From 5a03b1a9ffece1d38cc0cf91c599975b9f2b028e Mon Sep 17 00:00:00 2001 +From: Anton Keks <anton@codeborne.com> +Date: Thu, 2 Jan 2014 23:44:03 +0200 +Subject: [PATCH 1/7] downscale thumbnail if requested size is smaller than it + is, do not hardcode 128 + +--- + src/raw-thumbnailer.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/raw-thumbnailer.c b/src/raw-thumbnailer.c +index b32bc49..135dbe3 100644 +--- a/src/raw-thumbnailer.c ++++ b/src/raw-thumbnailer.c +@@ -47,7 +47,7 @@ save_pixbuf (GdkPixbuf *pixbuf, const char *path, int size) + height = gdk_pixbuf_get_height (pixbuf); + width = gdk_pixbuf_get_width (pixbuf); + +- if (size <= 128) { ++ if (size < height || size < width) { + int d_width, d_height; + + if (width > height) { +@@ -143,7 +143,7 @@ int main (int argc, char ** argv) + + char* inputfname = g_filename_from_uri (uri, NULL, NULL); + g_free(uri); +- ++ + pixbuf = or_gdkpixbuf_extract_rotated_thumbnail(inputfname, output_size); + g_free(inputfname); + +-- +2.12.2 + diff --git a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-libopenraw-0.1.patch b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-libopenraw-0.1.patch new file mode 100644 index 000000000000..50e5433809a0 --- /dev/null +++ b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-libopenraw-0.1.patch @@ -0,0 +1,25 @@ +From 5cc4ad36b9f25f6973ae48166595d201f215a012 Mon Sep 17 00:00:00 2001 +From: Gilles Dartiguelongue <eva@gentoo.org> +Date: Sun, 16 Apr 2017 16:50:00 +0200 +Subject: [PATCH] Update pkgconfig name of libopenraw + +--- + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index 0f637b5..26dbf5a 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -22,7 +22,7 @@ PKG_CHECK_MODULES(GNOME, gdk-pixbuf-2.0 gio-2.0 glib-2.0) + AC_SUBST(GNOME_CFLAGS) + AC_SUBST(GNOME_LIBS) + +-PKG_CHECK_MODULES(OPENRAW, libopenraw-gnome-1.0 >= 0.0.9) ++PKG_CHECK_MODULES(OPENRAW, libopenraw-gnome-0.1 >= 0.1.0) + AC_SUBST(OPENRAW_CFLAGS) + AC_SUBST(OPENRAW_LIBS) + +-- +2.12.2 + |