mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
- Update to 1.3
This commit is contained in:
parent
e50a3cd49c
commit
46fa6bfcb6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=416099
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geeqie
|
||||
PORTVERSION= 1.2.3
|
||||
PORTVERSION= 1.3
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.geeqie.org/
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
SHA256 (geeqie-1.2.3.tar.xz) = 2629bf33a9070fad4804b1ef051c3bf8a8fdad3bba4e6188dc20588185003248
|
||||
SIZE (geeqie-1.2.3.tar.xz) = 1129804
|
||||
TIMESTAMP = 1464486383
|
||||
SHA256 (geeqie-1.3.tar.xz) = 4b6f566dd1a8badac68c4353c7dd0f4de17f8627b85a7a70d5eb1ae3b540ec3f
|
||||
SIZE (geeqie-1.3.tar.xz) = 1141820
|
||||
|
@ -1,30 +0,0 @@
|
||||
From 411ef45d8fbda079d51abeba997017e9508fa7a7 Mon Sep 17 00:00:00 2001
|
||||
From: Colin Clark <cclark@mcb.net>
|
||||
Date: Tue, 29 Mar 2016 18:18:05 +0100
|
||||
Subject: [PATCH 1/1] Update for new cogl version
|
||||
|
||||
Parameters for cogl_texture_3d_new_from_data have changed.
|
||||
|
||||
--- src/renderer-clutter.c.orig 2016-03-07 10:21:06 UTC
|
||||
+++ src/renderer-clutter.c
|
||||
@@ -234,7 +234,19 @@ static void rc_prepare_post_process_lut(
|
||||
g_object_unref(tmp_pixbuf);
|
||||
|
||||
DEBUG_0("%s clut upload start", get_exec_time());
|
||||
-#if CLUTTER_CHECK_VERSION(1,10,0)
|
||||
+#if COGL_VERSION_CHECK(1,18,2)
|
||||
+ {
|
||||
+ CoglContext *ctx = clutter_backend_get_cogl_context(clutter_get_default_backend ());
|
||||
+
|
||||
+ tex3d = cogl_texture_3d_new_from_data(ctx,
|
||||
+ CLUT_SIZE, CLUT_SIZE, CLUT_SIZE,
|
||||
+ COGL_PIXEL_FORMAT_RGB_888,
|
||||
+ CLUT_SIZE * 3,
|
||||
+ CLUT_SIZE * CLUT_SIZE * 3,
|
||||
+ clut,
|
||||
+ NULL);
|
||||
+ }
|
||||
+#elif COGL_VERSION_CHECK(1,10,4)
|
||||
{
|
||||
CoglContext *ctx = clutter_backend_get_cogl_context(clutter_get_default_backend ());
|
||||
|
@ -20,6 +20,7 @@ share/locale/ca/LC_MESSAGES/geeqie.mo
|
||||
share/locale/cs/LC_MESSAGES/geeqie.mo
|
||||
share/locale/da/LC_MESSAGES/geeqie.mo
|
||||
share/locale/de/LC_MESSAGES/geeqie.mo
|
||||
share/locale/el/LC_MESSAGES/geeqie.mo
|
||||
share/locale/eo/LC_MESSAGES/geeqie.mo
|
||||
share/locale/es/LC_MESSAGES/geeqie.mo
|
||||
share/locale/et/LC_MESSAGES/geeqie.mo
|
||||
@ -43,6 +44,7 @@ share/locale/sr/LC_MESSAGES/geeqie.mo
|
||||
share/locale/sr@latin/LC_MESSAGES/geeqie.mo
|
||||
share/locale/sv/LC_MESSAGES/geeqie.mo
|
||||
share/locale/th/LC_MESSAGES/geeqie.mo
|
||||
share/locale/tlh/LC_MESSAGES/geeqie.mo
|
||||
share/locale/tr/LC_MESSAGES/geeqie.mo
|
||||
share/locale/uk/LC_MESSAGES/geeqie.mo
|
||||
share/locale/vi/LC_MESSAGES/geeqie.mo
|
||||
|
Loading…
Reference in New Issue
Block a user