View | Details | Raw Unified | Return to bug 227769 | Differences between
and this patch

Collapse All | Expand All

(-)devel/glib20/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	glib
4
PORTNAME=	glib
5
PORTVERSION=	2.50.3
5
PORTVERSION=	2.54.3
6
PORTREVISION=	2
6
PORTREVISION=	2
7
PORTEPOCH=	1
7
PORTEPOCH=	1
8
CATEGORIES=	devel
8
CATEGORIES=	devel
Lines 39-45 Link Here
39
39
40
SHEBANG_FILES=	*/*.pl
40
SHEBANG_FILES=	*/*.pl
41
41
42
LIBVERSION=	0.5000.3
42
LIBVERSION=	0.5400.3
43
PLIST_SUB+=	LIBVERSION=${LIBVERSION}
43
PLIST_SUB+=	LIBVERSION=${LIBVERSION}
44
44
45
glib_MAN=	gtester.1 gtester-report.1 glib-gettextize.1
45
glib_MAN=	gtester.1 gtester-report.1 glib-gettextize.1
(-)devel/glib20/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1516046336
1
TIMESTAMP = 1524545452
2
SHA256 (gnome2/glib-2.50.3.tar.xz) = 82ee94bf4c01459b6b00cb9db0545c2237921e3060c0b74cff13fbc020cfd999
2
SHA256 (gnome2/glib-2.54.3.tar.xz) = 963fdc6685dc3da8e5381dfb9f15ca4b5709b28be84d9d05a9bb8e446abac0a8
3
SIZE (gnome2/glib-2.50.3.tar.xz) = 7589284
3
SIZE (gnome2/glib-2.54.3.tar.xz) = 7836536
(-)devel/glib20/files/patch-gio_glib-compile-schemas.c (-5 / +7 lines)
Lines 1-6 Link Here
1
--- gio/glib-compile-schemas.c.orig	2012-06-14 16:39:22.000000000 +0200
1
--- gio/glib-compile-schemas.c.orig	2018-04-24 01:54:51.715984000 -0300
2
+++ gio/glib-compile-schemas.c	2012-06-14 16:39:55.000000000 +0200
2
+++ gio/glib-compile-schemas.c	2018-04-24 01:55:26.063616000 -0300
3
@@ -1204,11 +1204,13 @@
3
@@ -1219,6 +1219,7 @@
4
       return;
4
       return;
5
     }
5
     }
6
 
6
 
Lines 8-15 Link Here
8
   if (path && (g_str_has_prefix (path, "/apps/") ||
8
   if (path && (g_str_has_prefix (path, "/apps/") ||
9
                g_str_has_prefix (path, "/desktop/") ||
9
                g_str_has_prefix (path, "/desktop/") ||
10
                g_str_has_prefix (path, "/system/")))
10
                g_str_has_prefix (path, "/system/")))
11
     g_printerr ("warning: Schema '%s' has path '%s'.  Paths starting with "
11
@@ -1231,6 +1232,7 @@
12
                 "'/apps/', '/desktop/' or '/system/' are deprecated.\n", id, path);
12
       g_printerr ("%s\n", message);
13
       g_free (message);
14
     }
13
+#endif
15
+#endif
14
 
16
 
15
   state->schema_state = schema_state_new (path, gettext_domain,
17
   state->schema_state = schema_state_new (path, gettext_domain,
(-)devel/glib20/files/patch-gio_glocalfileoutputstream.c (-38 lines)
Lines 1-38 Link Here
1
From 45d4b59e3f7ef7b41db08f0c11ee5000126cfedb Mon Sep 17 00:00:00 2001
2
From: Ting-Wei Lan <lantw@src.gnome.org>
3
Date: Sun, 4 Dec 2016 15:02:54 +0800
4
Subject: [PATCH] glocalfileoutputstream: Fix symlink writing on FreeBSD and
5
 NetBSD
6
7
FreeBSD, DragonflyBSD and NetBSD support O_NOFOLLOW, but they use error
8
numbers that are different from what POSIX standard specifies. They are
9
not going to change the behavior, and existing programs on these systems
10
already take advantage of this difference. To support them, we have to
11
add a check in GIO to use different error numbers on these systems.
12
13
https://bugzilla.gnome.org/show_bug.cgi?id=775593
14
---
15
 gio/glocalfileoutputstream.c | 6 ++++++
16
 1 file changed, 6 insertions(+)
17
18
diff --git a/gio/glocalfileoutputstream.c b/gio/glocalfileoutputstream.c
19
index 81184a671..4b3733cce 100644
20
--- gio/glocalfileoutputstream.c
21
+++ gio/glocalfileoutputstream.c
22
@@ -763,7 +763,13 @@ handle_overwrite_open (const char    *filename,
23
 #ifdef O_NOFOLLOW
24
   is_symlink = FALSE;
25
   fd = g_open (filename, open_flags | O_NOFOLLOW, mode);
26
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
27
+  if (fd == -1 && errno == EMLINK)
28
+#elif defined(__NetBSD__)
29
+  if (fd == -1 && errno == EFTYPE)
30
+#else
31
   if (fd == -1 && errno == ELOOP)
32
+#endif
33
     {
34
       /* Could be a symlink, or it could be a regular ELOOP error,
35
        * but then the next open will fail too. */
36
-- 
37
2.13.0
38
(-)devel/glib20/files/patch-gio_kqueue_kqueue-helper.c (-42 / +12 lines)
Lines 7-15 Link Here
7
https://bugzilla.gnome.org/show_bug.cgi?id=776147
7
https://bugzilla.gnome.org/show_bug.cgi?id=776147
8
https://git.gnome.org/browse/glib/commit/?id=76072a2dde4a4acc8be8d3c47efbc6811ebe0c1e
8
https://git.gnome.org/browse/glib/commit/?id=76072a2dde4a4acc8be8d3c47efbc6811ebe0c1e
9
9
10
--- gio/kqueue/kqueue-helper.c.orig	2018-01-28 21:18:25.213606000 +0100
10
--- gio/kqueue/kqueue-helper.c.orig	2018-04-24 02:03:10.585559000 -0300
11
+++ gio/kqueue/kqueue-helper.c	2018-01-28 21:18:34.964780000 +0100
11
+++ gio/kqueue/kqueue-helper.c	2018-04-24 02:09:51.829153000 -0300
12
@@ -43,7 +43,7 @@ static gboolean kh_debug_enabled = FALSE;
12
@@ -43,7 +43,7 @@
13
 #define KH_W if (kh_debug_enabled) g_warning
13
 #define KH_W if (kh_debug_enabled) g_warning
14
 
14
 
15
 static GHashTable *subs_hash_table = NULL;
15
 static GHashTable *subs_hash_table = NULL;
Lines 18-36 Link Here
18
 
18
 
19
 static int kqueue_descriptor = -1;
19
 static int kqueue_descriptor = -1;
20
 static int kqueue_socket_pair[] = {-1, -1};
20
 static int kqueue_socket_pair[] = {-1, -1};
21
@@ -97,8 +97,10 @@ convert_kqueue_events_to_gio (uint32_t flags, gboolean
21
@@ -293,10 +293,10 @@
22
     }
23
   if (flags & NOTE_RENAME)
24
     {
25
+      /* Since there’s apparently no way to get the new name of the file out of
26
+       * kqueue(), all we can do is say that this one has been deleted. */
27
       *done = TRUE;
28
-      return G_FILE_MONITOR_EVENT_MOVED;
29
+      return G_FILE_MONITOR_EVENT_DELETED;
30
     }
31
   if (flags & NOTE_REVOKE)
32
     {
33
@@ -291,10 +293,10 @@ process_kqueue_notifications (GIOChannel   *gioc,
34
 
22
 
35
   G_LOCK (hash_lock);
23
   G_LOCK (hash_lock);
36
   sub = (kqueue_sub *) g_hash_table_lookup (subs_hash_table, GINT_TO_POINTER (n.fd));
24
   sub = (kqueue_sub *) g_hash_table_lookup (subs_hash_table, GINT_TO_POINTER (n.fd));
Lines 42-48 Link Here
42
       KH_W ("Got a notification for a deleted or non-existing subscription %d",
30
       KH_W ("Got a notification for a deleted or non-existing subscription %d",
43
              n.fd);
31
              n.fd);
44
       return TRUE;
32
       return TRUE;
45
@@ -336,6 +338,7 @@ process_kqueue_notifications (GIOChannel   *gioc,
33
@@ -338,6 +338,7 @@
46
         g_file_monitor_source_handle_event (source, mask, NULL, NULL, NULL, g_get_monotonic_time ());
34
         g_file_monitor_source_handle_event (source, mask, NULL, NULL, NULL, g_get_monotonic_time ());
47
     }
35
     }
48
 
36
 
Lines 50-56 Link Here
50
   return TRUE;
38
   return TRUE;
51
 }
39
 }
52
 
40
 
53
@@ -451,13 +454,14 @@ _kh_start_watching (kqueue_sub *sub)
41
@@ -453,13 +454,14 @@
54
 
42
 
55
   G_LOCK (hash_lock);
43
   G_LOCK (hash_lock);
56
   g_hash_table_insert (subs_hash_table, GINT_TO_POINTER (sub->fd), sub);
44
   g_hash_table_insert (subs_hash_table, GINT_TO_POINTER (sub->fd), sub);
Lines 61-96 Link Here
61
   /* Bump the kqueue thread. It will pick up a new sub entry to monitor */
49
   /* Bump the kqueue thread. It will pick up a new sub entry to monitor */
62
   if (!_ku_write (kqueue_socket_pair[0], "A", 1))
50
   if (!_ku_write (kqueue_socket_pair[0], "A", 1))
63
     KH_W ("Failed to bump the kqueue thread (add fd, error %d)", errno);
51
     KH_W ("Failed to bump the kqueue thread (add fd, error %d)", errno);
52
+  
64
+  G_UNLOCK (hash_lock);
53
+  G_UNLOCK (hash_lock);
65
+
66
   return TRUE;
54
   return TRUE;
67
 }
55
 }
68
 
56
 
69
@@ -498,22 +502,15 @@ _kh_add_sub (kqueue_sub *sub)
57
@@ -506,9 +508,7 @@
70
 gboolean
71
 _kh_cancel_sub (kqueue_sub *sub)
72
 {
73
-  gboolean missing = FALSE;
74
+  gboolean removed = FALSE;
75
   g_assert (kqueue_socket_pair[0] != -1);
76
   g_assert (sub != NULL);
77
 
58
 
59
   _km_remove (sub);
60
 
78
-  G_LOCK (hash_lock);
61
-  G_LOCK (hash_lock);
79
-  missing = !g_hash_table_remove (subs_hash_table, GINT_TO_POINTER (sub->fd));
62
   removed = g_hash_table_remove (subs_hash_table, GINT_TO_POINTER (sub->fd));
80
-  G_UNLOCK (hash_lock);
63
-  G_UNLOCK (hash_lock);
81
+  _km_remove (sub);
82
 
64
 
83
-  if (missing)
65
   if (removed)
84
-    {
85
-      /* If there were no fd for this subscription, file is still
86
-       * missing. */
87
-      KH_W ("Removing subscription from missing");
88
-      _km_remove (sub);
89
-    }
90
-  else
91
+  removed = g_hash_table_remove (subs_hash_table, GINT_TO_POINTER (sub->fd));
92
+
93
+  if (removed)
94
     {
66
     {
95
       /* fd will be closed in the kqueue thread */
96
       _kqueue_thread_remove_fd (sub->fd);
(-)devel/glib20/pkg-plist (-6 / +10 lines)
Lines 13-21 Link Here
13
bin/gsettings
13
bin/gsettings
14
bin/gtester
14
bin/gtester
15
bin/gtester-report
15
bin/gtester-report
16
share/bash-completion/completions/gapplication
16
share/bash-completion/completions/gdbus
17
share/bash-completion/completions/gdbus
18
share/bash-completion/completions/gresource
17
share/bash-completion/completions/gsettings
19
share/bash-completion/completions/gsettings
18
share/bash-completion/completions/gresource
19
include/gio-unix-2.0/gio/gdesktopappinfo.h
20
include/gio-unix-2.0/gio/gdesktopappinfo.h
20
include/gio-unix-2.0/gio/gfiledescriptorbased.h
21
include/gio-unix-2.0/gio/gfiledescriptorbased.h
21
include/gio-unix-2.0/gio/gunixconnection.h
22
include/gio-unix-2.0/gio/gunixconnection.h
Lines 174-182 Link Here
174
include/glib-2.0/gio/gvolumemonitor.h
175
include/glib-2.0/gio/gvolumemonitor.h
175
include/glib-2.0/gio/gzlibcompressor.h
176
include/glib-2.0/gio/gzlibcompressor.h
176
include/glib-2.0/gio/gzlibdecompressor.h
177
include/glib-2.0/gio/gzlibdecompressor.h
177
include/glib-2.0/glib-object.h
178
include/glib-2.0/glib-unix.h
179
include/glib-2.0/glib.h
180
include/glib-2.0/glib/deprecated/gallocator.h
178
include/glib-2.0/glib/deprecated/gallocator.h
181
include/glib-2.0/glib/deprecated/gcache.h
179
include/glib-2.0/glib/deprecated/gcache.h
182
include/glib-2.0/glib/deprecated/gcompletion.h
180
include/glib-2.0/glib/deprecated/gcompletion.h
Lines 251-262 Link Here
251
include/glib-2.0/glib/gunicode.h
249
include/glib-2.0/glib/gunicode.h
252
include/glib-2.0/glib/gurifuncs.h
250
include/glib-2.0/glib/gurifuncs.h
253
include/glib-2.0/glib/gutils.h
251
include/glib-2.0/glib/gutils.h
252
include/glib-2.0/glib/guuid.h
254
include/glib-2.0/glib/gvariant.h
253
include/glib-2.0/glib/gvariant.h
255
include/glib-2.0/glib/gvarianttype.h
254
include/glib-2.0/glib/gvarianttype.h
256
include/glib-2.0/glib/gversion.h
255
include/glib-2.0/glib/gversion.h
257
include/glib-2.0/glib/gversionmacros.h
256
include/glib-2.0/glib/gversionmacros.h
258
include/glib-2.0/glib/gwin32.h
257
include/glib-2.0/glib/gwin32.h
259
include/glib-2.0/gmodule.h
260
include/glib-2.0/gobject/gbinding.h
258
include/glib-2.0/gobject/gbinding.h
261
include/glib-2.0/gobject/gboxed.h
259
include/glib-2.0/gobject/gboxed.h
262
include/glib-2.0/gobject/gclosure.h
260
include/glib-2.0/gobject/gclosure.h
Lines 265-271 Link Here
265
include/glib-2.0/gobject/gmarshal.h
263
include/glib-2.0/gobject/gmarshal.h
266
include/glib-2.0/gobject/gobject-autocleanups.h
264
include/glib-2.0/gobject/gobject-autocleanups.h
267
include/glib-2.0/gobject/gobject.h
265
include/glib-2.0/gobject/gobject.h
268
include/glib-2.0/gobject/gobjectnotifyqueue.c
269
include/glib-2.0/gobject/gparam.h
266
include/glib-2.0/gobject/gparam.h
270
include/glib-2.0/gobject/gparamspecs.h
267
include/glib-2.0/gobject/gparamspecs.h
271
include/glib-2.0/gobject/gsignal.h
268
include/glib-2.0/gobject/gsignal.h
Lines 277-282 Link Here
277
include/glib-2.0/gobject/gvaluearray.h
274
include/glib-2.0/gobject/gvaluearray.h
278
include/glib-2.0/gobject/gvaluecollector.h
275
include/glib-2.0/gobject/gvaluecollector.h
279
include/glib-2.0/gobject/gvaluetypes.h
276
include/glib-2.0/gobject/gvaluetypes.h
277
include/glib-2.0/gobject/gobjectnotifyqueue.c
278
include/glib-2.0/glib-object.h
279
include/glib-2.0/glib-unix.h
280
include/glib-2.0/glib.h
281
include/glib-2.0/gmodule.h
280
lib/glib-2.0/include/glibconfig.h
282
lib/glib-2.0/include/glibconfig.h
281
lib/libgio-2.0.a
283
lib/libgio-2.0.a
282
lib/libgio-2.0.so
284
lib/libgio-2.0.so
Lines 356-361 Link Here
356
share/glib-2.0/gdb/gobject_gdb.py
358
share/glib-2.0/gdb/gobject_gdb.py
357
share/glib-2.0/gettext/po/Makefile.in.in
359
share/glib-2.0/gettext/po/Makefile.in.in
358
share/glib-2.0/schemas/gschema.dtd
360
share/glib-2.0/schemas/gschema.dtd
361
share/glib-2.0/valgrind/glib.supp
359
%%NLS%%share/locale/af/LC_MESSAGES/glib20.mo
362
%%NLS%%share/locale/af/LC_MESSAGES/glib20.mo
360
%%NLS%%share/locale/am/LC_MESSAGES/glib20.mo
363
%%NLS%%share/locale/am/LC_MESSAGES/glib20.mo
361
%%NLS%%share/locale/an/LC_MESSAGES/glib20.mo
364
%%NLS%%share/locale/an/LC_MESSAGES/glib20.mo
Lines 387-392 Link Here
387
%%NLS%%share/locale/fa/LC_MESSAGES/glib20.mo
390
%%NLS%%share/locale/fa/LC_MESSAGES/glib20.mo
388
%%NLS%%share/locale/fi/LC_MESSAGES/glib20.mo
391
%%NLS%%share/locale/fi/LC_MESSAGES/glib20.mo
389
%%NLS%%share/locale/fr/LC_MESSAGES/glib20.mo
392
%%NLS%%share/locale/fr/LC_MESSAGES/glib20.mo
393
%%NLS%%share/locale/fur/LC_MESSAGES/glib20.mo
390
%%NLS%%share/locale/ga/LC_MESSAGES/glib20.mo
394
%%NLS%%share/locale/ga/LC_MESSAGES/glib20.mo
391
%%NLS%%share/locale/gd/LC_MESSAGES/glib20.mo
395
%%NLS%%share/locale/gd/LC_MESSAGES/glib20.mo
392
%%NLS%%share/locale/gl/LC_MESSAGES/glib20.mo
396
%%NLS%%share/locale/gl/LC_MESSAGES/glib20.mo
(-)graphics/gegl/Makefile (-34 / +20 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	gegl
4
PORTNAME=	gegl
5
PORTVERSION=	0.2.0
5
PORTVERSION=	0.3.34
6
PORTREVISION=	21
6
PORTREVISION=	0
7
CATEGORIES=	graphics
7
CATEGORIES=	graphics
8
MASTER_SITES=	GIMP
8
MASTER_SITES=	GIMP
9
9
Lines 15-21 Link Here
15
LICENSE_FILE_GPLv3+ =	${WRKSRC}/COPYING
15
LICENSE_FILE_GPLv3+ =	${WRKSRC}/COPYING
16
LICENSE_FILE_LGPL3+ =	${WRKSRC}/COPYING.LESSER
16
LICENSE_FILE_LGPL3+ =	${WRKSRC}/COPYING.LESSER
17
17
18
LIB_DEPENDS=	libbabl-0.1.so:x11/babl
18
LIB_DEPENDS=	libbabl-0.1.so:x11/babl \
19
		libpng.so:graphics/png \
20
		libjson-glib-1.0.so:devel/json-glib
19
21
20
BROKEN_aarch64=		fails to build: gmake index.html: Segmentation fault in docs/gallery/
22
BROKEN_aarch64=		fails to build: gmake index.html: Segmentation fault in docs/gallery/
21
23
Lines 22-40 Link Here
22
# ignore new versions until we can replace this version with gegl 3.x
24
# ignore new versions until we can replace this version with gegl 3.x
23
PORTSCOUT=	ignore:1
25
PORTSCOUT=	ignore:1
24
26
25
OPTIONS_DEFINE=	CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER JPEG \
27
OPTIONS_DEFINE=	CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER \
26
		LUA OPENEXR OPENRAW SIMD PANGO PNG LIBRSVG2 SDL SPIRO V4L \
28
		LUA OPENEXR SIMD PANGO LIBRAW LIBRSVG2 SDL SPIRO V4L \
27
		DOCS EXAMPLES
29
		DOCS EXAMPLES
28
OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER JPEG LUA \
30
OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER LUA \
29
		OPENEXR OPENRAW PANGO PNG LIBRSVG2 SDL SPIRO V4L
31
		OPENEXR PANGO LIBRAW LIBRSVG2 SDL SPIRO V4L
30
32
31
ENSCRIPT_DESC=	Enscript support
33
ENSCRIPT_DESC=	Enscript support
32
SPIRO_DESC=	Spiro support
34
SPIRO_DESC=	Spiro support
33
#UMFPACK_DESC=	UMFpack support
35
#UMFPACK_DESC=	UMFpack support
36
LIBRAW_DESC=	Raw image support
34
37
35
USES=		cpe gettext gmake libtool pathfix pkgconfig shebangfix tar:bzip2
38
USES=		cpe gettext gmake jpeg libtool pathfix pkgconfig shebangfix tar:bzip2
36
USE_GNOME=	glib20 intltool
39
USE_GNOME=	glib20 intltool
37
USE_LDCONFIG=	${PREFIX}/lib/gegl-0.2
40
USE_LDCONFIG=	${PREFIX}/lib/gegl-0.3
38
GNU_CONFIGURE=	yes
41
GNU_CONFIGURE=	yes
39
CONFIGURE_ENV=	ac_cv_header_execinfo_h=no
42
CONFIGURE_ENV=	ac_cv_header_execinfo_h=no
40
CONFIGURE_ARGS=	--without-vala --disable-docs
43
CONFIGURE_ARGS=	--without-vala --disable-docs
Lines 43-51 Link Here
43
CPPFLAGS+=	-I${LOCALBASE}/include
46
CPPFLAGS+=	-I${LOCALBASE}/include
44
LDFLAGS+=	-L${LOCALBASE}/lib -lintl
47
LDFLAGS+=	-L${LOCALBASE}/lib -lintl
45
48
46
GEGL_MINOR=	199
49
GEGL_VER=	0.3
47
GEGL_VER=	0.2
50
PLIST_SUB+=	GEGL_VER=${GEGL_VER}
48
PLIST_SUB+=	GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER}
49
51
50
EXAMPLES=	2geglbuffer csugar float-lookup \
52
EXAMPLES=	2geglbuffer csugar float-lookup \
51
		gegl-convert gegl-slicer geglbuffer-add-image \
53
		gegl-convert gegl-slicer geglbuffer-add-image \
Lines 112-125 Link Here
112
PLIST_SUB+=	JP2="@comment "
114
PLIST_SUB+=	JP2="@comment "
113
.endif
115
.endif
114
116
115
.if ${PORT_OPTIONS:MJPEG}
116
USES+=		jpeg
117
PLIST_SUB+=	JPEG=""
118
.else
119
CONFIGURE_ARGS+=--without-libjpeg
120
PLIST_SUB+=	JPEG="@comment "
121
.endif
122
123
.if ${PORT_OPTIONS:MLUA}
117
.if ${PORT_OPTIONS:MLUA}
124
USES+=		lua
118
USES+=		lua
125
.else
119
.else
Lines 134-158 Link Here
134
PLIST_SUB+=	OPENEXR="@comment "
128
PLIST_SUB+=	OPENEXR="@comment "
135
.endif
129
.endif
136
130
137
.if ${PORT_OPTIONS:MOPENRAW}
138
LIB_DEPENDS+=	libopenraw.so:graphics/libopenraw
139
PLIST_SUB+=	OPENRAW=""
140
.else
141
CONFIGURE_ARGS+=--without-libopenraw
142
PLIST_SUB+=	OPENRAW="@comment "
143
.endif
144
145
.if ! ${PORT_OPTIONS:MSIMD}
131
.if ! ${PORT_OPTIONS:MSIMD}
146
CONFIGURE_ARGS+=--disable-mmx \
132
CONFIGURE_ARGS+=--disable-mmx \
147
		--disable-sse
133
		--disable-sse
148
.endif
134
.endif
149
135
150
.if ${PORT_OPTIONS:MPNG}
136
.if ${PORT_OPTIONS:MLIBRAW}
151
LIB_DEPENDS+=	libpng.so:graphics/png
137
LIB_DEPENDS+=	libraw.so:graphics/libraw
152
PLIST_SUB+=	PNG=""
138
PLIST_SUB+=	LIBRAW=""
153
.else
139
.else
154
CONFIGURE_ARGS+=--without-libpng
140
CONFIGURE_ARGS+=--without-libraw
155
PLIST_SUB+=	PNG="@comment "
141
PLIST_SUB+=	LIBRAW="@comment "
156
.endif
142
.endif
157
143
158
.if ${PORT_OPTIONS:MLIBRSVG2}
144
.if ${PORT_OPTIONS:MLIBRSVG2}
Lines 253-258 Link Here
253
	${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR}
239
	${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR}
254
.endfor
240
.endfor
255
.endif
241
.endif
256
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gegl-0.2/*.so
242
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gegl-0.3/*.so
257
243
258
.include <bsd.port.mk>
244
.include <bsd.port.mk>
(-)graphics/gegl/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (gegl-0.2.0.tar.bz2) = df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426
1
TIMESTAMP = 1524542320
2
SIZE (gegl-0.2.0.tar.bz2) = 7502040
2
SHA256 (gegl-0.3.34.tar.bz2) = 5ca2227655ebf1ab2e252cee3eede219c758336394288ef301b93264b9411304
3
SIZE (gegl-0.3.34.tar.bz2) = 6707964
(-)graphics/gegl/pkg-plist (-159 / +88 lines)
Lines 1-17 Link Here
1
bin/gegl
1
bin/gegl
2
bin/gcut
3
bin/gegl-imgcmp
4
include/gegl-%%GEGL_VER%%/gegl-apply.h
5
include/gegl-%%GEGL_VER%%/gegl-audio-fragment.h
2
include/gegl-%%GEGL_VER%%/gegl-buffer-backend.h
6
include/gegl-%%GEGL_VER%%/gegl-buffer-backend.h
7
include/gegl-%%GEGL_VER%%/gegl-buffer-cl-iterator.h
3
include/gegl-%%GEGL_VER%%/gegl-buffer-iterator.h
8
include/gegl-%%GEGL_VER%%/gegl-buffer-iterator.h
4
include/gegl-%%GEGL_VER%%/gegl-buffer.h
9
include/gegl-%%GEGL_VER%%/gegl-buffer.h
5
include/gegl-%%GEGL_VER%%/gegl-chant.h
6
include/gegl-%%GEGL_VER%%/gegl-color.h
10
include/gegl-%%GEGL_VER%%/gegl-color.h
11
include/gegl-%%GEGL_VER%%/gegl-cpuaccel.h
7
include/gegl-%%GEGL_VER%%/gegl-curve.h
12
include/gegl-%%GEGL_VER%%/gegl-curve.h
13
include/gegl-%%GEGL_VER%%/gegl-debug.h
8
include/gegl-%%GEGL_VER%%/gegl-enums.h
14
include/gegl-%%GEGL_VER%%/gegl-enums.h
15
include/gegl-%%GEGL_VER%%/gegl-graph-debug.h
16
include/gegl-%%GEGL_VER%%/gegl-init.h
9
include/gegl-%%GEGL_VER%%/gegl-lookup.h
17
include/gegl-%%GEGL_VER%%/gegl-lookup.h
10
include/gegl-%%GEGL_VER%%/gegl-matrix.h
18
include/gegl-%%GEGL_VER%%/gegl-matrix.h
19
include/gegl-%%GEGL_VER%%/gegl-node.h
20
include/gegl-%%GEGL_VER%%/gegl-op.h
21
include/gegl-%%GEGL_VER%%/gegl-operations-util.h
11
include/gegl-%%GEGL_VER%%/gegl-paramspecs.h
22
include/gegl-%%GEGL_VER%%/gegl-paramspecs.h
12
include/gegl-%%GEGL_VER%%/gegl-path.h
23
include/gegl-%%GEGL_VER%%/gegl-path.h
13
include/gegl-%%GEGL_VER%%/gegl-plugin.h
24
include/gegl-%%GEGL_VER%%/gegl-plugin.h
25
include/gegl-%%GEGL_VER%%/gegl-processor.h
26
include/gegl-%%GEGL_VER%%/gegl-random.h
14
include/gegl-%%GEGL_VER%%/gegl-tile-backend.h
27
include/gegl-%%GEGL_VER%%/gegl-tile-backend.h
28
include/gegl-%%GEGL_VER%%/gegl-tile-handler.h
15
include/gegl-%%GEGL_VER%%/gegl-tile-source.h
29
include/gegl-%%GEGL_VER%%/gegl-tile-source.h
16
include/gegl-%%GEGL_VER%%/gegl-tile.h
30
include/gegl-%%GEGL_VER%%/gegl-tile.h
17
include/gegl-%%GEGL_VER%%/gegl-types.h
31
include/gegl-%%GEGL_VER%%/gegl-types.h
Lines 18-23 Link Here
18
include/gegl-%%GEGL_VER%%/gegl-utils.h
32
include/gegl-%%GEGL_VER%%/gegl-utils.h
19
include/gegl-%%GEGL_VER%%/gegl-version.h
33
include/gegl-%%GEGL_VER%%/gegl-version.h
20
include/gegl-%%GEGL_VER%%/gegl.h
34
include/gegl-%%GEGL_VER%%/gegl.h
35
include/gegl-%%GEGL_VER%%/npd/deformation.h
36
include/gegl-%%GEGL_VER%%/npd/graphics.h
37
include/gegl-%%GEGL_VER%%/npd/lattice_cut.h
38
include/gegl-%%GEGL_VER%%/npd/npd.h
39
include/gegl-%%GEGL_VER%%/npd/npd_common.h
40
include/gegl-%%GEGL_VER%%/npd/npd_debug.h
41
include/gegl-%%GEGL_VER%%/npd/npd_gegl.h
42
include/gegl-%%GEGL_VER%%/npd/npd_math.h
21
include/gegl-%%GEGL_VER%%/opencl/cl.h
43
include/gegl-%%GEGL_VER%%/opencl/cl.h
22
include/gegl-%%GEGL_VER%%/opencl/cl_d3d10.h
44
include/gegl-%%GEGL_VER%%/opencl/cl_d3d10.h
23
include/gegl-%%GEGL_VER%%/opencl/cl_ext.h
45
include/gegl-%%GEGL_VER%%/opencl/cl_ext.h
Lines 26-220 Link Here
26
include/gegl-%%GEGL_VER%%/opencl/cl_platform.h
48
include/gegl-%%GEGL_VER%%/opencl/cl_platform.h
27
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-color.h
49
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-color.h
28
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-init.h
50
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-init.h
51
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-random.h
29
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-types.h
52
include/gegl-%%GEGL_VER%%/opencl/gegl-cl-types.h
30
include/gegl-%%GEGL_VER%%/opencl/gegl-cl.h
53
include/gegl-%%GEGL_VER%%/opencl/gegl-cl.h
31
include/gegl-%%GEGL_VER%%/opencl/opencl.h
54
include/gegl-%%GEGL_VER%%/opencl/opencl.h
55
include/gegl-%%GEGL_VER%%/operation/gegl-extension-handler.h
32
include/gegl-%%GEGL_VER%%/operation/gegl-operation-area-filter.h
56
include/gegl-%%GEGL_VER%%/operation/gegl-operation-area-filter.h
33
include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer.h
57
include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer.h
34
include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer3.h
58
include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer3.h
59
include/gegl-%%GEGL_VER%%/operation/gegl-operation-context.h
35
include/gegl-%%GEGL_VER%%/operation/gegl-operation-filter.h
60
include/gegl-%%GEGL_VER%%/operation/gegl-operation-filter.h
61
include/gegl-%%GEGL_VER%%/operation/gegl-operation-handlers.h
62
include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta-json.h
36
include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta.h
63
include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta.h
37
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer.h
64
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer.h
38
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer3.h
65
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer3.h
39
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-filter.h
66
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-filter.h
40
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-render.h
67
include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-render.h
68
include/gegl-%%GEGL_VER%%/operation/gegl-operation-property-keys.h
41
include/gegl-%%GEGL_VER%%/operation/gegl-operation-sink.h
69
include/gegl-%%GEGL_VER%%/operation/gegl-operation-sink.h
42
include/gegl-%%GEGL_VER%%/operation/gegl-operation-source.h
70
include/gegl-%%GEGL_VER%%/operation/gegl-operation-source.h
43
include/gegl-%%GEGL_VER%%/operation/gegl-operation-temporal.h
71
include/gegl-%%GEGL_VER%%/operation/gegl-operation-temporal.h
44
include/gegl-%%GEGL_VER%%/operation/gegl-operation.h
72
include/gegl-%%GEGL_VER%%/operation/gegl-operation.h
45
%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so
73
include/gegl-%%GEGL_VER%%/sc/sc-common.h
46
%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so
74
include/gegl-%%GEGL_VER%%/sc/sc-context.h
47
%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so
75
include/gegl-%%GEGL_VER%%/sc/sc-outline.h
76
include/gegl-%%GEGL_VER%%/sc/sc-sample.h
48
%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so
77
%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so
49
%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-load.so
78
%%JP2%%lib/gegl-%%GEGL_VER%%/jp2-load.so
50
%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-save.so
79
lib/gegl-%%GEGL_VER%%/jpg-load.so
80
lib/gegl-%%GEGL_VER%%/jpg-save.so
51
%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so
81
%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so
52
%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so
82
%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so
53
%%OPENRAW%%lib/gegl-%%GEGL_VER%%/openraw.so
83
lib/gegl-%%GEGL_VER%%/gegl-common-gpl3.so
54
%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so
84
lib/gegl-%%GEGL_VER%%/gegl-common.so
55
%%PNG%%lib/gegl-%%GEGL_VER%%/png-load.so
85
lib/gegl-%%GEGL_VER%%/gegl-core.so
56
%%PNG%%lib/gegl-%%GEGL_VER%%/png-save.so
86
lib/gegl-%%GEGL_VER%%/gegl-generated.so
57
%%RSVG%%lib/gegl-%%GEGL_VER%%/svg-load.so
87
lib/gegl-%%GEGL_VER%%/lcms-from-profile.so
58
%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so
88
lib/gegl-%%GEGL_VER%%/npd.so
59
%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so
89
lib/gegl-%%GEGL_VER%%/npy-save.so
60
lib/gegl-%%GEGL_VER%%/add.so
61
lib/gegl-%%GEGL_VER%%/bilateral-filter.so
62
lib/gegl-%%GEGL_VER%%/box-blur.so
63
lib/gegl-%%GEGL_VER%%/brightness-contrast.so
64
lib/gegl-%%GEGL_VER%%/buffer-sink.so
65
lib/gegl-%%GEGL_VER%%/buffer-source.so
66
lib/gegl-%%GEGL_VER%%/c2g.so
67
lib/gegl-%%GEGL_VER%%/checkerboard.so
68
lib/gegl-%%GEGL_VER%%/clear.so
69
lib/gegl-%%GEGL_VER%%/clone.so
70
lib/gegl-%%GEGL_VER%%/color-burn.so
71
lib/gegl-%%GEGL_VER%%/color-dodge.so
72
lib/gegl-%%GEGL_VER%%/color-temperature.so
73
lib/gegl-%%GEGL_VER%%/color-to-alpha.so
74
lib/gegl-%%GEGL_VER%%/color.so
75
lib/gegl-%%GEGL_VER%%/contrast-curve.so
76
lib/gegl-%%GEGL_VER%%/convert-format.so
77
lib/gegl-%%GEGL_VER%%/crop.so
78
lib/gegl-%%GEGL_VER%%/darken.so
79
lib/gegl-%%GEGL_VER%%/difference-of-gaussians.so
80
lib/gegl-%%GEGL_VER%%/difference.so
81
lib/gegl-%%GEGL_VER%%/display.so
82
lib/gegl-%%GEGL_VER%%/divide.so
83
lib/gegl-%%GEGL_VER%%/dropshadow.so
84
lib/gegl-%%GEGL_VER%%/dst-atop.so
85
lib/gegl-%%GEGL_VER%%/dst-in.so
86
lib/gegl-%%GEGL_VER%%/dst-out.so
87
lib/gegl-%%GEGL_VER%%/dst-over.so
88
lib/gegl-%%GEGL_VER%%/dst.so
89
lib/gegl-%%GEGL_VER%%/edge-laplace.so
90
lib/gegl-%%GEGL_VER%%/edge-sobel.so
91
lib/gegl-%%GEGL_VER%%/exclusion.so
92
lib/gegl-%%GEGL_VER%%/exp-combine.so
93
lib/gegl-%%GEGL_VER%%/fattal02.so
94
lib/gegl-%%GEGL_VER%%/fractal-explorer.so
95
lib/gegl-%%GEGL_VER%%/gamma.so
96
lib/gegl-%%GEGL_VER%%/gaussian-blur.so
97
lib/gegl-%%GEGL_VER%%/gegl-buffer-load-op.so
98
lib/gegl-%%GEGL_VER%%/gegl-buffer-save-op.so
99
lib/gegl-%%GEGL_VER%%/grey.so
100
lib/gegl-%%GEGL_VER%%/grid.so
101
lib/gegl-%%GEGL_VER%%/hard-light.so
102
lib/gegl-%%GEGL_VER%%/introspect.so
103
lib/gegl-%%GEGL_VER%%/invert.so
104
%%JP2%%lib/gegl-%%GEGL_VER%%/jp2-load.so
105
lib/gegl-%%GEGL_VER%%/layer.so
106
lib/gegl-%%GEGL_VER%%/lens-distortion.so
107
lib/gegl-%%GEGL_VER%%/levels.so
108
lib/gegl-%%GEGL_VER%%/lighten.so
109
lib/gegl-%%GEGL_VER%%/load.so
110
lib/gegl-%%GEGL_VER%%/magick-load.so
111
lib/gegl-%%GEGL_VER%%/mantiuk06.so
112
lib/gegl-%%GEGL_VER%%/map-absolute.so
113
lib/gegl-%%GEGL_VER%%/map-relative.so
114
lib/gegl-%%GEGL_VER%%/matting-global.so
115
lib/gegl-%%GEGL_VER%%/mblur.so
116
lib/gegl-%%GEGL_VER%%/mirrors.so
117
lib/gegl-%%GEGL_VER%%/mono-mixer.so
118
lib/gegl-%%GEGL_VER%%/motion-blur.so
119
lib/gegl-%%GEGL_VER%%/multiply.so
120
lib/gegl-%%GEGL_VER%%/noise-reduction.so
121
lib/gegl-%%GEGL_VER%%/noise.so
122
lib/gegl-%%GEGL_VER%%/nop.so
123
lib/gegl-%%GEGL_VER%%/opacity.so
124
lib/gegl-%%GEGL_VER%%/open-buffer.so
125
lib/gegl-%%GEGL_VER%%/over.so
126
lib/gegl-%%GEGL_VER%%/overlay.so
127
%%GDK%%lib/gegl-%%GEGL_VER%%/pixbuf.so
90
%%GDK%%lib/gegl-%%GEGL_VER%%/pixbuf.so
128
lib/gegl-%%GEGL_VER%%/pixelize.so
91
lib/gegl-%%GEGL_VER%%/png-load.so
129
lib/gegl-%%GEGL_VER%%/plus.so
92
lib/gegl-%%GEGL_VER%%/png-save.so
130
lib/gegl-%%GEGL_VER%%/polar-coordinates.so
93
%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so
131
lib/gegl-%%GEGL_VER%%/posterize.so
132
lib/gegl-%%GEGL_VER%%/ppm-load.so
94
lib/gegl-%%GEGL_VER%%/ppm-load.so
133
lib/gegl-%%GEGL_VER%%/ppm-save.so
95
lib/gegl-%%GEGL_VER%%/ppm-save.so
134
lib/gegl-%%GEGL_VER%%/raw-load.so
96
%%LIBRAW%%lib/gegl-%%GEGL_VER%%/raw-load.so
135
lib/gegl-%%GEGL_VER%%/rectangle.so
136
lib/gegl-%%GEGL_VER%%/reinhard05.so
137
lib/gegl-%%GEGL_VER%%/remap.so
138
lib/gegl-%%GEGL_VER%%/rgbe-load.so
97
lib/gegl-%%GEGL_VER%%/rgbe-load.so
139
lib/gegl-%%GEGL_VER%%/rgbe-save.so
98
lib/gegl-%%GEGL_VER%%/rgbe-save.so
140
lib/gegl-%%GEGL_VER%%/ripple.so
141
%%GDK%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so
99
%%GDK%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so
142
lib/gegl-%%GEGL_VER%%/save.so
100
%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so
143
lib/gegl-%%GEGL_VER%%/screen.so
101
lib/gegl-%%GEGL_VER%%/seamless-clone-compose.so
144
lib/gegl-%%GEGL_VER%%/snn-mean.so
102
lib/gegl-%%GEGL_VER%%/seamless-clone.so
145
lib/gegl-%%GEGL_VER%%/soft-light.so
103
%%RSVG%%lib/gegl-%%GEGL_VER%%/svg-load.so
146
lib/gegl-%%GEGL_VER%%/src-atop.so
104
%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so
147
lib/gegl-%%GEGL_VER%%/src-in.so
105
lib/gegl-%%GEGL_VER%%/tiff-load.so
148
lib/gegl-%%GEGL_VER%%/src-out.so
106
lib/gegl-%%GEGL_VER%%/tiff-save.so
149
lib/gegl-%%GEGL_VER%%/src-over.so
150
lib/gegl-%%GEGL_VER%%/src.so
151
lib/gegl-%%GEGL_VER%%/stress.so
152
lib/gegl-%%GEGL_VER%%/stretch-contrast.so
153
lib/gegl-%%GEGL_VER%%/subtract.so
154
lib/gegl-%%GEGL_VER%%/svg-huerotate.so
155
lib/gegl-%%GEGL_VER%%/svg-luminancetoalpha.so
156
lib/gegl-%%GEGL_VER%%/svg-matrix.so
157
lib/gegl-%%GEGL_VER%%/svg-multiply.so
158
lib/gegl-%%GEGL_VER%%/svg-saturate.so
159
lib/gegl-%%GEGL_VER%%/threshold.so
160
lib/gegl-%%GEGL_VER%%/transformops.so
107
lib/gegl-%%GEGL_VER%%/transformops.so
161
lib/gegl-%%GEGL_VER%%/unsharp-mask.so
108
%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so
162
lib/gegl-%%GEGL_VER%%/value-invert.so
109
%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so
163
lib/gegl-%%GEGL_VER%%/vignette.so
110
%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so
164
lib/gegl-%%GEGL_VER%%/waves.so
111
lib/gegl-%%GEGL_VER%%/webp-load.so
165
lib/gegl-%%GEGL_VER%%/weighted-blend.so
112
lib/gegl-%%GEGL_VER%%/webp-save.so
166
lib/gegl-%%GEGL_VER%%/write-buffer.so
113
lib/gegl-%%GEGL_VER%%/grey2.json
167
lib/gegl-%%GEGL_VER%%/xor.so
114
lib/girepository-1.0/Gegl-%%GEGL_VER%%.typelib
168
lib/libgegl-%%GEGL_VER%%.so
115
lib/libgegl-%%GEGL_VER%%.so
169
lib/libgegl-%%GEGL_VER%%.so.0
116
lib/libgegl-%%GEGL_VER%%.so.0
170
lib/libgegl-%%GEGL_VER%%.so.0.199.1
117
lib/libgegl-%%GEGL_VER%%.so.0.334.0
118
lib/libgegl-npd-%%GEGL_VER%%.so
119
lib/libgegl-sc-%%GEGL_VER%%.so
171
libdata/pkgconfig/gegl-%%GEGL_VER%%.pc
120
libdata/pkgconfig/gegl-%%GEGL_VER%%.pc
172
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
121
libdata/pkgconfig/gegl-sc-%%GEGL_VER%%.pc
173
%%PORTDOCS%%%%DOCSDIR%%/api.html
122
share/locale/bs/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
174
%%PORTDOCS%%%%DOCSDIR%%/brightness-contrast.c.html
123
share/locale/ca/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
175
%%PORTDOCS%%%%DOCSDIR%%/devhelp.css
124
share/locale/da/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
176
%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.png
125
share/locale/de/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
177
%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.txt
126
share/locale/el/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
178
%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.xml
127
share/locale/en_GB/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
179
%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.png
128
share/locale/eo/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
180
%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.txt
181
%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.xml
182
%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.png
183
%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.txt
184
%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.xml
185
%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.png
186
%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.txt
187
%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.xml
188
%%PORTDOCS%%%%DOCSDIR%%/gallery/index.html
189
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-area-filter.h.html
190
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-composer.h.html
191
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-filter.h.html
192
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-meta.h.html
193
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-composer.h.html
194
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-filter.h.html
195
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-render.h.html
196
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-sink.h.html
197
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-source.h.html
198
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-temporal.h.html
199
%%PORTDOCS%%%%DOCSDIR%%/gegl-operation.h.html
200
%%PORTDOCS%%%%DOCSDIR%%/gegl-plugin.h.html
201
%%PORTDOCS%%%%DOCSDIR%%/gegl.css
202
%%PORTDOCS%%%%DOCSDIR%%/gegl.devhelp
203
%%PORTDOCS%%%%DOCSDIR%%/gegl.h.html
204
%%PORTDOCS%%%%DOCSDIR%%/index.html
205
%%PORTDOCS%%%%DOCSDIR%%/operations.html
206
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/surfer.png
207
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2geglbuffer.c
208
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csugar.c
209
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/float-lookup.c
210
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-convert.c
211
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-slicer.c
212
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-add-image.c
213
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-clock.c
214
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world-video.c
215
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world.c
216
share/locale/es/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
129
share/locale/es/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
130
share/locale/eu/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
217
share/locale/fr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
131
share/locale/fr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
132
share/locale/gl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
133
share/locale/id/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
134
share/locale/is/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
135
share/locale/it/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
136
share/locale/ko/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
137
share/locale/lv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
138
share/locale/nb/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
139
share/locale/oc/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
218
share/locale/pl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
140
share/locale/pl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
141
share/locale/pt/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
142
share/locale/pt_BR/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
219
share/locale/ru/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
143
share/locale/ru/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
144
share/locale/sk/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
220
share/locale/sl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
145
share/locale/sl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
146
share/locale/sr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
147
share/locale/sv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
148
share/locale/tr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
149
share/locale/zh_CN/LC_MESSAGES/gegl-%%GEGL_VER%%.mo
(-)graphics/gimp-app-devel/Makefile (+144 lines)
Line 0 Link Here
1
# Created by: erich@FreeBSD.org
2
# $FreeBSD$
3
4
PORTNAME?=	gimp-app
5
PORTVERSION=	2.10.0
6
PORTREVISION=	1
7
PORTEPOCH?=	1
8
CATEGORIES?=	graphics gnome
9
MASTER_SITES=	GIMP/gimp/v${PORTVERSION:R}
10
DISTNAME=	gimp-${PORTVERSION}-RC2
11
12
MAINTAINER=	gnome@FreeBSD.org
13
COMMENT=	GNU Image Manipulation Program (development version)
14
15
LICENSE=	GPLv3 LGPL3
16
LICENSE_COMB=	multi
17
18
BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes \
19
		${LOCALBASE}/libdata/pkgconfig/mypaint-brushes-1.0.pc:graphics/mypaint-brushes
20
LIB_DEPENDS=	libpng.so:graphics/png \
21
		libtiff.so:graphics/tiff \
22
		libgegl-0.3.so:graphics/gegl \
23
		libgexiv2.so:graphics/gexiv2 \
24
		libbabl-0.1.so:x11/babl \
25
		libfontconfig.so:x11-fonts/fontconfig \
26
		libfreetype.so:print/freetype2 \
27
		libmypaint.so:graphics/libmypaint
28
29
RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes \
30
		${LOCALBASE}/libdata/pkgconfig/mypaint-brushes-1.0.pc:graphics/mypaint-brushes
31
32
GNU_CONFIGURE=	yes
33
USES+=		cpe gettext gmake jpeg libtool \
34
		localbase pathfix pkgconfig shebangfix tar:bzip2
35
USE_XORG=	ice sm xcursor xext xfixes xmu xpm xt x11
36
USE_GNOME+=	cairo gtk20 gvfs intlhack
37
USE_LDCONFIG=	yes
38
INSTALLS_ICONS=	yes
39
INSTALL_TARGET=	install-strip
40
TEST_TARGET=	check
41
.if !defined(XAUTHORITY)
42
TEST_ENV=	XAUTHORITY=${HOME}/.Xauthority
43
.endif
44
CONFIGURE_ARGS?=--with-html-dir=${PREFIX}/share/doc/gimp \
45
		--disable-gtk-doc \
46
		--without-linux-input \
47
		--with-print \
48
		--enable-default-binary \
49
		--enable-gimp-console \
50
		--with-desktop-dir=${PREFIX}/share \
51
		--docdir=${PREFIX}/share/doc/gimp \
52
		--enable-bundled-mypaint-brushes
53
CONFIGURE_ENV=	GIMP_THREAD_LIBS=-lpthread
54
LIBS+=		-lexecinfo
55
CPE_PRODUCT=	gimp
56
CPE_VENDOR=	gnu
57
58
SHEBANG_FILES=	plug-ins/pygimp/plug-ins/*.py
59
60
PLIST_SUB+=	LIBVER=0.1000.${PORTVERSION:E}
61
62
.if !defined(GIMP_SLAVE)
63
64
USES+=		desktop-file-utils
65
66
OPTIONS_DEFINE?=	AA LIBEXIF GHOSTSCRIPT HELPBROWSER LIBMNG OPENEXR \
67
			POPPLER PYTHON SIMD WMF
68
OPTIONS_DEFAULT=	AA LIBEXIF HELPBROWSER LIBMNG POPPLER PYTHON WMF
69
OPTIONS_SUB=		yes
70
AA_DESC=		Ascii-art Plug-in
71
HELPBROWSER_DESC=	Internal help browser
72
PYTHON_DESC=		Python-fu support (formerly graphics/py-gimp)
73
74
.endif
75
76
.if defined(GIMP_SLAVE)
77
PKG_CONFIG?=	${LOCALBASE}/bin/pkg-config
78
GIMP_LIBS=	`${PKG_CONFIG} --libs gimp-2.0`
79
GIMP_THUMB_LIBS=`${PKG_CONFIG} --libs gimpthumb-2.0`
80
GIMP_UI_LIBS=	`${PKG_CONFIG} --libs gimpui-2.0`
81
82
LIB_DEPENDS+=	libgimp-2.0.so:graphics/gimp-app-devel
83
84
.else
85
86
DEBUG_CONFIGURE_ON=	--enable-debug
87
88
AA_LIB_DEPENDS=		libaa.so:graphics/aalib
89
AA_CONFIGURE_OFF=	--without-aa
90
91
GHOSTSCRIPT_USES=		ghostscript
92
GHOSTSCRIPT_CONFIGURE_WITH=	gs
93
94
HELPBROWSER_LIB_DEPENDS=	libwebkitgtk-1.0.so:www/webkit-gtk2 \
95
				libsoup-2.4.so:devel/libsoup
96
HELPBROWSER_CONFIGURE_WITH=	webkit
97
98
LIBEXIF_LIB_DEPENDS=	libexif.so:graphics/libexif
99
100
LIBMNG_LIB_DEPENDS=	libmng.so:graphics/libmng
101
LIBMNG_CONFIGURE_OFF=	--without-libmng
102
103
OPENEXR_LIB_DEPENDS=	libIlmImf.so:graphics/OpenEXR
104
105
# Needs PyGTK 2.10.4, pygtk-codegen-2.0
106
PYTHON_USES=		python
107
PYTHON_CONFIGURE_OFF=	--disable-python
108
PYTHON_BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/pygtk-2.0.pc:x11-toolkits/py-gtk2
109
PYTHON_RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/pygtk-2.0.pc:x11-toolkits/py-gtk2
110
111
POPPLER_LIB_DEPENDS=	libpoppler-glib.so:graphics/poppler-glib
112
113
SIMD_CONFIGURE_OFF=	--disable-mmx \
114
			--disable-sse \
115
			--disable-altivec
116
117
WMF_LIB_DEPENDS=	libwmf.so:graphics/libwmf
118
WMF_CONFIGURE_OFF=	--without-wmf
119
120
.endif
121
122
post-install:
123
	${MKDIR} ${STAGEDIR}${PREFIX}/share/appdata
124
	${INSTALL_DATA} ${STAGEDIR}${PREFIX}/share/metainfo/gimp-data-extras.metainfo.xml \
125
	    ${STAGEDIR}${PREFIX}/share/appdata
126
	${INSTALL_DATA} ${STAGEDIR}${PREFIX}/share/metainfo/org.gimp.GIMP.appdata.xml \
127
	    ${STAGEDIR}${PREFIX}/share/appdata
128
	@for F in gimp gimp-console gimptool; do \
129
	    echo "${LN} -sf $$F-2.10 ${STAGEDIR}${PREFIX}/bin/$$F"; \
130
	    ${LN} -sf $$F-2.10 ${STAGEDIR}${PREFIX}/bin/$$F; \
131
	done
132
133
post-patch:
134
	@${REINPLACE_CMD} -e 's|%%GIMP_LIBS%%|${GIMP_LIBS}|; \
135
		s|%%GIMP_THUMB_LIBS%%|${GIMP_THUMB_LIBS}|; \
136
		s|%%GIMP_UI_LIBS%%|${GIMP_UI_LIBS}|' \
137
			${WRKSRC}/plug-ins/pygimp/Makefile.in
138
	@${REINPLACE_CMD} -e 's/-u /-Wl,-u,/' \
139
		${WRKSRC}/app/Makefile.in
140
	@${REINPLACE_CMD} -e 's|"libpng"|"libpng15"|' \
141
		-e 's|x86_64|amd64|g' \
142
		${WRKSRC}/configure
143
144
.include <bsd.port.mk>
(-)graphics/gimp-app-devel/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1524540937
2
SHA256 (gimp-2.10.0-RC2.tar.bz2) = 8b7de80c312d4a774d773e2713d7089cf99d1c0ff8f64d8bd476e88d7978ec3d
3
SIZE (gimp-2.10.0-RC2.tar.bz2) = 26253856
(-)graphics/gimp-app-devel/files/patch-app_actions_layers-actions_c (+37 lines)
Line 0 Link Here
1
Add "Select and Show" Next/Previous Layer actions.
2
3
--- app/actions/layers-actions.c.orig	2018-03-25 09:35:18.000000000 -0300
4
+++ app/actions/layers-actions.c	2018-04-24 11:25:58.209888000 -0300
5
@@ -567,6 +567,21 @@
6
     GIMP_HELP_LAYER_NEXT }
7
 };
8
 
9
+static const GimpEnumActionEntry layers_select_show_actions[] =
10
+{
11
+  { "layers-select-show-previous", NULL,
12
+    NC_("layers-action", "Select and Show _Previous Layer"), "Prior",
13
+    NC_("layers-action", "Select and set visible the layer above the current layer"),
14
+    GIMP_ACTION_SELECT_PREVIOUS, FALSE,
15
+    GIMP_HELP_LAYER_PREVIOUS },
16
+
17
+  { "layers-select-show-next", NULL,
18
+    NC_("layers-action", "Select and Show Next Layer"), "Next",
19
+    NC_("layers-action", "Select and set visible the layer below the current layer"),
20
+    GIMP_ACTION_SELECT_NEXT, FALSE,
21
+    GIMP_HELP_LAYER_NEXT },
22
+};
23
+
24
 static const GimpEnumActionEntry layers_opacity_actions[] =
25
 {
26
   { "layers-opacity-set", GIMP_ICON_TRANSPARENCY,
27
@@ -728,6 +743,10 @@
28
                                       layers_select_actions,
29
                                       G_N_ELEMENTS (layers_select_actions),
30
                                       G_CALLBACK (layers_select_cmd_callback));
31
+  gimp_action_group_add_enum_actions (group, "layers-action",
32
+                                      layers_select_show_actions,
33
+                                      G_N_ELEMENTS (layers_select_show_actions),
34
+                                      G_CALLBACK (layers_select_show_cmd_callback));
35
 
36
   gimp_action_group_add_enum_actions (group, NULL,
37
                                       layers_opacity_actions,
(-)graphics/gimp-app-devel/files/patch-app_actions_layers-commands_c (+42 lines)
Line 0 Link Here
1
Add "Select and Show" Next/Previous Layer actions.
2
3
--- app/actions/layers-commands.c.orig	2018-03-25 09:35:18.000000000 -0300
4
+++ app/actions/layers-commands.c	2018-04-24 11:13:55.073482000 -0300
5
@@ -470,6 +470,37 @@
6
 }
7
 
8
 void
9
+layers_select_show_cmd_callback (GtkAction *action,
10
+                                 gint       value,
11
+                                 gpointer   data)
12
+{
13
+  GimpImage     *image;
14
+  GimpLayer     *layer;
15
+  GimpContainer *container;
16
+  GimpLayer     *new_layer;
17
+  return_if_no_image (image, data);
18
+
19
+  layer = gimp_image_get_active_layer (image);
20
+
21
+  if (layer)
22
+    container = gimp_item_get_container (GIMP_ITEM (layer));
23
+  else
24
+    container = gimp_image_get_layers (image);
25
+
26
+  new_layer = (GimpLayer *) action_select_object ((GimpActionSelectType) value,
27
+                                                  container,
28
+                                                  (GimpObject *) layer);
29
+
30
+  if (new_layer && new_layer != layer)
31
+    {
32
+      gimp_image_set_active_layer (image, new_layer);
33
+      gimp_item_set_visible(GIMP_ITEM(new_layer), TRUE, FALSE);
34
+      if (layer) { gimp_item_set_visible(GIMP_ITEM(layer), FALSE, FALSE); }
35
+      gimp_image_flush (image);
36
+    }
37
+}
38
+
39
+void
40
 layers_raise_cmd_callback (GtkAction *action,
41
                            gpointer   data)
42
 {
(-)graphics/gimp-app-devel/files/patch-app_actions_layers-commands_h (+15 lines)
Line 0 Link Here
1
Add "Select and Show" Next/Previous Layer actions.
2
3
--- app/actions/layers-commands.h.orig	2018-04-24 11:14:11.250509000 -0300
4
+++ app/actions/layers-commands.h	2018-04-24 11:14:21.536043000 -0300
5
@@ -40,6 +40,10 @@
6
                                                gint         value,
7
                                                gpointer     data);
8
 
9
+void   layers_select_show_cmd_callback        (GtkAction   *action,
10
+                                               gint         value,
11
+                                               gpointer     data);
12
+
13
 void   layers_raise_cmd_callback              (GtkAction   *action,
14
                                                gpointer     data);
15
 void   layers_raise_to_top_cmd_callback       (GtkAction   *action,
(-)graphics/gimp-app-devel/files/patch-configure (+15 lines)
Line 0 Link Here
1
--- configure.orig	2013-02-03 09:15:30.000000000 +0000
2
+++ configure	2013-02-03 09:15:31.000000000 +0000
3
@@ -23307,9 +23307,9 @@
4
 fi
5
 
6
 
7
-gimpdatadir="$datadir/$PACKAGE/2.0"
8
-gimpplugindir="$libdir/$PACKAGE/2.0"
9
-gimpsysconfdir="$sysconfdir/$PACKAGE/2.0"
10
+gimpdatadir="$datadir/$PACKAGE"
11
+gimpplugindir="$libexecdir/$PACKAGE/2.2"
12
+gimpsysconfdir="$sysconfdir/$PACKAGE/2.2"
13
 
14
 
15
 
(-)graphics/gimp-app-devel/files/patch-libgimp_gimp.c (+20 lines)
Line 0 Link Here
1
--- libgimp/gimp.c.orig	2018-04-24 00:39:30.093999000 -0300
2
+++ libgimp/gimp.c	2018-04-24 00:39:45.818430000 -0300
3
@@ -28,6 +28,7 @@
4
 #include <stdlib.h>
5
 #include <string.h>
6
 #include <sys/types.h>
7
+#include <floatingpoint.h>
8
 
9
 #ifdef HAVE_SYS_TIME_H
10
 #include <sys/time.h>
11
@@ -451,6 +452,9 @@ gimp_main (const GimpPlugInInfo *info,
12
 
13
   progname = argv[ARG_PROGNAME];
14
 
15
+  /* Ignore floating point exceptions */
16
+  fpsetmask(0);
17
+
18
   basename = g_path_get_basename (progname);
19
 
20
   g_set_prgname (basename);
(-)graphics/gimp-app-devel/files/patch-libgimpbase_gimputils_c (+17 lines)
Line 0 Link Here
1
--- libgimpbase/gimputils.c.orig	2018-04-24 06:29:34.129910000 -0300
2
+++ libgimpbase/gimputils.c	2018-04-24 06:33:32.580466000 -0300
3
@@ -1179,7 +1179,13 @@
4
 #if defined(G_OS_WIN32)
5
   DWORD    tid = GetCurrentThreadId ();
6
 #else
7
-  long     tid = syscall (SYS_gettid);
8
+  long     tid;
9
+#endif
10
+
11
+#if defined(__FreeBSD__)
12
+  thr_self(&tid);
13
+#else
14
+  tid = syscall (SYS_gettid);
15
 #endif
16
 
17
   g_snprintf (gimp_pid, 16, "%u", (guint) pid);
(-)graphics/gimp-app-devel/files/patch-plug-ins_file-tiff_file-tiff-load_c (+11 lines)
Line 0 Link Here
1
--- plug-ins/file-tiff/file-tiff-load.c.orig	2018-04-24 11:28:35.154223000 -0300
2
+++ plug-ins/file-tiff/file-tiff-load.c	2018-04-24 11:30:48.111440000 -0300
3
@@ -765,7 +765,7 @@
4
       {
5
         gfloat   xres = 72.0;
6
         gfloat   yres = 72.0;
7
-        gushort  read_unit;
8
+        gushort  read_unit = RESUNIT_NONE;
9
         GimpUnit unit = GIMP_UNIT_PIXEL; /* invalid unit */
10
 
11
         if (TIFFGetField (tif, TIFFTAG_XRESOLUTION, &xres))
(-)graphics/gimp-app-devel/pkg-descr (+19 lines)
Line 0 Link Here
1
The GIMP is designed to provide an intuitive graphical interface to a
2
variety of image editing operations. Here is a list of the GIMP's
3
major features:
4
5
 Image editing
6
 -------------
7
8
   *  Selection tools including rectangle, ellipse, free, fuzzy, bezier
9
      and intelligent.
10
   *  Transformation tools including rotate, scale, shear and flip.
11
   *  Painting tools including bucket, brush, airbrush, clone, convolve,
12
      blend and text.
13
   *  Effects filters (such as blur, edge detect).
14
   *  Channel & color operations (such as add, composite, decompose).
15
   *  Plug-ins which allow for the easy addition of new file formats and
16
      new effect filters.
17
   *  Multiple undo/redo.
18
19
WWW: https://www.gimp.org/
(-)graphics/gimp-app-devel/pkg-message (+7 lines)
Line 0 Link Here
1
On FreeBSD 10.3 gimp can cause the following error.
2
3
(script-fu:3985): LibGimp-ERROR **: shmat() failed: Invalid argument
4
Could not attach to gimp shared memory segment
5
6
This can be fixed by setting kern.ipc.shm_allow_removed=1 in /etc/sysctl.conf.
7
FreeBSD 11.0-R and newer have this set by default.
(-)graphics/gimp-app-devel/pkg-plist (+4369 lines)
Line 0 Link Here
1
bin/gimp-2.10
2
bin/gimp
3
bin/gimp-console-2.10
4
bin/gimp-console
5
bin/gimptool-2.0
6
bin/gimptool
7
etc/gimp/2.2/controllerrc
8
etc/gimp/2.2/gimprc
9
etc/gimp/2.2/gtkrc
10
etc/gimp/2.2/menurc
11
etc/gimp/2.2/sessionrc
12
etc/gimp/2.2/templaterc
13
etc/gimp/2.2/unitrc
14
include/gimp-2.0/libgimp/gimp.h
15
include/gimp-2.0/libgimp/gimp_pdb.h
16
include/gimp-2.0/libgimp/gimp_pdb_headers.h
17
include/gimp-2.0/libgimp/gimpaspectpreview.h
18
include/gimp-2.0/libgimp/gimpbrush_pdb.h
19
include/gimp-2.0/libgimp/gimpbrushes.h
20
include/gimp-2.0/libgimp/gimpbrushes_pdb.h
21
include/gimp-2.0/libgimp/gimpbrushmenu.h
22
include/gimp-2.0/libgimp/gimpbrushselect.h
23
include/gimp-2.0/libgimp/gimpbrushselect_pdb.h
24
include/gimp-2.0/libgimp/gimpbrushselectbutton.h
25
include/gimp-2.0/libgimp/gimpbuffer_pdb.h
26
include/gimp-2.0/libgimp/gimpchannel.h
27
include/gimp-2.0/libgimp/gimpchannel_pdb.h
28
include/gimp-2.0/libgimp/gimpcolor_pdb.h
29
include/gimp-2.0/libgimp/gimpcontext_pdb.h
30
include/gimp-2.0/libgimp/gimpdebug_pdb.h
31
include/gimp-2.0/libgimp/gimpdisplay_pdb.h
32
include/gimp-2.0/libgimp/gimpdrawable.h
33
include/gimp-2.0/libgimp/gimpdrawable_pdb.h
34
include/gimp-2.0/libgimp/gimpdrawablecolor_pdb.h
35
include/gimp-2.0/libgimp/gimpdrawableedit_pdb.h
36
include/gimp-2.0/libgimp/gimpdrawablepreview.h
37
include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h
38
include/gimp-2.0/libgimp/gimpdynamics_pdb.h
39
include/gimp-2.0/libgimp/gimpedit.h
40
include/gimp-2.0/libgimp/gimpedit_pdb.h
41
include/gimp-2.0/libgimp/gimpenums.h
42
include/gimp-2.0/libgimp/gimpexport.h
43
include/gimp-2.0/libgimp/gimpfileops_pdb.h
44
include/gimp-2.0/libgimp/gimpfloatingsel_pdb.h
45
include/gimp-2.0/libgimp/gimpfontmenu.h
46
include/gimp-2.0/libgimp/gimpfonts_pdb.h
47
include/gimp-2.0/libgimp/gimpfontselect.h
48
include/gimp-2.0/libgimp/gimpfontselect_pdb.h
49
include/gimp-2.0/libgimp/gimpfontselectbutton.h
50
include/gimp-2.0/libgimp/gimpgimprc.h
51
include/gimp-2.0/libgimp/gimpgimprc_pdb.h
52
include/gimp-2.0/libgimp/gimpgradient_pdb.h
53
include/gimp-2.0/libgimp/gimpgradientmenu.h
54
include/gimp-2.0/libgimp/gimpgradients.h
55
include/gimp-2.0/libgimp/gimpgradients_pdb.h
56
include/gimp-2.0/libgimp/gimpgradientselect.h
57
include/gimp-2.0/libgimp/gimpgradientselect_pdb.h
58
include/gimp-2.0/libgimp/gimpgradientselectbutton.h
59
include/gimp-2.0/libgimp/gimphelp_pdb.h
60
include/gimp-2.0/libgimp/gimpimage.h
61
include/gimp-2.0/libgimp/gimpimage_pdb.h
62
include/gimp-2.0/libgimp/gimpimagecolorprofile.h
63
include/gimp-2.0/libgimp/gimpimagecolorprofile_pdb.h
64
include/gimp-2.0/libgimp/gimpimagecombobox.h
65
include/gimp-2.0/libgimp/gimpimageconvert_pdb.h
66
include/gimp-2.0/libgimp/gimpimagegrid_pdb.h
67
include/gimp-2.0/libgimp/gimpimageguides_pdb.h
68
include/gimp-2.0/libgimp/gimpimagemetadata.h
69
include/gimp-2.0/libgimp/gimpimagesamplepoints_pdb.h
70
include/gimp-2.0/libgimp/gimpimageselect_pdb.h
71
include/gimp-2.0/libgimp/gimpimagetransform_pdb.h
72
include/gimp-2.0/libgimp/gimpimageundo_pdb.h
73
include/gimp-2.0/libgimp/gimpitem_pdb.h
74
include/gimp-2.0/libgimp/gimpitemcombobox.h
75
include/gimp-2.0/libgimp/gimpitemtransform_pdb.h
76
include/gimp-2.0/libgimp/gimplayer.h
77
include/gimp-2.0/libgimp/gimplayer_pdb.h
78
include/gimp-2.0/libgimp/gimpmenu.h
79
include/gimp-2.0/libgimp/gimpmessage_pdb.h
80
include/gimp-2.0/libgimp/gimppainttools_pdb.h
81
include/gimp-2.0/libgimp/gimppalette.h
82
include/gimp-2.0/libgimp/gimppalette_pdb.h
83
include/gimp-2.0/libgimp/gimppalettemenu.h
84
include/gimp-2.0/libgimp/gimppalettes.h
85
include/gimp-2.0/libgimp/gimppalettes_pdb.h
86
include/gimp-2.0/libgimp/gimppaletteselect.h
87
include/gimp-2.0/libgimp/gimppaletteselect_pdb.h
88
include/gimp-2.0/libgimp/gimppaletteselectbutton.h
89
include/gimp-2.0/libgimp/gimppaths_pdb.h
90
include/gimp-2.0/libgimp/gimppattern_pdb.h
91
include/gimp-2.0/libgimp/gimppatternmenu.h
92
include/gimp-2.0/libgimp/gimppatterns.h
93
include/gimp-2.0/libgimp/gimppatterns_pdb.h
94
include/gimp-2.0/libgimp/gimppatternselect.h
95
include/gimp-2.0/libgimp/gimppatternselect_pdb.h
96
include/gimp-2.0/libgimp/gimppatternselectbutton.h
97
include/gimp-2.0/libgimp/gimppixbuf.h
98
include/gimp-2.0/libgimp/gimppixelfetcher.h
99
include/gimp-2.0/libgimp/gimppixelrgn.h
100
include/gimp-2.0/libgimp/gimpplugin.h
101
include/gimp-2.0/libgimp/gimpplugin_pdb.h
102
include/gimp-2.0/libgimp/gimpprocbrowserdialog.h
103
include/gimp-2.0/libgimp/gimpproceduraldb.h
104
include/gimp-2.0/libgimp/gimpproceduraldb_pdb.h
105
include/gimp-2.0/libgimp/gimpprocview.h
106
include/gimp-2.0/libgimp/gimpprogress.h
107
include/gimp-2.0/libgimp/gimpprogress_pdb.h
108
include/gimp-2.0/libgimp/gimpprogressbar.h
109
include/gimp-2.0/libgimp/gimpregioniterator.h
110
include/gimp-2.0/libgimp/gimpselectbutton.h
111
include/gimp-2.0/libgimp/gimpselection.h
112
include/gimp-2.0/libgimp/gimpselection_pdb.h
113
include/gimp-2.0/libgimp/gimpselectiontools_pdb.h
114
include/gimp-2.0/libgimp/gimptextlayer_pdb.h
115
include/gimp-2.0/libgimp/gimptexttool_pdb.h
116
include/gimp-2.0/libgimp/gimptile.h
117
include/gimp-2.0/libgimp/gimptransformtools_pdb.h
118
include/gimp-2.0/libgimp/gimptypes.h
119
include/gimp-2.0/libgimp/gimpui.h
120
include/gimp-2.0/libgimp/gimpuitypes.h
121
include/gimp-2.0/libgimp/gimpunit_pdb.h
122
include/gimp-2.0/libgimp/gimpvectors.h
123
include/gimp-2.0/libgimp/gimpvectors_pdb.h
124
include/gimp-2.0/libgimp/gimpzoompreview.h
125
include/gimp-2.0/libgimpbase/gimpbase.h
126
include/gimp-2.0/libgimpbase/gimpbaseenums.h
127
include/gimp-2.0/libgimpbase/gimpbasetypes.h
128
include/gimp-2.0/libgimpbase/gimpchecks.h
129
include/gimp-2.0/libgimpbase/gimpcpuaccel.h
130
include/gimp-2.0/libgimpbase/gimpdatafiles.h
131
include/gimp-2.0/libgimpbase/gimpenv.h
132
include/gimp-2.0/libgimpbase/gimplimits.h
133
include/gimp-2.0/libgimpbase/gimpmemsize.h
134
include/gimp-2.0/libgimpbase/gimpmetadata.h
135
include/gimp-2.0/libgimpbase/gimpparam.h
136
include/gimp-2.0/libgimpbase/gimpparasite.h
137
include/gimp-2.0/libgimpbase/gimpparasiteio.h
138
include/gimp-2.0/libgimpbase/gimprectangle.h
139
include/gimp-2.0/libgimpbase/gimpsignal.h
140
include/gimp-2.0/libgimpbase/gimpunit.h
141
include/gimp-2.0/libgimpbase/gimputils.h
142
include/gimp-2.0/libgimpbase/gimpvaluearray.h
143
include/gimp-2.0/libgimpbase/gimpversion.h
144
include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h
145
include/gimp-2.0/libgimpcolor/gimpbilinear.h
146
include/gimp-2.0/libgimpcolor/gimpcairo.h
147
include/gimp-2.0/libgimpcolor/gimpcmyk.h
148
include/gimp-2.0/libgimpcolor/gimpcolor.h
149
include/gimp-2.0/libgimpcolor/gimpcolormanaged.h
150
include/gimp-2.0/libgimpcolor/gimpcolorprofile.h
151
include/gimp-2.0/libgimpcolor/gimpcolorspace.h
152
include/gimp-2.0/libgimpcolor/gimpcolortransform.h
153
include/gimp-2.0/libgimpcolor/gimpcolortypes.h
154
include/gimp-2.0/libgimpcolor/gimphsl.h
155
include/gimp-2.0/libgimpcolor/gimphsv.h
156
include/gimp-2.0/libgimpcolor/gimppixbuf.h
157
include/gimp-2.0/libgimpcolor/gimprgb.h
158
include/gimp-2.0/libgimpconfig/gimpcolorconfig.h
159
include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h
160
include/gimp-2.0/libgimpconfig/gimpconfig-error.h
161
include/gimp-2.0/libgimpconfig/gimpconfig-iface.h
162
include/gimp-2.0/libgimpconfig/gimpconfig-params.h
163
include/gimp-2.0/libgimpconfig/gimpconfig-path.h
164
include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h
165
include/gimp-2.0/libgimpconfig/gimpconfig-utils.h
166
include/gimp-2.0/libgimpconfig/gimpconfig.h
167
include/gimp-2.0/libgimpconfig/gimpconfigenums.h
168
include/gimp-2.0/libgimpconfig/gimpconfigtypes.h
169
include/gimp-2.0/libgimpconfig/gimpconfigwriter.h
170
include/gimp-2.0/libgimpconfig/gimpscanner.h
171
include/gimp-2.0/libgimpmath/gimpmath.h
172
include/gimp-2.0/libgimpmath/gimpmathtypes.h
173
include/gimp-2.0/libgimpmath/gimpmatrix.h
174
include/gimp-2.0/libgimpmath/gimpmd5.h
175
include/gimp-2.0/libgimpmath/gimpvector.h
176
include/gimp-2.0/libgimpmodule/gimpmodule.h
177
include/gimp-2.0/libgimpmodule/gimpmoduledb.h
178
include/gimp-2.0/libgimpmodule/gimpmoduletypes.h
179
include/gimp-2.0/libgimpthumb/gimpthumb-enums.h
180
include/gimp-2.0/libgimpthumb/gimpthumb-error.h
181
include/gimp-2.0/libgimpthumb/gimpthumb-types.h
182
include/gimp-2.0/libgimpthumb/gimpthumb-utils.h
183
include/gimp-2.0/libgimpthumb/gimpthumb.h
184
include/gimp-2.0/libgimpthumb/gimpthumbnail.h
185
include/gimp-2.0/libgimpwidgets/gimp3migration.h
186
include/gimp-2.0/libgimpwidgets/gimpbrowser.h
187
include/gimp-2.0/libgimpwidgets/gimpbutton.h
188
include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h
189
include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h
190
include/gimp-2.0/libgimpwidgets/gimpcellrenderertoggle.h
191
include/gimp-2.0/libgimpwidgets/gimpchainbutton.h
192
include/gimp-2.0/libgimpwidgets/gimpcolorarea.h
193
include/gimp-2.0/libgimpwidgets/gimpcolorbutton.h
194
include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h
195
include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h
196
include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h
197
include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h
198
include/gimp-2.0/libgimpwidgets/gimpcolorprofilechooserdialog.h
199
include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h
200
include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h
201
include/gimp-2.0/libgimpwidgets/gimpcolorprofileview.h
202
include/gimp-2.0/libgimpwidgets/gimpcolorscale.h
203
include/gimp-2.0/libgimpwidgets/gimpcolorscales.h
204
include/gimp-2.0/libgimpwidgets/gimpcolorselect.h
205
include/gimp-2.0/libgimpwidgets/gimpcolorselection.h
206
include/gimp-2.0/libgimpwidgets/gimpcolorselector.h
207
include/gimp-2.0/libgimpwidgets/gimpcontroller.h
208
include/gimp-2.0/libgimpwidgets/gimpdialog.h
209
include/gimp-2.0/libgimpwidgets/gimpenumcombobox.h
210
include/gimp-2.0/libgimpwidgets/gimpenumlabel.h
211
include/gimp-2.0/libgimpwidgets/gimpenumstore.h
212
include/gimp-2.0/libgimpwidgets/gimpenumwidgets.h
213
include/gimp-2.0/libgimpwidgets/gimpfileentry.h
214
include/gimp-2.0/libgimpwidgets/gimpframe.h
215
include/gimp-2.0/libgimpwidgets/gimphelpui.h
216
include/gimp-2.0/libgimpwidgets/gimphintbox.h
217
include/gimp-2.0/libgimpwidgets/gimpicons.h
218
include/gimp-2.0/libgimpwidgets/gimpintcombobox.h
219
include/gimp-2.0/libgimpwidgets/gimpintstore.h
220
include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h
221
include/gimp-2.0/libgimpwidgets/gimpnumberpairentry.h
222
include/gimp-2.0/libgimpwidgets/gimpoffsetarea.h
223
include/gimp-2.0/libgimpwidgets/gimpoldwidgets.h
224
include/gimp-2.0/libgimpwidgets/gimppageselector.h
225
include/gimp-2.0/libgimpwidgets/gimppatheditor.h
226
include/gimp-2.0/libgimpwidgets/gimppickbutton.h
227
include/gimp-2.0/libgimpwidgets/gimppixmap.h
228
include/gimp-2.0/libgimpwidgets/gimppreview.h
229
include/gimp-2.0/libgimpwidgets/gimppreviewarea.h
230
include/gimp-2.0/libgimpwidgets/gimppropwidgets.h
231
include/gimp-2.0/libgimpwidgets/gimpquerybox.h
232
include/gimp-2.0/libgimpwidgets/gimpruler.h
233
include/gimp-2.0/libgimpwidgets/gimpscaleentry.h
234
include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h
235
include/gimp-2.0/libgimpwidgets/gimpsizeentry.h
236
include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h
237
include/gimp-2.0/libgimpwidgets/gimpunitcombobox.h
238
include/gimp-2.0/libgimpwidgets/gimpunitmenu.h
239
include/gimp-2.0/libgimpwidgets/gimpunitstore.h
240
include/gimp-2.0/libgimpwidgets/gimpwidgets-error.h
241
include/gimp-2.0/libgimpwidgets/gimpwidgets.h
242
include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h
243
include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h
244
include/gimp-2.0/libgimpwidgets/gimpwidgetsutils.h
245
include/gimp-2.0/libgimpwidgets/gimpzoommodel.h
246
lib/libgimp-2.0.so.%%LIBVER%%
247
lib/libgimp-2.0.so.0
248
lib/libgimp-2.0.so
249
lib/libgimpbase-2.0.so.%%LIBVER%%
250
lib/libgimpbase-2.0.so.0
251
lib/libgimpbase-2.0.so
252
lib/libgimpcolor-2.0.so.%%LIBVER%%
253
lib/libgimpcolor-2.0.so.0
254
lib/libgimpcolor-2.0.so
255
lib/libgimpconfig-2.0.so.%%LIBVER%%
256
lib/libgimpconfig-2.0.so.0
257
lib/libgimpconfig-2.0.so
258
lib/libgimpmath-2.0.so.%%LIBVER%%
259
lib/libgimpmath-2.0.so.0
260
lib/libgimpmath-2.0.so
261
lib/libgimpmodule-2.0.so.%%LIBVER%%
262
lib/libgimpmodule-2.0.so.0
263
lib/libgimpmodule-2.0.so
264
lib/libgimpthumb-2.0.so.%%LIBVER%%
265
lib/libgimpthumb-2.0.so.0
266
lib/libgimpthumb-2.0.so
267
lib/libgimpui-2.0.so.%%LIBVER%%
268
lib/libgimpui-2.0.so.0
269
lib/libgimpui-2.0.so
270
lib/libgimpwidgets-2.0.so.%%LIBVER%%
271
lib/libgimpwidgets-2.0.so.0
272
lib/libgimpwidgets-2.0.so
273
libdata/pkgconfig/gimp-2.0.pc
274
libdata/pkgconfig/gimpthumb-2.0.pc
275
libdata/pkgconfig/gimpui-2.0.pc
276
libexec/gimp-debug-tool-2.0
277
libexec/gimp/2.2/environ/default.env
278
%%PYTHON%%libexec/gimp/2.2/environ/pygimp.env
279
libexec/gimp/2.2/interpreters/default.interp
280
%%PYTHON%%libexec/gimp/2.2/interpreters/pygimp.interp
281
libexec/gimp/2.2/modules/libcolor-selector-cmyk.so
282
libexec/gimp/2.2/modules/libcolor-selector-water.so
283
libexec/gimp/2.2/modules/libcolor-selector-wheel.so
284
libexec/gimp/2.2/modules/libcontroller-midi.so
285
libexec/gimp/2.2/modules/libdisplay-filter-clip-warning.so
286
libexec/gimp/2.2/modules/libdisplay-filter-color-blind.so
287
libexec/gimp/2.2/modules/libdisplay-filter-gamma.so
288
libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.so
289
libexec/gimp/2.2/plug-ins/align-layers
290
libexec/gimp/2.2/plug-ins/animation-optimize
291
libexec/gimp/2.2/plug-ins/animation-play
292
libexec/gimp/2.2/plug-ins/blinds
293
libexec/gimp/2.2/plug-ins/blur
294
libexec/gimp/2.2/plug-ins/border-average
295
libexec/gimp/2.2/plug-ins/cartoon
296
libexec/gimp/2.2/plug-ins/checkerboard
297
libexec/gimp/2.2/plug-ins/cml-explorer
298
libexec/gimp/2.2/plug-ins/color-cube-analyze
299
libexec/gimp/2.2/plug-ins/color-enhance
300
libexec/gimp/2.2/plug-ins/colorify
301
libexec/gimp/2.2/plug-ins/colormap-remap
302
%%PYTHON%%libexec/gimp/2.2/plug-ins/colorxhtml.py
303
libexec/gimp/2.2/plug-ins/compose
304
libexec/gimp/2.2/plug-ins/contrast-normalize
305
libexec/gimp/2.2/plug-ins/contrast-retinex
306
libexec/gimp/2.2/plug-ins/crop-zealous
307
libexec/gimp/2.2/plug-ins/curve-bend
308
libexec/gimp/2.2/plug-ins/decompose
309
libexec/gimp/2.2/plug-ins/depth-merge
310
libexec/gimp/2.2/plug-ins/despeckle
311
libexec/gimp/2.2/plug-ins/destripe
312
libexec/gimp/2.2/plug-ins/edge-dog
313
libexec/gimp/2.2/plug-ins/edge-neon
314
libexec/gimp/2.2/plug-ins/emboss
315
libexec/gimp/2.2/plug-ins/file-aa
316
libexec/gimp/2.2/plug-ins/file-bmp
317
libexec/gimp/2.2/plug-ins/file-cel
318
libexec/gimp/2.2/plug-ins/file-compressor
319
libexec/gimp/2.2/plug-ins/file-csource
320
libexec/gimp/2.2/plug-ins/file-darktable
321
libexec/gimp/2.2/plug-ins/file-desktop-link
322
libexec/gimp/2.2/plug-ins/file-dicom
323
%%OPENEXR%%libexec/gimp/2.2/plug-ins/file-exr
324
libexec/gimp/2.2/plug-ins/file-faxg3
325
libexec/gimp/2.2/plug-ins/file-fits
326
libexec/gimp/2.2/plug-ins/file-fli
327
libexec/gimp/2.2/plug-ins/file-gbr
328
libexec/gimp/2.2/plug-ins/file-gegl
329
libexec/gimp/2.2/plug-ins/file-gif-load
330
libexec/gimp/2.2/plug-ins/file-gif-save
331
libexec/gimp/2.2/plug-ins/file-gih
332
libexec/gimp/2.2/plug-ins/file-glob
333
libexec/gimp/2.2/plug-ins/file-header
334
libexec/gimp/2.2/plug-ins/file-html-table
335
libexec/gimp/2.2/plug-ins/file-ico
336
libexec/gimp/2.2/plug-ins/file-jp2-load
337
libexec/gimp/2.2/plug-ins/file-jpeg
338
%%LIBMNG%%libexec/gimp/2.2/plug-ins/file-mng
339
%%PYTHON%%libexec/gimp/2.2/plug-ins/file-openraster.py
340
libexec/gimp/2.2/plug-ins/file-pat
341
libexec/gimp/2.2/plug-ins/file-pcx
342
%%POPPLER%%libexec/gimp/2.2/plug-ins/file-pdf-load
343
%%POPPLER%%libexec/gimp/2.2/plug-ins/file-pdf-save
344
libexec/gimp/2.2/plug-ins/file-pix
345
libexec/gimp/2.2/plug-ins/file-png
346
libexec/gimp/2.2/plug-ins/file-pnm
347
%%GHOSTSCRIPT%%libexec/gimp/2.2/plug-ins/file-ps
348
libexec/gimp/2.2/plug-ins/file-psd
349
libexec/gimp/2.2/plug-ins/file-psp
350
libexec/gimp/2.2/plug-ins/file-raw-data
351
libexec/gimp/2.2/plug-ins/file-raw-placeholder
352
libexec/gimp/2.2/plug-ins/file-rawtherapee
353
libexec/gimp/2.2/plug-ins/file-sgi
354
libexec/gimp/2.2/plug-ins/file-sunras
355
libexec/gimp/2.2/plug-ins/file-svg
356
libexec/gimp/2.2/plug-ins/file-tga
357
libexec/gimp/2.2/plug-ins/file-tiff
358
libexec/gimp/2.2/plug-ins/file-webp
359
%%WMF%%libexec/gimp/2.2/plug-ins/file-wmf
360
libexec/gimp/2.2/plug-ins/file-xbm
361
libexec/gimp/2.2/plug-ins/file-xmc
362
libexec/gimp/2.2/plug-ins/file-xpm
363
libexec/gimp/2.2/plug-ins/file-xwd
364
libexec/gimp/2.2/plug-ins/film
365
libexec/gimp/2.2/plug-ins/filter-pack
366
libexec/gimp/2.2/plug-ins/flame
367
%%PYTHON%%libexec/gimp/2.2/plug-ins/foggify.py
368
libexec/gimp/2.2/plug-ins/fractal-explorer
369
libexec/gimp/2.2/plug-ins/fractal-trace
370
libexec/gimp/2.2/plug-ins/gfig
371
libexec/gimp/2.2/plug-ins/gimpressionist
372
libexec/gimp/2.2/plug-ins/goat-exercise
373
libexec/gimp/2.2/plug-ins/gradient-flare
374
libexec/gimp/2.2/plug-ins/gradient-map
375
%%PYTHON%%libexec/gimp/2.2/plug-ins/gradients-save-as-css.py
376
libexec/gimp/2.2/plug-ins/grid
377
libexec/gimp/2.2/plug-ins/guillotine
378
libexec/gimp/2.2/plug-ins/help
379
%%HELPBROWSER%%libexec/gimp/2.2/plug-ins/help-browser
380
%%PYTHON%%libexec/gimp/2.2/plug-ins/histogram-export.py
381
libexec/gimp/2.2/plug-ins/hot
382
libexec/gimp/2.2/plug-ins/ifs-compose
383
libexec/gimp/2.2/plug-ins/imagemap
384
libexec/gimp/2.2/plug-ins/jigsaw
385
libexec/gimp/2.2/plug-ins/lighting
386
libexec/gimp/2.2/plug-ins/mail
387
libexec/gimp/2.2/plug-ins/map-object
388
libexec/gimp/2.2/plug-ins/max-rgb
389
%%LIBEXIF%%libexec/gimp/2.2/plug-ins/metadata-editor
390
%%LIBEXIF%%libexec/gimp/2.2/plug-ins/metadata-viewer
391
libexec/gimp/2.2/plug-ins/newsprint
392
libexec/gimp/2.2/plug-ins/nl-filter
393
libexec/gimp/2.2/plug-ins/oilify
394
libexec/gimp/2.2/plug-ins/pagecurl
395
%%PYTHON%%libexec/gimp/2.2/plug-ins/palette-offset.py
396
%%PYTHON%%libexec/gimp/2.2/plug-ins/palette-sort.py
397
%%PYTHON%%libexec/gimp/2.2/plug-ins/palette-to-gradient.py
398
libexec/gimp/2.2/plug-ins/photocopy
399
libexec/gimp/2.2/plug-ins/plugin-browser
400
libexec/gimp/2.2/plug-ins/print
401
libexec/gimp/2.2/plug-ins/procedure-browser
402
%%PYTHON%%libexec/gimp/2.2/plug-ins/py-slice.py
403
%%PYTHON%%libexec/gimp/2.2/plug-ins/python-console/pyconsole.py
404
%%PYTHON%%libexec/gimp/2.2/plug-ins/python-console/python-console.py
405
%%PYTHON%%libexec/gimp/2.2/plug-ins/python-eval.py
406
libexec/gimp/2.2/plug-ins/qbist
407
libexec/gimp/2.2/plug-ins/ripple
408
libexec/gimp/2.2/plug-ins/sample-colorize
409
libexec/gimp/2.2/plug-ins/screenshot
410
libexec/gimp/2.2/plug-ins/script-fu
411
libexec/gimp/2.2/plug-ins/selection-to-path
412
libexec/gimp/2.2/plug-ins/sharpen
413
libexec/gimp/2.2/plug-ins/smooth-palette
414
libexec/gimp/2.2/plug-ins/softglow
415
libexec/gimp/2.2/plug-ins/sparkle
416
libexec/gimp/2.2/plug-ins/sphere-designer
417
libexec/gimp/2.2/plug-ins/tile
418
libexec/gimp/2.2/plug-ins/tile-small
419
libexec/gimp/2.2/plug-ins/unit-editor
420
libexec/gimp/2.2/plug-ins/unsharp-mask
421
libexec/gimp/2.2/plug-ins/van-gogh-lic
422
libexec/gimp/2.2/plug-ins/warp
423
libexec/gimp/2.2/plug-ins/wavelet-decompose
424
libexec/gimp/2.2/plug-ins/web-browser
425
%%PYTHON%%libexec/gimp/2.2/python/_gimpenums.so
426
%%PYTHON%%libexec/gimp/2.2/python/_gimpui.so
427
%%PYTHON%%libexec/gimp/2.2/python/gimp.so
428
%%PYTHON%%libexec/gimp/2.2/python/gimpcolor.so
429
%%PYTHON%%libexec/gimp/2.2/python/gimpenums.py
430
%%PYTHON%%libexec/gimp/2.2/python/gimpenums.pyc
431
%%PYTHON%%libexec/gimp/2.2/python/gimpenums.pyo
432
%%PYTHON%%libexec/gimp/2.2/python/gimpfu.py
433
%%PYTHON%%libexec/gimp/2.2/python/gimpfu.pyc
434
%%PYTHON%%libexec/gimp/2.2/python/gimpfu.pyo
435
%%PYTHON%%libexec/gimp/2.2/python/gimpplugin.py
436
%%PYTHON%%libexec/gimp/2.2/python/gimpplugin.pyc
437
%%PYTHON%%libexec/gimp/2.2/python/gimpplugin.pyo
438
%%PYTHON%%libexec/gimp/2.2/python/gimpshelf.py
439
%%PYTHON%%libexec/gimp/2.2/python/gimpshelf.pyc
440
%%PYTHON%%libexec/gimp/2.2/python/gimpshelf.pyo
441
%%PYTHON%%libexec/gimp/2.2/python/gimpthumb.so
442
%%PYTHON%%libexec/gimp/2.2/python/gimpui.py
443
%%PYTHON%%libexec/gimp/2.2/python/gimpui.pyc
444
%%PYTHON%%libexec/gimp/2.2/python/gimpui.pyo
445
%%PYTHON%%libexec/gimp/2.2/python/pygimp-logo.png
446
%%HELPBROWSER%%libexec/gimp/2.2/plug-ins/web-page
447
man/man1/gimp-2.10.1.gz
448
man/man1/gimptool-2.0.1.gz
449
man/man5/gimprc-2.10.5.gz
450
share/aclocal/gimp-2.0.m4
451
share/applications/gimp.desktop
452
share/doc/gimp/libgimp/GimpAspectPreview.html
453
share/doc/gimp/libgimp/GimpBrushSelectButton.html
454
share/doc/gimp/libgimp/GimpDrawablePreview.html
455
share/doc/gimp/libgimp/GimpFontSelectButton.html
456
share/doc/gimp/libgimp/GimpGradientSelectButton.html
457
share/doc/gimp/libgimp/GimpImageComboBox.html
458
share/doc/gimp/libgimp/GimpPaletteSelectButton.html
459
share/doc/gimp/libgimp/GimpPatternSelectButton.html
460
share/doc/gimp/libgimp/GimpProcBrowserDialog.html
461
share/doc/gimp/libgimp/GimpProgressBar.html
462
share/doc/gimp/libgimp/GimpSelectButton.html
463
share/doc/gimp/libgimp/GimpZoomPreview.html
464
share/doc/gimp/libgimp/api-index-2-10.html
465
share/doc/gimp/libgimp/api-index-2-2.html
466
share/doc/gimp/libgimp/api-index-2-4.html
467
share/doc/gimp/libgimp/api-index-2-6.html
468
share/doc/gimp/libgimp/api-index-2-8.html
469
share/doc/gimp/libgimp/api-index-deprecated.html
470
share/doc/gimp/libgimp/api-index-full.html
471
share/doc/gimp/libgimp/home.png
472
share/doc/gimp/libgimp/index.html
473
share/doc/gimp/libgimp/left-insensitive.png
474
share/doc/gimp/libgimp/left.png
475
share/doc/gimp/libgimp/libgimp-GimpItemComboBox.html
476
share/doc/gimp/libgimp/libgimp-GimpProcView.html
477
share/doc/gimp/libgimp/libgimp-data.html
478
share/doc/gimp/libgimp/libgimp-general.html
479
share/doc/gimp/libgimp/libgimp-gimp.html
480
share/doc/gimp/libgimp/libgimp-gimpbrush.html
481
share/doc/gimp/libgimp/libgimp-gimpbrushes.html
482
share/doc/gimp/libgimp/libgimp-gimpbrushmenu.html
483
share/doc/gimp/libgimp/libgimp-gimpbrushselect.html
484
share/doc/gimp/libgimp/libgimp-gimpbuffer.html
485
share/doc/gimp/libgimp/libgimp-gimpchannel.html
486
share/doc/gimp/libgimp/libgimp-gimpcolor.html
487
share/doc/gimp/libgimp/libgimp-gimpcontext.html
488
share/doc/gimp/libgimp/libgimp-gimpdebug.html
489
share/doc/gimp/libgimp/libgimp-gimpdisplay.html
490
share/doc/gimp/libgimp/libgimp-gimpdrawable.html
491
share/doc/gimp/libgimp/libgimp-gimpdrawablecolor.html
492
share/doc/gimp/libgimp/libgimp-gimpdrawableedit.html
493
share/doc/gimp/libgimp/libgimp-gimpdrawabletransform.html
494
share/doc/gimp/libgimp/libgimp-gimpdynamics.html
495
share/doc/gimp/libgimp/libgimp-gimpedit.html
496
share/doc/gimp/libgimp/libgimp-gimpenums.html
497
share/doc/gimp/libgimp/libgimp-gimpexport.html
498
share/doc/gimp/libgimp/libgimp-gimpfileops.html
499
share/doc/gimp/libgimp/libgimp-gimpfloatingsel.html
500
share/doc/gimp/libgimp/libgimp-gimpfontmenu.html
501
share/doc/gimp/libgimp/libgimp-gimpfonts.html
502
share/doc/gimp/libgimp/libgimp-gimpfontselect.html
503
share/doc/gimp/libgimp/libgimp-gimpgimprc.html
504
share/doc/gimp/libgimp/libgimp-gimpgradient.html
505
share/doc/gimp/libgimp/libgimp-gimpgradientmenu.html
506
share/doc/gimp/libgimp/libgimp-gimpgradients.html
507
share/doc/gimp/libgimp/libgimp-gimpgradientselect.html
508
share/doc/gimp/libgimp/libgimp-gimphelp.html
509
share/doc/gimp/libgimp/libgimp-gimpimage.html
510
share/doc/gimp/libgimp/libgimp-gimpimagecolorprofile.html
511
share/doc/gimp/libgimp/libgimp-gimpimageconvert.html
512
share/doc/gimp/libgimp/libgimp-gimpimagegrid.html
513
share/doc/gimp/libgimp/libgimp-gimpimageguides.html
514
share/doc/gimp/libgimp/libgimp-gimpimagesamplepoints.html
515
share/doc/gimp/libgimp/libgimp-gimpimageselect.html
516
share/doc/gimp/libgimp/libgimp-gimpimagetransform.html
517
share/doc/gimp/libgimp/libgimp-gimpimageundo.html
518
share/doc/gimp/libgimp/libgimp-gimpitem.html
519
share/doc/gimp/libgimp/libgimp-gimpitemtransform.html
520
share/doc/gimp/libgimp/libgimp-gimplayer.html
521
share/doc/gimp/libgimp/libgimp-gimpmenu.html
522
share/doc/gimp/libgimp/libgimp-gimpmessage.html
523
share/doc/gimp/libgimp/libgimp-gimpmetadata.html
524
share/doc/gimp/libgimp/libgimp-gimppainttools.html
525
share/doc/gimp/libgimp/libgimp-gimppalette.html
526
share/doc/gimp/libgimp/libgimp-gimppalettemenu.html
527
share/doc/gimp/libgimp/libgimp-gimppalettes.html
528
share/doc/gimp/libgimp/libgimp-gimppaletteselect.html
529
share/doc/gimp/libgimp/libgimp-gimppaths.html
530
share/doc/gimp/libgimp/libgimp-gimppattern.html
531
share/doc/gimp/libgimp/libgimp-gimppatternmenu.html
532
share/doc/gimp/libgimp/libgimp-gimppatterns.html
533
share/doc/gimp/libgimp/libgimp-gimppatternselect.html
534
share/doc/gimp/libgimp/libgimp-gimppixbuf.html
535
share/doc/gimp/libgimp/libgimp-gimppixelfetcher.html
536
share/doc/gimp/libgimp/libgimp-gimppixelrgn.html
537
share/doc/gimp/libgimp/libgimp-gimpplugin.html
538
share/doc/gimp/libgimp/libgimp-gimpproceduraldb.html
539
share/doc/gimp/libgimp/libgimp-gimpprogress.html
540
share/doc/gimp/libgimp/libgimp-gimpregioniterator.html
541
share/doc/gimp/libgimp/libgimp-gimpselection.html
542
share/doc/gimp/libgimp/libgimp-gimpselectiontools.html
543
share/doc/gimp/libgimp/libgimp-gimptextlayer.html
544
share/doc/gimp/libgimp/libgimp-gimptexttool.html
545
share/doc/gimp/libgimp/libgimp-gimptile.html
546
share/doc/gimp/libgimp/libgimp-gimptransformtools.html
547
share/doc/gimp/libgimp/libgimp-gimpui.html
548
share/doc/gimp/libgimp/libgimp-gimpvectors.html
549
share/doc/gimp/libgimp/libgimp-image.html
550
share/doc/gimp/libgimp/libgimp-selectors.html
551
share/doc/gimp/libgimp/libgimp.devhelp2
552
share/doc/gimp/libgimp/libgimp.html
553
share/doc/gimp/libgimp/libgimpui-hierarchy.html
554
share/doc/gimp/libgimp/libgimpui.html
555
share/doc/gimp/libgimp/right-insensitive.png
556
share/doc/gimp/libgimp/right.png
557
share/doc/gimp/libgimp/style.css
558
share/doc/gimp/libgimp/up-insensitive.png
559
share/doc/gimp/libgimp/up.png
560
share/doc/gimp/libgimpbase/api-index-2-10.html
561
share/doc/gimp/libgimpbase/api-index-2-2.html
562
share/doc/gimp/libgimpbase/api-index-2-4.html
563
share/doc/gimp/libgimpbase/api-index-2-8.html
564
share/doc/gimp/libgimpbase/api-index-deprecated.html
565
share/doc/gimp/libgimpbase/api-index-full.html
566
share/doc/gimp/libgimpbase/home.png
567
share/doc/gimp/libgimpbase/index.html
568
share/doc/gimp/libgimpbase/left-insensitive.png
569
share/doc/gimp/libgimpbase/left.png
570
share/doc/gimp/libgimpbase/libgimpbase-GimpValueArray.html
571
share/doc/gimp/libgimpbase/libgimpbase-gimpbaseenums.html
572
share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html
573
share/doc/gimp/libgimpbase/libgimpbase-gimpchecks.html
574
share/doc/gimp/libgimpbase/libgimpbase-gimpcpuaccel.html
575
share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html
576
share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html
577
share/doc/gimp/libgimpbase/libgimpbase-gimplimits.html
578
share/doc/gimp/libgimpbase/libgimpbase-gimpmemsize.html
579
share/doc/gimp/libgimpbase/libgimpbase-gimpmetadata.html
580
share/doc/gimp/libgimpbase/libgimpbase-gimpparam.html
581
share/doc/gimp/libgimpbase/libgimpbase-gimpparasite.html
582
share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html
583
share/doc/gimp/libgimpbase/libgimpbase-gimprectangle.html
584
share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html
585
share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html
586
share/doc/gimp/libgimpbase/libgimpbase-gimputils.html
587
share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html
588
share/doc/gimp/libgimpbase/libgimpbase.devhelp2
589
share/doc/gimp/libgimpbase/pt01.html
590
share/doc/gimp/libgimpbase/right-insensitive.png
591
share/doc/gimp/libgimpbase/right.png
592
share/doc/gimp/libgimpbase/style.css
593
share/doc/gimp/libgimpbase/up-insensitive.png
594
share/doc/gimp/libgimpbase/up.png
595
share/doc/gimp/libgimpcolor/api-index-2-10.html
596
share/doc/gimp/libgimpcolor/api-index-2-2.html
597
share/doc/gimp/libgimpcolor/api-index-2-4.html
598
share/doc/gimp/libgimpcolor/api-index-2-6.html
599
share/doc/gimp/libgimpcolor/api-index-2-8.html
600
share/doc/gimp/libgimpcolor/api-index-deprecated.html
601
share/doc/gimp/libgimpcolor/api-index-full.html
602
share/doc/gimp/libgimpcolor/home.png
603
share/doc/gimp/libgimpcolor/index.html
604
share/doc/gimp/libgimpcolor/left-insensitive.png
605
share/doc/gimp/libgimpcolor/left.png
606
share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
607
share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html
608
share/doc/gimp/libgimpcolor/libgimpcolor-GimpCMYK.html
609
share/doc/gimp/libgimpcolor/libgimpcolor-GimpCairo.html
610
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorManaged.html
611
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorProfile.html
612
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html
613
share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorTransform.html
614
share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html
615
share/doc/gimp/libgimpcolor/libgimpcolor-GimpPixbuf.html
616
share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html
617
share/doc/gimp/libgimpcolor/libgimpcolor.devhelp2
618
share/doc/gimp/libgimpcolor/pt01.html
619
share/doc/gimp/libgimpcolor/right-insensitive.png
620
share/doc/gimp/libgimpcolor/right.png
621
share/doc/gimp/libgimpcolor/style.css
622
share/doc/gimp/libgimpcolor/up-insensitive.png
623
share/doc/gimp/libgimpcolor/up.png
624
share/doc/gimp/libgimpconfig/GimpColorConfig.html
625
share/doc/gimp/libgimpconfig/api-index-2-10.html
626
share/doc/gimp/libgimpconfig/api-index-2-4.html
627
share/doc/gimp/libgimpconfig/api-index-2-6.html
628
share/doc/gimp/libgimpconfig/api-index-2-8.html
629
share/doc/gimp/libgimpconfig/api-index-deprecated.html
630
share/doc/gimp/libgimpconfig/api-index-full.html
631
share/doc/gimp/libgimpconfig/home.png
632
share/doc/gimp/libgimpconfig/index.html
633
share/doc/gimp/libgimpconfig/left-insensitive.png
634
share/doc/gimp/libgimpconfig/left.png
635
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig-deserialize.html
636
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig-params.html
637
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig-path.html
638
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig-serialize.html
639
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig-utils.html
640
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig.html
641
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigError.html
642
share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigWriter.html
643
share/doc/gimp/libgimpconfig/libgimpconfig-GimpScanner.html
644
share/doc/gimp/libgimpconfig/libgimpconfig-hierarchy.html
645
share/doc/gimp/libgimpconfig/libgimpconfig.devhelp2
646
share/doc/gimp/libgimpconfig/pt01.html
647
share/doc/gimp/libgimpconfig/right-insensitive.png
648
share/doc/gimp/libgimpconfig/right.png
649
share/doc/gimp/libgimpconfig/style.css
650
share/doc/gimp/libgimpconfig/up-insensitive.png
651
share/doc/gimp/libgimpconfig/up.png
652
share/doc/gimp/libgimpmath/api-index-2-10.html
653
share/doc/gimp/libgimpmath/api-index-2-4.html
654
share/doc/gimp/libgimpmath/api-index-2-8.html
655
share/doc/gimp/libgimpmath/api-index-deprecated.html
656
share/doc/gimp/libgimpmath/api-index-full.html
657
share/doc/gimp/libgimpmath/home.png
658
share/doc/gimp/libgimpmath/index.html
659
share/doc/gimp/libgimpmath/left-insensitive.png
660
share/doc/gimp/libgimpmath/left.png
661
share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html
662
share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html
663
share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html
664
share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html
665
share/doc/gimp/libgimpmath/libgimpmath.devhelp2
666
share/doc/gimp/libgimpmath/pt01.html
667
share/doc/gimp/libgimpmath/right-insensitive.png
668
share/doc/gimp/libgimpmath/right.png
669
share/doc/gimp/libgimpmath/style.css
670
share/doc/gimp/libgimpmath/up-insensitive.png
671
share/doc/gimp/libgimpmath/up.png
672
share/doc/gimp/libgimpmodule/GimpModule.html
673
share/doc/gimp/libgimpmodule/GimpModuleDB.html
674
share/doc/gimp/libgimpmodule/api-index-2-10.html
675
share/doc/gimp/libgimpmodule/api-index-2-8.html
676
share/doc/gimp/libgimpmodule/api-index-deprecated.html
677
share/doc/gimp/libgimpmodule/api-index-full.html
678
share/doc/gimp/libgimpmodule/home.png
679
share/doc/gimp/libgimpmodule/index.html
680
share/doc/gimp/libgimpmodule/left-insensitive.png
681
share/doc/gimp/libgimpmodule/left.png
682
share/doc/gimp/libgimpmodule/libgimpmodule.devhelp2
683
share/doc/gimp/libgimpmodule/pt01.html
684
share/doc/gimp/libgimpmodule/right-insensitive.png
685
share/doc/gimp/libgimpmodule/right.png
686
share/doc/gimp/libgimpmodule/style.css
687
share/doc/gimp/libgimpmodule/up-insensitive.png
688
share/doc/gimp/libgimpmodule/up.png
689
share/doc/gimp/libgimpthumb/GimpThumbnail.html
690
share/doc/gimp/libgimpthumb/api-index-2-10.html
691
share/doc/gimp/libgimpthumb/api-index-2-2.html
692
share/doc/gimp/libgimpthumb/api-index-deprecated.html
693
share/doc/gimp/libgimpthumb/api-index-full.html
694
share/doc/gimp/libgimpthumb/home.png
695
share/doc/gimp/libgimpthumb/index.html
696
share/doc/gimp/libgimpthumb/left-insensitive.png
697
share/doc/gimp/libgimpthumb/left.png
698
share/doc/gimp/libgimpthumb/libgimpthumb-GimpThumb-enums.html
699
share/doc/gimp/libgimpthumb/libgimpthumb-GimpThumb-error.html
700
share/doc/gimp/libgimpthumb/libgimpthumb-GimpThumb-utils.html
701
share/doc/gimp/libgimpthumb/libgimpthumb.devhelp2
702
share/doc/gimp/libgimpthumb/pt01.html
703
share/doc/gimp/libgimpthumb/right-insensitive.png
704
share/doc/gimp/libgimpthumb/right.png
705
share/doc/gimp/libgimpthumb/style.css
706
share/doc/gimp/libgimpthumb/up-insensitive.png
707
share/doc/gimp/libgimpthumb/up.png
708
share/doc/gimp/libgimpwidgets/GimpBrowser.html
709
share/doc/gimp/libgimpwidgets/GimpButton.html
710
share/doc/gimp/libgimpwidgets/GimpCellRendererColor.html
711
share/doc/gimp/libgimpwidgets/GimpCellRendererToggle.html
712
share/doc/gimp/libgimpwidgets/GimpChainButton.html
713
share/doc/gimp/libgimpwidgets/GimpColorArea.html
714
share/doc/gimp/libgimpwidgets/GimpColorButton.html
715
share/doc/gimp/libgimpwidgets/GimpColorDisplay.html
716
share/doc/gimp/libgimpwidgets/GimpColorDisplayStack.html
717
share/doc/gimp/libgimpwidgets/GimpColorHexEntry.html
718
share/doc/gimp/libgimpwidgets/GimpColorNotebook.html
719
share/doc/gimp/libgimpwidgets/GimpColorProfileChooserDialog.html
720
share/doc/gimp/libgimpwidgets/GimpColorProfileComboBox.html
721
share/doc/gimp/libgimpwidgets/GimpColorProfileStore.html
722
share/doc/gimp/libgimpwidgets/GimpColorProfileView.html
723
share/doc/gimp/libgimpwidgets/GimpColorScale.html
724
share/doc/gimp/libgimpwidgets/GimpColorScales.html
725
share/doc/gimp/libgimpwidgets/GimpColorSelect.html
726
share/doc/gimp/libgimpwidgets/GimpColorSelection.html
727
share/doc/gimp/libgimpwidgets/GimpColorSelector.html
728
share/doc/gimp/libgimpwidgets/GimpController.html
729
share/doc/gimp/libgimpwidgets/GimpDialog.html
730
share/doc/gimp/libgimpwidgets/GimpEnumComboBox.html
731
share/doc/gimp/libgimpwidgets/GimpEnumLabel.html
732
share/doc/gimp/libgimpwidgets/GimpEnumStore.html
733
share/doc/gimp/libgimpwidgets/GimpFileEntry.html
734
share/doc/gimp/libgimpwidgets/GimpFrame.html
735
share/doc/gimp/libgimpwidgets/GimpIntComboBox.html
736
share/doc/gimp/libgimpwidgets/GimpIntStore.html
737
share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html
738
share/doc/gimp/libgimpwidgets/GimpNumberPairEntry.html
739
share/doc/gimp/libgimpwidgets/GimpOffsetArea.html
740
share/doc/gimp/libgimpwidgets/GimpPageSelector.html
741
share/doc/gimp/libgimpwidgets/GimpPathEditor.html
742
share/doc/gimp/libgimpwidgets/GimpPickButton.html
743
share/doc/gimp/libgimpwidgets/GimpPixmap.html
744
share/doc/gimp/libgimpwidgets/GimpPreview.html
745
share/doc/gimp/libgimpwidgets/GimpPreviewArea.html
746
share/doc/gimp/libgimpwidgets/GimpRuler.html
747
share/doc/gimp/libgimpwidgets/GimpScrolledPreview.html
748
share/doc/gimp/libgimpwidgets/GimpSizeEntry.html
749
share/doc/gimp/libgimpwidgets/GimpStringComboBox.html
750
share/doc/gimp/libgimpwidgets/GimpUnitComboBox.html
751
share/doc/gimp/libgimpwidgets/GimpUnitMenu.html
752
share/doc/gimp/libgimpwidgets/GimpUnitStore.html
753
share/doc/gimp/libgimpwidgets/GimpZoomModel.html
754
share/doc/gimp/libgimpwidgets/api-index-2-10.html
755
share/doc/gimp/libgimpwidgets/api-index-2-2.html
756
share/doc/gimp/libgimpwidgets/api-index-2-4.html
757
share/doc/gimp/libgimpwidgets/api-index-2-6.html
758
share/doc/gimp/libgimpwidgets/api-index-2-8.html
759
share/doc/gimp/libgimpwidgets/api-index-deprecated.html
760
share/doc/gimp/libgimpwidgets/api-index-full.html
761
share/doc/gimp/libgimpwidgets/gimp-anchor.png
762
share/doc/gimp/libgimpwidgets/gimp-attach.png
763
share/doc/gimp/libgimpwidgets/gimp-business-card.png
764
share/doc/gimp/libgimpwidgets/gimp-cap-butt.png
765
share/doc/gimp/libgimpwidgets/gimp-cap-round.png
766
share/doc/gimp/libgimpwidgets/gimp-cap-square.png
767
share/doc/gimp/libgimpwidgets/gimp-center.png
768
share/doc/gimp/libgimpwidgets/gimp-channel-alpha.png
769
share/doc/gimp/libgimpwidgets/gimp-channel-blue.png
770
share/doc/gimp/libgimpwidgets/gimp-channel-gray.png
771
share/doc/gimp/libgimpwidgets/gimp-channel-green.png
772
share/doc/gimp/libgimpwidgets/gimp-channel-indexed.png
773
share/doc/gimp/libgimpwidgets/gimp-channel-red.png
774
share/doc/gimp/libgimpwidgets/gimp-channel.png
775
share/doc/gimp/libgimpwidgets/gimp-channels.png
776
share/doc/gimp/libgimpwidgets/gimp-char-picker.png
777
share/doc/gimp/libgimpwidgets/gimp-clipboard.png
778
share/doc/gimp/libgimpwidgets/gimp-close-all.png
779
share/doc/gimp/libgimpwidgets/gimp-close.png
780
share/doc/gimp/libgimpwidgets/gimp-color-cmyk.png
781
share/doc/gimp/libgimpwidgets/gimp-color-pick-from-screen.png
782
share/doc/gimp/libgimpwidgets/gimp-color-picker-black.png
783
share/doc/gimp/libgimpwidgets/gimp-color-picker-gray.png
784
share/doc/gimp/libgimpwidgets/gimp-color-picker-white.png
785
share/doc/gimp/libgimpwidgets/gimp-color-space-linear.png
786
share/doc/gimp/libgimpwidgets/gimp-color-space-perceptual.png
787
share/doc/gimp/libgimpwidgets/gimp-color-triangle.png
788
share/doc/gimp/libgimpwidgets/gimp-color-water.png
789
share/doc/gimp/libgimpwidgets/gimp-colormap.png
790
share/doc/gimp/libgimpwidgets/gimp-controller-keyboard.png
791
share/doc/gimp/libgimpwidgets/gimp-controller-linux-input.png
792
share/doc/gimp/libgimpwidgets/gimp-controller-midi.png
793
share/doc/gimp/libgimpwidgets/gimp-controller-wheel.png
794
share/doc/gimp/libgimpwidgets/gimp-controller.png
795
share/doc/gimp/libgimpwidgets/gimp-convert-grayscale.png
796
share/doc/gimp/libgimpwidgets/gimp-convert-indexed.png
797
share/doc/gimp/libgimpwidgets/gimp-convert-rgb.png
798
share/doc/gimp/libgimpwidgets/gimp-cursor.png
799
share/doc/gimp/libgimpwidgets/gimp-curve-free.png
800
share/doc/gimp/libgimpwidgets/gimp-curve-smooth.png
801
share/doc/gimp/libgimpwidgets/gimp-dashboard.png
802
share/doc/gimp/libgimpwidgets/gimp-default-colors.png
803
share/doc/gimp/libgimpwidgets/gimp-detach.png
804
share/doc/gimp/libgimpwidgets/gimp-device-status.png
805
share/doc/gimp/libgimpwidgets/gimp-display-filter-clip-warning.png
806
share/doc/gimp/libgimpwidgets/gimp-display-filter-colorblind.png
807
share/doc/gimp/libgimpwidgets/gimp-display-filter-contrast.png
808
share/doc/gimp/libgimpwidgets/gimp-display-filter-gamma.png
809
share/doc/gimp/libgimpwidgets/gimp-display-filter-lcms.png
810
share/doc/gimp/libgimpwidgets/gimp-display-filter-proof.png
811
share/doc/gimp/libgimpwidgets/gimp-display-filter.png
812
share/doc/gimp/libgimpwidgets/gimp-display.png
813
share/doc/gimp/libgimpwidgets/gimp-duplicate.png
814
share/doc/gimp/libgimpwidgets/gimp-dynamics.png
815
share/doc/gimp/libgimpwidgets/gimp-error.png
816
share/doc/gimp/libgimpwidgets/gimp-file-manager.png
817
share/doc/gimp/libgimpwidgets/gimp-flip-horizontal.png
818
share/doc/gimp/libgimpwidgets/gimp-flip-vertical.png
819
share/doc/gimp/libgimpwidgets/gimp-floating-selection.png
820
share/doc/gimp/libgimpwidgets/gimp-frame.png
821
share/doc/gimp/libgimpwidgets/gimp-gegl.png
822
share/doc/gimp/libgimpwidgets/gimp-gradient-bilinear.png
823
share/doc/gimp/libgimpwidgets/gimp-gradient-conical-asymmetric.png
824
share/doc/gimp/libgimpwidgets/gimp-gradient-conical-symmetric.png
825
share/doc/gimp/libgimpwidgets/gimp-gradient-linear.png
826
share/doc/gimp/libgimpwidgets/gimp-gradient-radial.png
827
share/doc/gimp/libgimpwidgets/gimp-gradient-shapeburst-angular.png
828
share/doc/gimp/libgimpwidgets/gimp-gradient-shapeburst-dimpled.png
829
share/doc/gimp/libgimpwidgets/gimp-gradient-shapeburst-spherical.png
830
share/doc/gimp/libgimpwidgets/gimp-gradient-spiral-anticlockwise.png
831
share/doc/gimp/libgimpwidgets/gimp-gradient-spiral-clockwise.png
832
share/doc/gimp/libgimpwidgets/gimp-gradient-square.png
833
share/doc/gimp/libgimpwidgets/gimp-gravity-east.png
834
share/doc/gimp/libgimpwidgets/gimp-gravity-north-east.png
835
share/doc/gimp/libgimpwidgets/gimp-gravity-north-west.png
836
share/doc/gimp/libgimpwidgets/gimp-gravity-north.png
837
share/doc/gimp/libgimpwidgets/gimp-gravity-south-east.png
838
share/doc/gimp/libgimpwidgets/gimp-gravity-south-west.png
839
share/doc/gimp/libgimpwidgets/gimp-gravity-south.png
840
share/doc/gimp/libgimpwidgets/gimp-gravity-west.png
841
share/doc/gimp/libgimpwidgets/gimp-grid.png
842
share/doc/gimp/libgimpwidgets/gimp-group-layer.png
843
share/doc/gimp/libgimpwidgets/gimp-hcenter.png
844
share/doc/gimp/libgimpwidgets/gimp-hchain-broken.png
845
share/doc/gimp/libgimpwidgets/gimp-hchain.png
846
share/doc/gimp/libgimpwidgets/gimp-hfill.png
847
share/doc/gimp/libgimpwidgets/gimp-histogram-linear.png
848
share/doc/gimp/libgimpwidgets/gimp-histogram-logarithmic.png
849
share/doc/gimp/libgimpwidgets/gimp-histogram.png
850
share/doc/gimp/libgimpwidgets/gimp-image-open.png
851
share/doc/gimp/libgimpwidgets/gimp-image-reload.png
852
share/doc/gimp/libgimpwidgets/gimp-image.png
853
share/doc/gimp/libgimpwidgets/gimp-images.png
854
share/doc/gimp/libgimpwidgets/gimp-info.png
855
share/doc/gimp/libgimpwidgets/gimp-input-device.png
856
share/doc/gimp/libgimpwidgets/gimp-invert.png
857
share/doc/gimp/libgimpwidgets/gimp-join-bevel.png
858
share/doc/gimp/libgimpwidgets/gimp-join-miter.png
859
share/doc/gimp/libgimpwidgets/gimp-join-round.png
860
share/doc/gimp/libgimpwidgets/gimp-landscape.png
861
share/doc/gimp/libgimpwidgets/gimp-layer-mask.png
862
share/doc/gimp/libgimpwidgets/gimp-layer-to-imagesize.png
863
share/doc/gimp/libgimpwidgets/gimp-layer.png
864
share/doc/gimp/libgimpwidgets/gimp-layers.png
865
share/doc/gimp/libgimpwidgets/gimp-letter-spacing.png
866
share/doc/gimp/libgimpwidgets/gimp-line-spacing.png
867
share/doc/gimp/libgimpwidgets/gimp-linked.png
868
share/doc/gimp/libgimpwidgets/gimp-list.png
869
share/doc/gimp/libgimpwidgets/gimp-menu-left.png
870
share/doc/gimp/libgimpwidgets/gimp-menu-right.png
871
share/doc/gimp/libgimpwidgets/gimp-merge-down.png
872
share/doc/gimp/libgimpwidgets/gimp-move-to-screen.png
873
share/doc/gimp/libgimpwidgets/gimp-navigation.png
874
share/doc/gimp/libgimpwidgets/gimp-paste-as-new.png
875
share/doc/gimp/libgimpwidgets/gimp-paste-into.png
876
share/doc/gimp/libgimpwidgets/gimp-path-stroke.png
877
share/doc/gimp/libgimpwidgets/gimp-path.png
878
share/doc/gimp/libgimpwidgets/gimp-paths.png
879
share/doc/gimp/libgimpwidgets/gimp-pattern.png
880
share/doc/gimp/libgimpwidgets/gimp-plugin.png
881
share/doc/gimp/libgimpwidgets/gimp-portrait.png
882
share/doc/gimp/libgimpwidgets/gimp-prefs-color-management.png
883
share/doc/gimp/libgimpwidgets/gimp-prefs-controllers.png
884
share/doc/gimp/libgimpwidgets/gimp-prefs-default-comment.png
885
share/doc/gimp/libgimpwidgets/gimp-prefs-default-grid.png
886
share/doc/gimp/libgimpwidgets/gimp-prefs-display.png
887
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-brushes.png
888
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-dynamics.png
889
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-environ.png
890
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-fonts.png
891
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-gradients.png
892
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-icon-themes.png
893
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-interp.png
894
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-modules.png
895
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-mypaint-brushes.png
896
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-palettes.png
897
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-patterns.png
898
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-plug-ins.png
899
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-scripts.png
900
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-themes.png
901
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-tool-plug-ins.png
902
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-tool-presets.png
903
share/doc/gimp/libgimpwidgets/gimp-prefs-folders-tools.png
904
share/doc/gimp/libgimpwidgets/gimp-prefs-folders.png
905
share/doc/gimp/libgimpwidgets/gimp-prefs-help-system.png
906
share/doc/gimp/libgimpwidgets/gimp-prefs-icon-theme.png
907
share/doc/gimp/libgimpwidgets/gimp-prefs-image-title.png
908
share/doc/gimp/libgimpwidgets/gimp-prefs-image-windows-appearance.png
909
share/doc/gimp/libgimpwidgets/gimp-prefs-image-windows-snapping.png
910
share/doc/gimp/libgimpwidgets/gimp-prefs-image-windows.png
911
share/doc/gimp/libgimpwidgets/gimp-prefs-import-export.png
912
share/doc/gimp/libgimpwidgets/gimp-prefs-input-devices.png
913
share/doc/gimp/libgimpwidgets/gimp-prefs-interface.png
914
share/doc/gimp/libgimpwidgets/gimp-prefs-new-image.png
915
share/doc/gimp/libgimpwidgets/gimp-prefs-playground.png
916
share/doc/gimp/libgimpwidgets/gimp-prefs-session.png
917
share/doc/gimp/libgimpwidgets/gimp-prefs-system-resources.png
918
share/doc/gimp/libgimpwidgets/gimp-prefs-theme.png
919
share/doc/gimp/libgimpwidgets/gimp-prefs-tool-options.png
920
share/doc/gimp/libgimpwidgets/gimp-prefs-toolbox.png
921
share/doc/gimp/libgimpwidgets/gimp-prefs-window-management.png
922
share/doc/gimp/libgimpwidgets/gimp-question.png
923
share/doc/gimp/libgimpwidgets/gimp-quick-mask-off.png
924
share/doc/gimp/libgimpwidgets/gimp-quick-mask-on.png
925
share/doc/gimp/libgimpwidgets/gimp-reset.png
926
share/doc/gimp/libgimpwidgets/gimp-reshow-filter.png
927
share/doc/gimp/libgimpwidgets/gimp-resize.png
928
share/doc/gimp/libgimpwidgets/gimp-rotate-180.png
929
share/doc/gimp/libgimpwidgets/gimp-rotate-270.png
930
share/doc/gimp/libgimpwidgets/gimp-rotate-90.png
931
share/doc/gimp/libgimpwidgets/gimp-sample-point.png
932
share/doc/gimp/libgimpwidgets/gimp-scale.png
933
share/doc/gimp/libgimpwidgets/gimp-selection-add.png
934
share/doc/gimp/libgimpwidgets/gimp-selection-all.png
935
share/doc/gimp/libgimpwidgets/gimp-selection-border.png
936
share/doc/gimp/libgimpwidgets/gimp-selection-grow.png
937
share/doc/gimp/libgimpwidgets/gimp-selection-intersect.png
938
share/doc/gimp/libgimpwidgets/gimp-selection-none.png
939
share/doc/gimp/libgimpwidgets/gimp-selection-replace.png
940
share/doc/gimp/libgimpwidgets/gimp-selection-shrink.png
941
share/doc/gimp/libgimpwidgets/gimp-selection-stroke.png
942
share/doc/gimp/libgimpwidgets/gimp-selection-subtract.png
943
share/doc/gimp/libgimpwidgets/gimp-selection-to-channel.png
944
share/doc/gimp/libgimpwidgets/gimp-selection-to-path.png
945
share/doc/gimp/libgimpwidgets/gimp-selection.png
946
share/doc/gimp/libgimpwidgets/gimp-shape-circle.png
947
share/doc/gimp/libgimpwidgets/gimp-shape-diamond.png
948
share/doc/gimp/libgimpwidgets/gimp-shape-square.png
949
share/doc/gimp/libgimpwidgets/gimp-shred.png
950
share/doc/gimp/libgimpwidgets/gimp-smartphone.png
951
share/doc/gimp/libgimpwidgets/gimp-swap-colors.png
952
share/doc/gimp/libgimpwidgets/gimp-symmetry.png
953
share/doc/gimp/libgimpwidgets/gimp-template.png
954
share/doc/gimp/libgimpwidgets/gimp-text-dir-ltr.png
955
share/doc/gimp/libgimpwidgets/gimp-text-dir-rtl.png
956
share/doc/gimp/libgimpwidgets/gimp-text-layer.png
957
share/doc/gimp/libgimpwidgets/gimp-texture.png
958
share/doc/gimp/libgimpwidgets/gimp-toilet-paper.png
959
share/doc/gimp/libgimpwidgets/gimp-tool-airbrush.png
960
share/doc/gimp/libgimpwidgets/gimp-tool-align.png
961
share/doc/gimp/libgimpwidgets/gimp-tool-blur.png
962
share/doc/gimp/libgimpwidgets/gimp-tool-brightness-contrast.png
963
share/doc/gimp/libgimpwidgets/gimp-tool-bucket-fill.png
964
share/doc/gimp/libgimpwidgets/gimp-tool-by-color-select.png
965
share/doc/gimp/libgimpwidgets/gimp-tool-cage.png
966
share/doc/gimp/libgimpwidgets/gimp-tool-clone.png
967
share/doc/gimp/libgimpwidgets/gimp-tool-color-balance.png
968
share/doc/gimp/libgimpwidgets/gimp-tool-color-picker.png
969
share/doc/gimp/libgimpwidgets/gimp-tool-color-temperature.png
970
share/doc/gimp/libgimpwidgets/gimp-tool-colorize.png
971
share/doc/gimp/libgimpwidgets/gimp-tool-crop.png
972
share/doc/gimp/libgimpwidgets/gimp-tool-curves.png
973
share/doc/gimp/libgimpwidgets/gimp-tool-desaturate.png
974
share/doc/gimp/libgimpwidgets/gimp-tool-dodge.png
975
share/doc/gimp/libgimpwidgets/gimp-tool-ellipse-select.png
976
share/doc/gimp/libgimpwidgets/gimp-tool-eraser.png
977
share/doc/gimp/libgimpwidgets/gimp-tool-exposure.png
978
share/doc/gimp/libgimpwidgets/gimp-tool-flip.png
979
share/doc/gimp/libgimpwidgets/gimp-tool-foreground-select.png
980
share/doc/gimp/libgimpwidgets/gimp-tool-free-select.png
981
share/doc/gimp/libgimpwidgets/gimp-tool-fuzzy-select.png
982
share/doc/gimp/libgimpwidgets/gimp-tool-gradient.png
983
share/doc/gimp/libgimpwidgets/gimp-tool-handle-transform.png
984
share/doc/gimp/libgimpwidgets/gimp-tool-heal.png
985
share/doc/gimp/libgimpwidgets/gimp-tool-hue-saturation.png
986
share/doc/gimp/libgimpwidgets/gimp-tool-ink.png
987
share/doc/gimp/libgimpwidgets/gimp-tool-iscissors.png
988
share/doc/gimp/libgimpwidgets/gimp-tool-levels.png
989
share/doc/gimp/libgimpwidgets/gimp-tool-measure.png
990
share/doc/gimp/libgimpwidgets/gimp-tool-move.png
991
share/doc/gimp/libgimpwidgets/gimp-tool-mypaint-brush.png
992
share/doc/gimp/libgimpwidgets/gimp-tool-n-point-deformation.png
993
share/doc/gimp/libgimpwidgets/gimp-tool-options.png
994
share/doc/gimp/libgimpwidgets/gimp-tool-paintbrush.png
995
share/doc/gimp/libgimpwidgets/gimp-tool-path.png
996
share/doc/gimp/libgimpwidgets/gimp-tool-pencil.png
997
share/doc/gimp/libgimpwidgets/gimp-tool-perspective-clone.png
998
share/doc/gimp/libgimpwidgets/gimp-tool-perspective.png
999
share/doc/gimp/libgimpwidgets/gimp-tool-posterize.png
1000
share/doc/gimp/libgimpwidgets/gimp-tool-preset.png
1001
share/doc/gimp/libgimpwidgets/gimp-tool-rect-select.png
1002
share/doc/gimp/libgimpwidgets/gimp-tool-rotate.png
1003
share/doc/gimp/libgimpwidgets/gimp-tool-scale.png
1004
share/doc/gimp/libgimpwidgets/gimp-tool-seamless-clone.png
1005
share/doc/gimp/libgimpwidgets/gimp-tool-shadows-highlights.png
1006
share/doc/gimp/libgimpwidgets/gimp-tool-shear.png
1007
share/doc/gimp/libgimpwidgets/gimp-tool-smudge.png
1008
share/doc/gimp/libgimpwidgets/gimp-tool-text.png
1009
share/doc/gimp/libgimpwidgets/gimp-tool-threshold.png
1010
share/doc/gimp/libgimpwidgets/gimp-tool-unified-transform.png
1011
share/doc/gimp/libgimpwidgets/gimp-tool-warp.png
1012
share/doc/gimp/libgimpwidgets/gimp-tool-zoom.png
1013
share/doc/gimp/libgimpwidgets/gimp-tools.png
1014
share/doc/gimp/libgimpwidgets/gimp-transparency.png
1015
share/doc/gimp/libgimpwidgets/gimp-undo-history.png
1016
share/doc/gimp/libgimpwidgets/gimp-user-manual.png
1017
share/doc/gimp/libgimpwidgets/gimp-vcenter.png
1018
share/doc/gimp/libgimpwidgets/gimp-vchain-broken.png
1019
share/doc/gimp/libgimpwidgets/gimp-vchain.png
1020
share/doc/gimp/libgimpwidgets/gimp-vfill.png
1021
share/doc/gimp/libgimpwidgets/gimp-video.png
1022
share/doc/gimp/libgimpwidgets/gimp-visible.png
1023
share/doc/gimp/libgimpwidgets/gimp-warning.png
1024
share/doc/gimp/libgimpwidgets/gimp-web.png
1025
share/doc/gimp/libgimpwidgets/gimp-widget-browser.png
1026
share/doc/gimp/libgimpwidgets/gimp-widget-button.png
1027
share/doc/gimp/libgimpwidgets/gimp-widget-chain-button.png
1028
share/doc/gimp/libgimpwidgets/gimp-widget-color-area.png
1029
share/doc/gimp/libgimpwidgets/gimp-widget-color-button.png
1030
share/doc/gimp/libgimpwidgets/gimp-widget-color-hex-entry.png
1031
share/doc/gimp/libgimpwidgets/gimp-widget-color-profile-combo-box.png
1032
share/doc/gimp/libgimpwidgets/gimp-widget-color-scale.png
1033
share/doc/gimp/libgimpwidgets/gimp-widget-color-selection.png
1034
share/doc/gimp/libgimpwidgets/gimp-widget-dialog.png
1035
share/doc/gimp/libgimpwidgets/gimp-widget-enum-combo-box.png
1036
share/doc/gimp/libgimpwidgets/gimp-widget-enum-label.png
1037
share/doc/gimp/libgimpwidgets/gimp-widget-file-entry.png
1038
share/doc/gimp/libgimpwidgets/gimp-widget-frame.png
1039
share/doc/gimp/libgimpwidgets/gimp-widget-hint-box.png
1040
share/doc/gimp/libgimpwidgets/gimp-widget-int-combo-box.png
1041
share/doc/gimp/libgimpwidgets/gimp-widget-memsize-entry.png
1042
share/doc/gimp/libgimpwidgets/gimp-widget-number-pair-entry.png
1043
share/doc/gimp/libgimpwidgets/gimp-widget-offset-area.png
1044
share/doc/gimp/libgimpwidgets/gimp-widget-page-selector.png
1045
share/doc/gimp/libgimpwidgets/gimp-widget-path-editor.png
1046
share/doc/gimp/libgimpwidgets/gimp-widget-pick-button.png
1047
share/doc/gimp/libgimpwidgets/gimp-widget-preview-area.png
1048
share/doc/gimp/libgimpwidgets/gimp-widget-string-combo-box.png
1049
share/doc/gimp/libgimpwidgets/gimp-widget-unit-menu.png
1050
share/doc/gimp/libgimpwidgets/gimp-wilber-eek.png
1051
share/doc/gimp/libgimpwidgets/gimp-wilber-outline.png
1052
share/doc/gimp/libgimpwidgets/gimp-wilber.png
1053
share/doc/gimp/libgimpwidgets/gimp-zoom-follow-window.png
1054
share/doc/gimp/libgimpwidgets/home.png
1055
share/doc/gimp/libgimpwidgets/index.html
1056
share/doc/gimp/libgimpwidgets/left-insensitive.png
1057
share/doc/gimp/libgimpwidgets/left.png
1058
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html
1059
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html
1060
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
1061
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHintBox.html
1062
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpIcons.html
1063
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpOldWidgets.html
1064
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html
1065
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
1066
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html
1067
share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgetsUtils.html
1068
share/doc/gimp/libgimpwidgets/libgimpwidgets-cell-renderers.html
1069
share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html
1070
share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html
1071
share/doc/gimp/libgimpwidgets/libgimpwidgets-controller.html
1072
share/doc/gimp/libgimpwidgets/libgimpwidgets-deprecated.html
1073
share/doc/gimp/libgimpwidgets/libgimpwidgets-gallery.html
1074
share/doc/gimp/libgimpwidgets/libgimpwidgets-hierarchy.html
1075
share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html
1076
share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html
1077
share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp2
1078
share/doc/gimp/libgimpwidgets/right-insensitive.png
1079
share/doc/gimp/libgimpwidgets/right.png
1080
share/doc/gimp/libgimpwidgets/style.css
1081
share/doc/gimp/libgimpwidgets/up-insensitive.png
1082
share/doc/gimp/libgimpwidgets/up.png
1083
share/gimp/brushes/Basic/1-pixel.vbr
1084
share/gimp/brushes/Basic/Block-01.vbr
1085
share/gimp/brushes/Basic/Block-02.vbr
1086
share/gimp/brushes/Basic/Block-03.vbr
1087
share/gimp/brushes/Basic/Hardness-025.vbr
1088
share/gimp/brushes/Basic/Hardness-050.vbr
1089
share/gimp/brushes/Basic/Hardness-075.vbr
1090
share/gimp/brushes/Basic/Hardness-100.vbr
1091
share/gimp/brushes/Basic/Star.vbr
1092
share/gimp/brushes/Basic/pixel.gbr
1093
share/gimp/brushes/Legacy/confetti.gbr
1094
share/gimp/brushes/Legacy/confetti.gih
1095
share/gimp/brushes/Legacy/pepper.gbr
1096
share/gimp/brushes/Legacy/vine.gih
1097
share/gimp/brushes/Media/Acrylic-01.gih
1098
share/gimp/brushes/Media/Acrylic-02.gih
1099
share/gimp/brushes/Media/Acrylic-03.gih
1100
share/gimp/brushes/Media/Acrylic-04.gih
1101
share/gimp/brushes/Media/Acrylic-05.gih
1102
share/gimp/brushes/Media/Bristles-01.gbr
1103
share/gimp/brushes/Media/Bristles-02.gbr
1104
share/gimp/brushes/Media/Bristles-03.gbr
1105
share/gimp/brushes/Media/Oils-01.gbr
1106
share/gimp/brushes/Media/Oils-02.gbr
1107
share/gimp/brushes/Media/Oils-03.gbr
1108
share/gimp/brushes/Sketch/Chalk-01.gih
1109
share/gimp/brushes/Sketch/Chalk-02.gih
1110
share/gimp/brushes/Sketch/Chalk-03.gih
1111
share/gimp/brushes/Sketch/Charcoal-01.gbr
1112
share/gimp/brushes/Sketch/Charcoal-02.gbr
1113
share/gimp/brushes/Sketch/Pencil-01.gih
1114
share/gimp/brushes/Sketch/Pencil-02.gih
1115
share/gimp/brushes/Sketch/Pencil-Scratch.gbr
1116
share/gimp/brushes/Splatters/Sparks-Hose.gih
1117
share/gimp/brushes/Splatters/Splats-01.gih
1118
share/gimp/brushes/Splatters/Splats-02.gih
1119
share/gimp/brushes/Splatters/Sponge-01.gbr
1120
share/gimp/brushes/Splatters/Sponge-02.gbr
1121
share/gimp/brushes/Texture/Cell-01.gbr
1122
share/gimp/brushes/Texture/Cell-02.gbr
1123
share/gimp/brushes/Texture/Grass.gih
1124
share/gimp/brushes/Texture/Smoke.gbr
1125
share/gimp/brushes/Texture/Structure.gbr
1126
share/gimp/brushes/Texture/Texture-01.gbr
1127
share/gimp/brushes/Texture/Texture-02.gbr
1128
share/gimp/brushes/Texture/Texture-Hose-01.gih
1129
share/gimp/brushes/Texture/Texture-Hose-02.gih
1130
share/gimp/brushes/Texture/Texture-Hose-03.gih
1131
share/gimp/brushes/Texture/Vegetation-01.gbr
1132
share/gimp/brushes/Texture/Vegetation-02.gih
1133
share/gimp/brushes/gimp-obsolete-files/10x10square.gbr
1134
share/gimp/brushes/gimp-obsolete-files/10x10squareBlur.gbr
1135
share/gimp/brushes/gimp-obsolete-files/20x20square.gbr
1136
share/gimp/brushes/gimp-obsolete-files/20x20squareBlur.gbr
1137
share/gimp/brushes/gimp-obsolete-files/5x5square.gbr
1138
share/gimp/brushes/gimp-obsolete-files/5x5squareBlur.gbr
1139
share/gimp/brushes/gimp-obsolete-files/Calligraphic-Brush-0.vbr
1140
share/gimp/brushes/gimp-obsolete-files/Calligraphic-Brush-1.vbr
1141
share/gimp/brushes/gimp-obsolete-files/Calligraphic-Brush-2.vbr
1142
share/gimp/brushes/gimp-obsolete-files/Calligraphic-Brush-3.vbr
1143
share/gimp/brushes/gimp-obsolete-files/Circle-1.vbr
1144
share/gimp/brushes/gimp-obsolete-files/Circle-11.vbr
1145
share/gimp/brushes/gimp-obsolete-files/Circle-13.vbr
1146
share/gimp/brushes/gimp-obsolete-files/Circle-15.vbr
1147
share/gimp/brushes/gimp-obsolete-files/Circle-17.vbr
1148
share/gimp/brushes/gimp-obsolete-files/Circle-19.vbr
1149
share/gimp/brushes/gimp-obsolete-files/Circle-3.vbr
1150
share/gimp/brushes/gimp-obsolete-files/Circle-5.vbr
1151
share/gimp/brushes/gimp-obsolete-files/Circle-7.vbr
1152
share/gimp/brushes/gimp-obsolete-files/Circle-9.vbr
1153
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-11.vbr
1154
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-13.vbr
1155
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-15.vbr
1156
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-17.vbr
1157
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-19.vbr
1158
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-3.vbr
1159
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-5.vbr
1160
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-7.vbr
1161
share/gimp/brushes/gimp-obsolete-files/Circle-Fuzzy-9.vbr
1162
share/gimp/brushes/gimp-obsolete-files/Diagonal-Star-11.vbr
1163
share/gimp/brushes/gimp-obsolete-files/Diagonal-Star-17.vbr
1164
share/gimp/brushes/gimp-obsolete-files/Diagonal-Star-25.vbr
1165
share/gimp/brushes/gimp-obsolete-files/Grass1.gih
1166
share/gimp/brushes/gimp-obsolete-files/SketchBrush-16.gih
1167
share/gimp/brushes/gimp-obsolete-files/SketchBrush-32.gih
1168
share/gimp/brushes/gimp-obsolete-files/SketchBrush-64.gih
1169
share/gimp/brushes/gimp-obsolete-files/dunes.gbr
1170
share/gimp/brushes/gimp-obsolete-files/feltpen.gih
1171
share/gimp/brushes/gimp-obsolete-files/galaxy-big.gbr
1172
share/gimp/brushes/gimp-obsolete-files/galaxy.gbr
1173
share/gimp/brushes/gimp-obsolete-files/galaxy_small.gbr
1174
share/gimp/brushes/gimp-obsolete-files/pepper.gbr
1175
share/gimp/brushes/gimp-obsolete-files/pixel.gbr
1176
share/gimp/dynamics/Basic-Dynamics.gdyn
1177
share/gimp/dynamics/Basic/Basic-Simple.gdyn
1178
share/gimp/dynamics/Basic/Dynamics-Random.gdyn
1179
share/gimp/dynamics/Basic/Negative-Size-Pressure.gdyn
1180
share/gimp/dynamics/Basic/Pen-Generic.gdyn
1181
share/gimp/dynamics/Basic/Pencil-Generic.gdyn
1182
share/gimp/dynamics/Basic/Pencil-Shader.gdyn
1183
share/gimp/dynamics/Basic/Pressure-Opacity.gdyn
1184
share/gimp/dynamics/Basic/Pressure-Size.gdyn
1185
share/gimp/dynamics/Color-From-Gradient.gdyn
1186
share/gimp/dynamics/Dynamics-Off.gdyn
1187
share/gimp/dynamics/FX/Confetti.gdyn
1188
share/gimp/dynamics/FX/Perspective.gdyn
1189
share/gimp/dynamics/FX/Speed_Size_Opacity.gdyn
1190
share/gimp/dynamics/Fade-Tapering.gdyn
1191
share/gimp/dynamics/Random-Color.gdyn
1192
share/gimp/dynamics/Tilt-Angle.gdyn
1193
share/gimp/dynamics/Track-Direction.gdyn
1194
share/gimp/dynamics/Velocity-Tapering.gdyn
1195
share/gimp/file-raw/file-darktable-export-on-exit.lua
1196
share/gimp/file-raw/file-darktable-get-size.lua
1197
share/gimp/fractalexplorer/Asteroid_Field
1198
share/gimp/fractalexplorer/Bar_Code_Label
1199
share/gimp/fractalexplorer/Beauty_of_Nature
1200
share/gimp/fractalexplorer/Blue_Curtain
1201
share/gimp/fractalexplorer/Car_Track
1202
share/gimp/fractalexplorer/Energetic_Diamond
1203
share/gimp/fractalexplorer/Explosive
1204
share/gimp/fractalexplorer/Flower
1205
share/gimp/fractalexplorer/Fragments
1206
share/gimp/fractalexplorer/Hemp
1207
share/gimp/fractalexplorer/High_Voltage
1208
share/gimp/fractalexplorer/Hoops
1209
share/gimp/fractalexplorer/Ice_Crystal
1210
share/gimp/fractalexplorer/Leaves
1211
share/gimp/fractalexplorer/Lightning
1212
share/gimp/fractalexplorer/Mandelbrot
1213
share/gimp/fractalexplorer/Marble
1214
share/gimp/fractalexplorer/Marble2
1215
share/gimp/fractalexplorer/Medusa
1216
share/gimp/fractalexplorer/Nautilus
1217
share/gimp/fractalexplorer/Nebula
1218
share/gimp/fractalexplorer/Plant
1219
share/gimp/fractalexplorer/Rose
1220
share/gimp/fractalexplorer/Saturn
1221
share/gimp/fractalexplorer/Snow_Crystal
1222
share/gimp/fractalexplorer/Soma
1223
share/gimp/fractalexplorer/Spark
1224
share/gimp/fractalexplorer/Suns
1225
share/gimp/fractalexplorer/Tentacles
1226
share/gimp/fractalexplorer/The_Green_Place
1227
share/gimp/fractalexplorer/Wave
1228
share/gimp/fractalexplorer/Wood
1229
share/gimp/fractalexplorer/Zooming_Circle
1230
share/gimp/gfig/A_star
1231
share/gimp/gfig/curves
1232
share/gimp/gfig/polys
1233
share/gimp/gfig/ring
1234
share/gimp/gfig/ring+star
1235
share/gimp/gfig/simily
1236
share/gimp/gfig/spirals_and_stars
1237
share/gimp/gfig/sprial
1238
share/gimp/gfig/star2
1239
share/gimp/gfig/stars
1240
share/gimp/gflare/Bright_Star
1241
share/gimp/gflare/Classic
1242
share/gimp/gflare/Default
1243
share/gimp/gflare/Distant_Sun
1244
share/gimp/gflare/GFlare_101
1245
share/gimp/gflare/GFlare_102
1246
share/gimp/gflare/Hidden_Planet
1247
share/gimp/gimpressionist/Brushes/arrow01.pgm
1248
share/gimp/gimpressionist/Brushes/ball.ppm
1249
share/gimp/gimpressionist/Brushes/blob.ppm
1250
share/gimp/gimpressionist/Brushes/box.ppm
1251
share/gimp/gimpressionist/Brushes/chalk01.pgm
1252
share/gimp/gimpressionist/Brushes/cone.ppm
1253
share/gimp/gimpressionist/Brushes/crayon01.pgm
1254
share/gimp/gimpressionist/Brushes/crayon02.pgm
1255
share/gimp/gimpressionist/Brushes/crayon03.pgm
1256
share/gimp/gimpressionist/Brushes/crayon04.pgm
1257
share/gimp/gimpressionist/Brushes/crayon05.pgm
1258
share/gimp/gimpressionist/Brushes/crayon06.pgm
1259
share/gimp/gimpressionist/Brushes/crayon07.pgm
1260
share/gimp/gimpressionist/Brushes/crayon08.pgm
1261
share/gimp/gimpressionist/Brushes/defaultbrush.pgm
1262
share/gimp/gimpressionist/Brushes/dribble.pgm
1263
share/gimp/gimpressionist/Brushes/fabric.pgm
1264
share/gimp/gimpressionist/Brushes/fabric01.pgm
1265
share/gimp/gimpressionist/Brushes/fabric02.pgm
1266
share/gimp/gimpressionist/Brushes/fabric03.pgm
1267
share/gimp/gimpressionist/Brushes/flower01.pgm
1268
share/gimp/gimpressionist/Brushes/flower02.pgm
1269
share/gimp/gimpressionist/Brushes/flower03.pgm
1270
share/gimp/gimpressionist/Brushes/flower04.pgm
1271
share/gimp/gimpressionist/Brushes/grad01.pgm
1272
share/gimp/gimpressionist/Brushes/grad02.pgm
1273
share/gimp/gimpressionist/Brushes/grad03.pgm
1274
share/gimp/gimpressionist/Brushes/heart.ppm
1275
share/gimp/gimpressionist/Brushes/leaf01.pgm
1276
share/gimp/gimpressionist/Brushes/paintbrush01.pgm
1277
share/gimp/gimpressionist/Brushes/paintbrush02.pgm
1278
share/gimp/gimpressionist/Brushes/paintbrush03.pgm
1279
share/gimp/gimpressionist/Brushes/paintbrush04.pgm
1280
share/gimp/gimpressionist/Brushes/paper01.pgm
1281
share/gimp/gimpressionist/Brushes/paper02.pgm
1282
share/gimp/gimpressionist/Brushes/paper03.pgm
1283
share/gimp/gimpressionist/Brushes/paper04.pgm
1284
share/gimp/gimpressionist/Brushes/pentagram.pgm
1285
share/gimp/gimpressionist/Brushes/scribble.pgm
1286
share/gimp/gimpressionist/Brushes/shape01.pgm
1287
share/gimp/gimpressionist/Brushes/shape02.pgm
1288
share/gimp/gimpressionist/Brushes/shape03.pgm
1289
share/gimp/gimpressionist/Brushes/shape04.pgm
1290
share/gimp/gimpressionist/Brushes/snow1.pgm
1291
share/gimp/gimpressionist/Brushes/sphere.ppm
1292
share/gimp/gimpressionist/Brushes/splat1.pgm
1293
share/gimp/gimpressionist/Brushes/splat2.pgm
1294
share/gimp/gimpressionist/Brushes/splat3.pgm
1295
share/gimp/gimpressionist/Brushes/spunge01.pgm
1296
share/gimp/gimpressionist/Brushes/spunge02.pgm
1297
share/gimp/gimpressionist/Brushes/spunge03.pgm
1298
share/gimp/gimpressionist/Brushes/spunge04.pgm
1299
share/gimp/gimpressionist/Brushes/spunge05.pgm
1300
share/gimp/gimpressionist/Brushes/strange01.pgm
1301
share/gimp/gimpressionist/Brushes/thegimp.pgm
1302
share/gimp/gimpressionist/Brushes/torus.ppm
1303
share/gimp/gimpressionist/Brushes/wavy.pgm
1304
share/gimp/gimpressionist/Brushes/weave.pgm
1305
share/gimp/gimpressionist/Brushes/worm.pgm
1306
share/gimp/gimpressionist/Paper/bricks.pgm
1307
share/gimp/gimpressionist/Paper/bricks2.pgm
1308
share/gimp/gimpressionist/Paper/burlap.pgm
1309
share/gimp/gimpressionist/Paper/canvas2.pgm
1310
share/gimp/gimpressionist/Paper/defaultpaper.pgm
1311
share/gimp/gimpressionist/Paper/marble.pgm
1312
share/gimp/gimpressionist/Paper/marble2.pgm
1313
share/gimp/gimpressionist/Paper/stone.pgm
1314
share/gimp/gimpressionist/Paper/struc.pgm
1315
share/gimp/gimpressionist/Presets/ApplyCanvas
1316
share/gimp/gimpressionist/Presets/Ballpark
1317
share/gimp/gimpressionist/Presets/Canvas
1318
share/gimp/gimpressionist/Presets/Crosshatch
1319
share/gimp/gimpressionist/Presets/Cubism
1320
share/gimp/gimpressionist/Presets/Dotify
1321
share/gimp/gimpressionist/Presets/Embroidery
1322
share/gimp/gimpressionist/Presets/Feathers
1323
share/gimp/gimpressionist/Presets/Felt-marker
1324
share/gimp/gimpressionist/Presets/Flowerbed
1325
share/gimp/gimpressionist/Presets/Furry
1326
share/gimp/gimpressionist/Presets/Line-art
1327
share/gimp/gimpressionist/Presets/Line-art-2
1328
share/gimp/gimpressionist/Presets/Maggot-invasion
1329
share/gimp/gimpressionist/Presets/MarbleMadness
1330
share/gimp/gimpressionist/Presets/Mossy
1331
share/gimp/gimpressionist/Presets/Painted_Rock
1332
share/gimp/gimpressionist/Presets/Parquette
1333
share/gimp/gimpressionist/Presets/Patchwork
1334
share/gimp/gimpressionist/Presets/Ringworks
1335
share/gimp/gimpressionist/Presets/Sample
1336
share/gimp/gimpressionist/Presets/Smash
1337
share/gimp/gimpressionist/Presets/Straws
1338
share/gimp/gimpressionist/Presets/Weave
1339
share/gimp/gimpressionist/Presets/Wormcan
1340
share/gimp/gradients/Abstract_1.ggr
1341
share/gimp/gradients/Abstract_2.ggr
1342
share/gimp/gradients/Abstract_3.ggr
1343
share/gimp/gradients/Aneurism.ggr
1344
share/gimp/gradients/Blinds.ggr
1345
share/gimp/gradients/Blue_Green.ggr
1346
share/gimp/gradients/Browns.ggr
1347
share/gimp/gradients/Brushed_Aluminium.ggr
1348
share/gimp/gradients/Burning_Paper.ggr
1349
share/gimp/gradients/Burning_Transparency.ggr
1350
share/gimp/gradients/CD.ggr
1351
share/gimp/gradients/CD_Half.ggr
1352
share/gimp/gradients/Caribbean_Blues.ggr
1353
share/gimp/gradients/Coffee.ggr
1354
share/gimp/gradients/Cold_Steel.ggr
1355
share/gimp/gradients/Cold_Steel_2.ggr
1356
share/gimp/gradients/Crown_molding.ggr
1357
share/gimp/gradients/Dark_1.ggr
1358
share/gimp/gradients/Deep_Sea.ggr
1359
share/gimp/gradients/Default.ggr
1360
share/gimp/gradients/Flare_Glow_Angular_1.ggr
1361
share/gimp/gradients/Flare_Glow_Radial_1.ggr
1362
share/gimp/gradients/Flare_Glow_Radial_2.ggr
1363
share/gimp/gradients/Flare_Glow_Radial_3.ggr
1364
share/gimp/gradients/Flare_Glow_Radial_4.ggr
1365
share/gimp/gradients/Flare_Radial_101.ggr
1366
share/gimp/gradients/Flare_Radial_102.ggr
1367
share/gimp/gradients/Flare_Radial_103.ggr
1368
share/gimp/gradients/Flare_Rays_Radial_1.ggr
1369
share/gimp/gradients/Flare_Rays_Radial_2.ggr
1370
share/gimp/gradients/Flare_Rays_Size_1.ggr
1371
share/gimp/gradients/Flare_Sizefac_101.ggr
1372
share/gimp/gradients/Four_bars.ggr
1373
share/gimp/gradients/Full_saturation_spectrum_CCW.ggr
1374
share/gimp/gradients/Full_saturation_spectrum_CW.ggr
1375
share/gimp/gradients/Golden.ggr
1376
share/gimp/gradients/Greens.ggr
1377
share/gimp/gradients/Horizon_1.ggr
1378
share/gimp/gradients/Horizon_2.ggr
1379
share/gimp/gradients/Incandescent.ggr
1380
share/gimp/gradients/Land_1.ggr
1381
share/gimp/gradients/Land_and_Sea.ggr
1382
share/gimp/gradients/Metallic_Something.ggr
1383
share/gimp/gradients/Nauseating_Headache.ggr
1384
share/gimp/gradients/Neon_Cyan.ggr
1385
share/gimp/gradients/Neon_Green.ggr
1386
share/gimp/gradients/Neon_Yellow.ggr
1387
share/gimp/gradients/Pastel_Rainbow.ggr
1388
share/gimp/gradients/Pastels.ggr
1389
share/gimp/gradients/Purples.ggr
1390
share/gimp/gradients/Radial_Eyeball_Blue.ggr
1391
share/gimp/gradients/Radial_Eyeball_Brown.ggr
1392
share/gimp/gradients/Radial_Eyeball_Green.ggr
1393
share/gimp/gradients/Radial_Glow_1.ggr
1394
share/gimp/gradients/Radial_Rainbow_Hoop.ggr
1395
share/gimp/gradients/Rounded_edge.ggr
1396
share/gimp/gradients/Shadows_1.ggr
1397
share/gimp/gradients/Shadows_2.ggr
1398
share/gimp/gradients/Shadows_3.ggr
1399
share/gimp/gradients/Skyline.ggr
1400
share/gimp/gradients/Skyline_polluted.ggr
1401
share/gimp/gradients/Square_Wood_Frame.ggr
1402
share/gimp/gradients/Sunrise.ggr
1403
share/gimp/gradients/Three_bars_sin.ggr
1404
share/gimp/gradients/Tropical_Colors.ggr
1405
share/gimp/gradients/Tube_Red.ggr
1406
share/gimp/gradients/Wood_1.ggr
1407
share/gimp/gradients/Wood_2.ggr
1408
share/gimp/gradients/Yellow_Contrast.ggr
1409
share/gimp/gradients/Yellow_Orange.ggr
1410
share/gimp/gradients/gimp-obsolete-files/French_flag.ggr
1411
share/gimp/gradients/gimp-obsolete-files/French_flag_smooth.ggr
1412
share/gimp/gradients/gimp-obsolete-files/German_flag.ggr
1413
share/gimp/gradients/gimp-obsolete-files/German_flag_smooth.ggr
1414
share/gimp/gradients/gimp-obsolete-files/Mexican_flag.ggr
1415
share/gimp/gradients/gimp-obsolete-files/Mexican_flag_smooth.ggr
1416
share/gimp/gradients/gimp-obsolete-files/Romanian_flag.ggr
1417
share/gimp/gradients/gimp-obsolete-files/Romanian_flag_smooth.ggr
1418
share/gimp/icons/Color/24x24/apps/dialog-information.svg
1419
share/gimp/icons/Color/24x24/apps/document-print.svg
1420
share/gimp/icons/Color/24x24/apps/gimp-business-card.svg
1421
share/gimp/icons/Color/24x24/apps/gimp-center.svg
1422
share/gimp/icons/Color/24x24/apps/gimp-channel-alpha.svg
1423
share/gimp/icons/Color/24x24/apps/gimp-channel-blue.svg
1424
share/gimp/icons/Color/24x24/apps/gimp-channel-gray.svg
1425
share/gimp/icons/Color/24x24/apps/gimp-channel-green.svg
1426
share/gimp/icons/Color/24x24/apps/gimp-channel-indexed.svg
1427
share/gimp/icons/Color/24x24/apps/gimp-channel-red.svg
1428
share/gimp/icons/Color/24x24/apps/gimp-channel.svg
1429
share/gimp/icons/Color/24x24/apps/gimp-channels.svg
1430
share/gimp/icons/Color/24x24/apps/gimp-char-picker.svg
1431
share/gimp/icons/Color/24x24/apps/gimp-color-space-linear.svg
1432
share/gimp/icons/Color/24x24/apps/gimp-color-space-perceptual.svg
1433
share/gimp/icons/Color/24x24/apps/gimp-colormap.svg
1434
share/gimp/icons/Color/24x24/apps/gimp-controller-keyboard.svg
1435
share/gimp/icons/Color/24x24/apps/gimp-controller-linux-input.svg
1436
share/gimp/icons/Color/24x24/apps/gimp-controller-midi.svg
1437
share/gimp/icons/Color/24x24/apps/gimp-controller-wheel.svg
1438
share/gimp/icons/Color/24x24/apps/gimp-controller.svg
1439
share/gimp/icons/Color/24x24/apps/gimp-cursor.svg
1440
share/gimp/icons/Color/24x24/apps/gimp-device-status.svg
1441
share/gimp/icons/Color/24x24/apps/gimp-display-filter-clip-warning.svg
1442
share/gimp/icons/Color/24x24/apps/gimp-display-filter-colorblind.svg
1443
share/gimp/icons/Color/24x24/apps/gimp-display-filter-contrast.svg
1444
share/gimp/icons/Color/24x24/apps/gimp-display-filter-gamma.svg
1445
share/gimp/icons/Color/24x24/apps/gimp-display-filter-lcms.svg
1446
share/gimp/icons/Color/24x24/apps/gimp-display-filter-proof.svg
1447
share/gimp/icons/Color/24x24/apps/gimp-display-filter.svg
1448
share/gimp/icons/Color/24x24/apps/gimp-display.svg
1449
share/gimp/icons/Color/24x24/apps/gimp-dynamics.svg
1450
share/gimp/icons/Color/24x24/apps/gimp-error.svg
1451
share/gimp/icons/Color/24x24/apps/gimp-floating-selection.svg
1452
share/gimp/icons/Color/24x24/apps/gimp-gegl.svg
1453
share/gimp/icons/Color/24x24/apps/gimp-grid.svg
1454
share/gimp/icons/Color/24x24/apps/gimp-histogram.svg
1455
share/gimp/icons/Color/24x24/apps/gimp-image.svg
1456
share/gimp/icons/Color/24x24/apps/gimp-images.svg
1457
share/gimp/icons/Color/24x24/apps/gimp-info.svg
1458
share/gimp/icons/Color/24x24/apps/gimp-landscape.svg
1459
share/gimp/icons/Color/24x24/apps/gimp-layer-mask.svg
1460
share/gimp/icons/Color/24x24/apps/gimp-layer.svg
1461
share/gimp/icons/Color/24x24/apps/gimp-layers.svg
1462
share/gimp/icons/Color/24x24/apps/gimp-letter-spacing.svg
1463
share/gimp/icons/Color/24x24/apps/gimp-line-spacing.svg
1464
share/gimp/icons/Color/24x24/apps/gimp-move-to-screen.svg
1465
share/gimp/icons/Color/24x24/apps/gimp-navigation.svg
1466
share/gimp/icons/Color/24x24/apps/gimp-path.svg
1467
share/gimp/icons/Color/24x24/apps/gimp-paths.svg
1468
share/gimp/icons/Color/24x24/apps/gimp-portrait.svg
1469
share/gimp/icons/Color/24x24/apps/gimp-prefs-color-management.svg
1470
share/gimp/icons/Color/24x24/apps/gimp-prefs-controllers.svg
1471
share/gimp/icons/Color/24x24/apps/gimp-prefs-default-comment.svg
1472
share/gimp/icons/Color/24x24/apps/gimp-prefs-default-grid.svg
1473
share/gimp/icons/Color/24x24/apps/gimp-prefs-display.svg
1474
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-brushes.svg
1475
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-dynamics.svg
1476
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-environ.svg
1477
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-fonts.svg
1478
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-gradients.svg
1479
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-icon-themes.svg
1480
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-interp.svg
1481
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-modules.svg
1482
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-mypaint-brushes.svg
1483
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-palettes.svg
1484
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-patterns.svg
1485
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-plug-ins.svg
1486
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-scripts.svg
1487
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-themes.svg
1488
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-tool-plug-ins.svg
1489
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-tool-presets.svg
1490
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-tools.svg
1491
share/gimp/icons/Color/24x24/apps/gimp-prefs-folders.svg
1492
share/gimp/icons/Color/24x24/apps/gimp-prefs-help-system.svg
1493
share/gimp/icons/Color/24x24/apps/gimp-prefs-icon-theme.svg
1494
share/gimp/icons/Color/24x24/apps/gimp-prefs-image-title.svg
1495
share/gimp/icons/Color/24x24/apps/gimp-prefs-image-windows-appearance.svg
1496
share/gimp/icons/Color/24x24/apps/gimp-prefs-image-windows-snapping.svg
1497
share/gimp/icons/Color/24x24/apps/gimp-prefs-image-windows.svg
1498
share/gimp/icons/Color/24x24/apps/gimp-prefs-import-export.svg
1499
share/gimp/icons/Color/24x24/apps/gimp-prefs-input-devices.svg
1500
share/gimp/icons/Color/24x24/apps/gimp-prefs-interface.svg
1501
share/gimp/icons/Color/24x24/apps/gimp-prefs-new-image.svg
1502
share/gimp/icons/Color/24x24/apps/gimp-prefs-playground.svg
1503
share/gimp/icons/Color/24x24/apps/gimp-prefs-session.svg
1504
share/gimp/icons/Color/24x24/apps/gimp-prefs-system-resources.svg
1505
share/gimp/icons/Color/24x24/apps/gimp-prefs-theme.svg
1506
share/gimp/icons/Color/24x24/apps/gimp-prefs-tool-options.svg
1507
share/gimp/icons/Color/24x24/apps/gimp-prefs-toolbox.svg
1508
share/gimp/icons/Color/24x24/apps/gimp-prefs-window-management.svg
1509
share/gimp/icons/Color/24x24/apps/gimp-question.svg
1510
share/gimp/icons/Color/24x24/apps/gimp-resize.svg
1511
share/gimp/icons/Color/24x24/apps/gimp-sample-point.svg
1512
share/gimp/icons/Color/24x24/apps/gimp-scale.svg
1513
share/gimp/icons/Color/24x24/apps/gimp-selection.svg
1514
share/gimp/icons/Color/24x24/apps/gimp-smartphone.svg
1515
share/gimp/icons/Color/24x24/apps/gimp-symmetry.svg
1516
share/gimp/icons/Color/24x24/apps/gimp-template.svg
1517
share/gimp/icons/Color/24x24/apps/gimp-text-layer.svg
1518
share/gimp/icons/Color/24x24/apps/gimp-tool-airbrush.svg
1519
share/gimp/icons/Color/24x24/apps/gimp-tool-align.svg
1520
share/gimp/icons/Color/24x24/apps/gimp-tool-blur.svg
1521
share/gimp/icons/Color/24x24/apps/gimp-tool-brightness-contrast.svg
1522
share/gimp/icons/Color/24x24/apps/gimp-tool-bucket-fill.svg
1523
share/gimp/icons/Color/24x24/apps/gimp-tool-by-color-select.svg
1524
share/gimp/icons/Color/24x24/apps/gimp-tool-cage.svg
1525
share/gimp/icons/Color/24x24/apps/gimp-tool-clone.svg
1526
share/gimp/icons/Color/24x24/apps/gimp-tool-color-balance.svg
1527
share/gimp/icons/Color/24x24/apps/gimp-tool-color-picker.svg
1528
share/gimp/icons/Color/24x24/apps/gimp-tool-colorize.svg
1529
share/gimp/icons/Color/24x24/apps/gimp-tool-crop.svg
1530
share/gimp/icons/Color/24x24/apps/gimp-tool-curves.svg
1531
share/gimp/icons/Color/24x24/apps/gimp-tool-desaturate.svg
1532
share/gimp/icons/Color/24x24/apps/gimp-tool-dodge.svg
1533
share/gimp/icons/Color/24x24/apps/gimp-tool-ellipse-select.svg
1534
share/gimp/icons/Color/24x24/apps/gimp-tool-eraser.svg
1535
share/gimp/icons/Color/24x24/apps/gimp-tool-exposure.svg
1536
share/gimp/icons/Color/24x24/apps/gimp-tool-flip.svg
1537
share/gimp/icons/Color/24x24/apps/gimp-tool-foreground-select.svg
1538
share/gimp/icons/Color/24x24/apps/gimp-tool-free-select.svg
1539
share/gimp/icons/Color/24x24/apps/gimp-tool-fuzzy-select.svg
1540
share/gimp/icons/Color/24x24/apps/gimp-tool-gradient.svg
1541
share/gimp/icons/Color/24x24/apps/gimp-tool-handle-transform.svg
1542
share/gimp/icons/Color/24x24/apps/gimp-tool-heal.svg
1543
share/gimp/icons/Color/24x24/apps/gimp-tool-hue-saturation.svg
1544
share/gimp/icons/Color/24x24/apps/gimp-tool-ink.svg
1545
share/gimp/icons/Color/24x24/apps/gimp-tool-iscissors.svg
1546
share/gimp/icons/Color/24x24/apps/gimp-tool-levels.svg
1547
share/gimp/icons/Color/24x24/apps/gimp-tool-measure.svg
1548
share/gimp/icons/Color/24x24/apps/gimp-tool-mypaint-brush.svg
1549
share/gimp/icons/Color/24x24/apps/gimp-tool-n-point-deformation.svg
1550
share/gimp/icons/Color/24x24/apps/gimp-tool-options.svg
1551
share/gimp/icons/Color/24x24/apps/gimp-tool-paintbrush.svg
1552
share/gimp/icons/Color/24x24/apps/gimp-tool-path.svg
1553
share/gimp/icons/Color/24x24/apps/gimp-tool-pencil.svg
1554
share/gimp/icons/Color/24x24/apps/gimp-tool-perspective-clone.svg
1555
share/gimp/icons/Color/24x24/apps/gimp-tool-perspective.svg
1556
share/gimp/icons/Color/24x24/apps/gimp-tool-posterize.svg
1557
share/gimp/icons/Color/24x24/apps/gimp-tool-preset.svg
1558
share/gimp/icons/Color/24x24/apps/gimp-tool-rect-select.svg
1559
share/gimp/icons/Color/24x24/apps/gimp-tool-rotate.svg
1560
share/gimp/icons/Color/24x24/apps/gimp-tool-scale.svg
1561
share/gimp/icons/Color/24x24/apps/gimp-tool-seamless-clone.svg
1562
share/gimp/icons/Color/24x24/apps/gimp-tool-shadows-highlights.svg
1563
share/gimp/icons/Color/24x24/apps/gimp-tool-shear.svg
1564
share/gimp/icons/Color/24x24/apps/gimp-tool-smudge.svg
1565
share/gimp/icons/Color/24x24/apps/gimp-tool-text.svg
1566
share/gimp/icons/Color/24x24/apps/gimp-tool-threshold.svg
1567
share/gimp/icons/Color/24x24/apps/gimp-tool-unified-transform.svg
1568
share/gimp/icons/Color/24x24/apps/gimp-tool-warp.svg
1569
share/gimp/icons/Color/24x24/apps/gimp-tool-zoom.svg
1570
share/gimp/icons/Color/24x24/apps/gimp-tools.svg
1571
share/gimp/icons/Color/24x24/apps/gimp-transparency.svg
1572
share/gimp/icons/Color/24x24/apps/gimp-undo-history.svg
1573
share/gimp/icons/Color/24x24/apps/gimp-user-manual.svg
1574
share/gimp/icons/Color/24x24/apps/gimp-video.svg
1575
share/gimp/icons/Color/24x24/apps/gimp-warning.svg
1576
share/gimp/icons/Color/24x24/apps/gimp-web.svg
1577
share/gimp/icons/Color/24x24/apps/gimp-wilber.svg
1578
share/gimp/icons/Color/24x24/apps/gtk-select-color.svg
1579
share/gimp/icons/Color/24x24/apps/media-floppy.svg
1580
share/gimp/icons/Color/24x24/apps/media-optical.svg
1581
share/gimp/icons/Color/64x64/apps/gimp-error.png
1582
share/gimp/icons/Color/64x64/apps/gimp-frame.png
1583
share/gimp/icons/Color/64x64/apps/gimp-info.png
1584
share/gimp/icons/Color/64x64/apps/gimp-question.png
1585
share/gimp/icons/Color/64x64/apps/gimp-texture.png
1586
share/gimp/icons/Color/64x64/apps/gimp-warning.png
1587
share/gimp/icons/Color/index.theme
1588
share/gimp/icons/Color/scalable/apps/dialog-information.svg
1589
share/gimp/icons/Color/scalable/apps/document-new.svg
1590
share/gimp/icons/Color/scalable/apps/document-open-recent.svg
1591
share/gimp/icons/Color/scalable/apps/document-open.svg
1592
share/gimp/icons/Color/scalable/apps/document-print.svg
1593
share/gimp/icons/Color/scalable/apps/document-revert.svg
1594
share/gimp/icons/Color/scalable/apps/document-save-as.svg
1595
share/gimp/icons/Color/scalable/apps/document-save.svg
1596
share/gimp/icons/Color/scalable/apps/edit-clear.svg
1597
share/gimp/icons/Color/scalable/apps/edit-copy.svg
1598
share/gimp/icons/Color/scalable/apps/edit-cut.svg
1599
share/gimp/icons/Color/scalable/apps/edit-delete.svg
1600
share/gimp/icons/Color/scalable/apps/edit-paste.svg
1601
share/gimp/icons/Color/scalable/apps/edit-redo.svg
1602
share/gimp/icons/Color/scalable/apps/edit-undo.svg
1603
share/gimp/icons/Color/scalable/apps/folder-new.svg
1604
share/gimp/icons/Color/scalable/apps/folder.svg
1605
share/gimp/icons/Color/scalable/apps/format-indent-more.svg
1606
share/gimp/icons/Color/scalable/apps/format-justify-center.svg
1607
share/gimp/icons/Color/scalable/apps/format-justify-fill.svg
1608
share/gimp/icons/Color/scalable/apps/format-justify-left.svg
1609
share/gimp/icons/Color/scalable/apps/format-justify-right.svg
1610
share/gimp/icons/Color/scalable/apps/gimp-anchor.svg
1611
share/gimp/icons/Color/scalable/apps/gimp-attach.svg
1612
share/gimp/icons/Color/scalable/apps/gimp-business-card.svg
1613
share/gimp/icons/Color/scalable/apps/gimp-cap-butt.svg
1614
share/gimp/icons/Color/scalable/apps/gimp-cap-round.svg
1615
share/gimp/icons/Color/scalable/apps/gimp-cap-square.svg
1616
share/gimp/icons/Color/scalable/apps/gimp-center.svg
1617
share/gimp/icons/Color/scalable/apps/gimp-channel-alpha.svg
1618
share/gimp/icons/Color/scalable/apps/gimp-channel-blue.svg
1619
share/gimp/icons/Color/scalable/apps/gimp-channel-gray.svg
1620
share/gimp/icons/Color/scalable/apps/gimp-channel-green.svg
1621
share/gimp/icons/Color/scalable/apps/gimp-channel-indexed.svg
1622
share/gimp/icons/Color/scalable/apps/gimp-channel-red.svg
1623
share/gimp/icons/Color/scalable/apps/gimp-channel.svg
1624
share/gimp/icons/Color/scalable/apps/gimp-channels.svg
1625
share/gimp/icons/Color/scalable/apps/gimp-char-picker.svg
1626
share/gimp/icons/Color/scalable/apps/gimp-clipboard.svg
1627
share/gimp/icons/Color/scalable/apps/gimp-close-all.svg
1628
share/gimp/icons/Color/scalable/apps/gimp-close.svg
1629
share/gimp/icons/Color/scalable/apps/gimp-color-cmyk.svg
1630
share/gimp/icons/Color/scalable/apps/gimp-color-pick-from-screen.svg
1631
share/gimp/icons/Color/scalable/apps/gimp-color-picker-black.svg
1632
share/gimp/icons/Color/scalable/apps/gimp-color-picker-gray.svg
1633
share/gimp/icons/Color/scalable/apps/gimp-color-picker-white.svg
1634
share/gimp/icons/Color/scalable/apps/gimp-color-space-linear.svg
1635
share/gimp/icons/Color/scalable/apps/gimp-color-space-perceptual.svg
1636
share/gimp/icons/Color/scalable/apps/gimp-color-triangle.svg
1637
share/gimp/icons/Color/scalable/apps/gimp-color-water.svg
1638
share/gimp/icons/Color/scalable/apps/gimp-colormap.svg
1639
share/gimp/icons/Color/scalable/apps/gimp-controller-keyboard.svg
1640
share/gimp/icons/Color/scalable/apps/gimp-controller-linux-input.svg
1641
share/gimp/icons/Color/scalable/apps/gimp-controller-midi.svg
1642
share/gimp/icons/Color/scalable/apps/gimp-controller-wheel.svg
1643
share/gimp/icons/Color/scalable/apps/gimp-controller.svg
1644
share/gimp/icons/Color/scalable/apps/gimp-convert-grayscale.svg
1645
share/gimp/icons/Color/scalable/apps/gimp-convert-indexed.svg
1646
share/gimp/icons/Color/scalable/apps/gimp-convert-rgb.svg
1647
share/gimp/icons/Color/scalable/apps/gimp-cursor.svg
1648
share/gimp/icons/Color/scalable/apps/gimp-curve-free.svg
1649
share/gimp/icons/Color/scalable/apps/gimp-curve-smooth.svg
1650
share/gimp/icons/Color/scalable/apps/gimp-dashboard.svg
1651
share/gimp/icons/Color/scalable/apps/gimp-default-colors.svg
1652
share/gimp/icons/Color/scalable/apps/gimp-detach.svg
1653
share/gimp/icons/Color/scalable/apps/gimp-device-status.svg
1654
share/gimp/icons/Color/scalable/apps/gimp-display-filter-clip-warning.svg
1655
share/gimp/icons/Color/scalable/apps/gimp-display-filter-colorblind.svg
1656
share/gimp/icons/Color/scalable/apps/gimp-display-filter-contrast.svg
1657
share/gimp/icons/Color/scalable/apps/gimp-display-filter-gamma.svg
1658
share/gimp/icons/Color/scalable/apps/gimp-display-filter-lcms.svg
1659
share/gimp/icons/Color/scalable/apps/gimp-display-filter-proof.svg
1660
share/gimp/icons/Color/scalable/apps/gimp-display-filter.svg
1661
share/gimp/icons/Color/scalable/apps/gimp-display.svg
1662
share/gimp/icons/Color/scalable/apps/gimp-duplicate.svg
1663
share/gimp/icons/Color/scalable/apps/gimp-dynamics.svg
1664
share/gimp/icons/Color/scalable/apps/gimp-error.svg
1665
share/gimp/icons/Color/scalable/apps/gimp-file-manager.svg
1666
share/gimp/icons/Color/scalable/apps/gimp-flip-horizontal.svg
1667
share/gimp/icons/Color/scalable/apps/gimp-flip-vertical.svg
1668
share/gimp/icons/Color/scalable/apps/gimp-floating-selection.svg
1669
share/gimp/icons/Color/scalable/apps/gimp-gegl.svg
1670
share/gimp/icons/Color/scalable/apps/gimp-gradient-bilinear.svg
1671
share/gimp/icons/Color/scalable/apps/gimp-gradient-conical-asymmetric.svg
1672
share/gimp/icons/Color/scalable/apps/gimp-gradient-conical-symmetric.svg
1673
share/gimp/icons/Color/scalable/apps/gimp-gradient-linear.svg
1674
share/gimp/icons/Color/scalable/apps/gimp-gradient-radial.svg
1675
share/gimp/icons/Color/scalable/apps/gimp-gradient-shapeburst-angular.svg
1676
share/gimp/icons/Color/scalable/apps/gimp-gradient-shapeburst-dimpled.svg
1677
share/gimp/icons/Color/scalable/apps/gimp-gradient-shapeburst-spherical.svg
1678
share/gimp/icons/Color/scalable/apps/gimp-gradient-spiral-anticlockwise.svg
1679
share/gimp/icons/Color/scalable/apps/gimp-gradient-spiral-clockwise.svg
1680
share/gimp/icons/Color/scalable/apps/gimp-gradient-square.svg
1681
share/gimp/icons/Color/scalable/apps/gimp-gravity-east.svg
1682
share/gimp/icons/Color/scalable/apps/gimp-gravity-north-east.svg
1683
share/gimp/icons/Color/scalable/apps/gimp-gravity-north-west.svg
1684
share/gimp/icons/Color/scalable/apps/gimp-gravity-north.svg
1685
share/gimp/icons/Color/scalable/apps/gimp-gravity-south-east.svg
1686
share/gimp/icons/Color/scalable/apps/gimp-gravity-south-west.svg
1687
share/gimp/icons/Color/scalable/apps/gimp-gravity-south.svg
1688
share/gimp/icons/Color/scalable/apps/gimp-gravity-west.svg
1689
share/gimp/icons/Color/scalable/apps/gimp-grid.svg
1690
share/gimp/icons/Color/scalable/apps/gimp-group-layer.svg
1691
share/gimp/icons/Color/scalable/apps/gimp-hcenter.svg
1692
share/gimp/icons/Color/scalable/apps/gimp-hchain-broken.svg
1693
share/gimp/icons/Color/scalable/apps/gimp-hchain.svg
1694
share/gimp/icons/Color/scalable/apps/gimp-hfill.svg
1695
share/gimp/icons/Color/scalable/apps/gimp-histogram-linear.svg
1696
share/gimp/icons/Color/scalable/apps/gimp-histogram-logarithmic.svg
1697
share/gimp/icons/Color/scalable/apps/gimp-histogram.svg
1698
share/gimp/icons/Color/scalable/apps/gimp-image-open.svg
1699
share/gimp/icons/Color/scalable/apps/gimp-image-reload.svg
1700
share/gimp/icons/Color/scalable/apps/gimp-image.svg
1701
share/gimp/icons/Color/scalable/apps/gimp-images.svg
1702
share/gimp/icons/Color/scalable/apps/gimp-info.svg
1703
share/gimp/icons/Color/scalable/apps/gimp-input-device.svg
1704
share/gimp/icons/Color/scalable/apps/gimp-invert.svg
1705
share/gimp/icons/Color/scalable/apps/gimp-join-bevel.svg
1706
share/gimp/icons/Color/scalable/apps/gimp-join-miter.svg
1707
share/gimp/icons/Color/scalable/apps/gimp-join-round.svg
1708
share/gimp/icons/Color/scalable/apps/gimp-landscape.svg
1709
share/gimp/icons/Color/scalable/apps/gimp-layer-mask.svg
1710
share/gimp/icons/Color/scalable/apps/gimp-layer-to-imagesize.svg
1711
share/gimp/icons/Color/scalable/apps/gimp-layer.svg
1712
share/gimp/icons/Color/scalable/apps/gimp-layers.svg
1713
share/gimp/icons/Color/scalable/apps/gimp-letter-spacing.svg
1714
share/gimp/icons/Color/scalable/apps/gimp-line-spacing.svg
1715
share/gimp/icons/Color/scalable/apps/gimp-linked.svg
1716
share/gimp/icons/Color/scalable/apps/gimp-list.svg
1717
share/gimp/icons/Color/scalable/apps/gimp-menu-left.svg
1718
share/gimp/icons/Color/scalable/apps/gimp-menu-right.svg
1719
share/gimp/icons/Color/scalable/apps/gimp-merge-down.svg
1720
share/gimp/icons/Color/scalable/apps/gimp-move-to-screen.svg
1721
share/gimp/icons/Color/scalable/apps/gimp-navigation.svg
1722
share/gimp/icons/Color/scalable/apps/gimp-paste-as-new.svg
1723
share/gimp/icons/Color/scalable/apps/gimp-paste-into.svg
1724
share/gimp/icons/Color/scalable/apps/gimp-path-stroke.svg
1725
share/gimp/icons/Color/scalable/apps/gimp-path.svg
1726
share/gimp/icons/Color/scalable/apps/gimp-paths.svg
1727
share/gimp/icons/Color/scalable/apps/gimp-pattern.svg
1728
share/gimp/icons/Color/scalable/apps/gimp-plugin.svg
1729
share/gimp/icons/Color/scalable/apps/gimp-portrait.svg
1730
share/gimp/icons/Color/scalable/apps/gimp-prefs-color-management.svg
1731
share/gimp/icons/Color/scalable/apps/gimp-prefs-controllers.svg
1732
share/gimp/icons/Color/scalable/apps/gimp-prefs-default-comment.svg
1733
share/gimp/icons/Color/scalable/apps/gimp-prefs-default-grid.svg
1734
share/gimp/icons/Color/scalable/apps/gimp-prefs-display.svg
1735
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-brushes.svg
1736
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-dynamics.svg
1737
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-environ.svg
1738
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-fonts.svg
1739
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-gradients.svg
1740
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-icon-themes.svg
1741
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-interp.svg
1742
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-modules.svg
1743
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-mypaint-brushes.svg
1744
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-palettes.svg
1745
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-patterns.svg
1746
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-plug-ins.svg
1747
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-scripts.svg
1748
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-themes.svg
1749
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-tool-plug-ins.svg
1750
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-tool-presets.svg
1751
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-tools.svg
1752
share/gimp/icons/Color/scalable/apps/gimp-prefs-folders.svg
1753
share/gimp/icons/Color/scalable/apps/gimp-prefs-help-system.svg
1754
share/gimp/icons/Color/scalable/apps/gimp-prefs-icon-theme.svg
1755
share/gimp/icons/Color/scalable/apps/gimp-prefs-image-title.svg
1756
share/gimp/icons/Color/scalable/apps/gimp-prefs-image-windows-appearance.svg
1757
share/gimp/icons/Color/scalable/apps/gimp-prefs-image-windows-snapping.svg
1758
share/gimp/icons/Color/scalable/apps/gimp-prefs-image-windows.svg
1759
share/gimp/icons/Color/scalable/apps/gimp-prefs-import-export.svg
1760
share/gimp/icons/Color/scalable/apps/gimp-prefs-input-devices.svg
1761
share/gimp/icons/Color/scalable/apps/gimp-prefs-interface.svg
1762
share/gimp/icons/Color/scalable/apps/gimp-prefs-new-image.svg
1763
share/gimp/icons/Color/scalable/apps/gimp-prefs-playground.svg
1764
share/gimp/icons/Color/scalable/apps/gimp-prefs-session.svg
1765
share/gimp/icons/Color/scalable/apps/gimp-prefs-system-resources.svg
1766
share/gimp/icons/Color/scalable/apps/gimp-prefs-theme.svg
1767
share/gimp/icons/Color/scalable/apps/gimp-prefs-tool-options.svg
1768
share/gimp/icons/Color/scalable/apps/gimp-prefs-toolbox.svg
1769
share/gimp/icons/Color/scalable/apps/gimp-prefs-window-management.svg
1770
share/gimp/icons/Color/scalable/apps/gimp-question.svg
1771
share/gimp/icons/Color/scalable/apps/gimp-quick-mask-off.svg
1772
share/gimp/icons/Color/scalable/apps/gimp-quick-mask-on.svg
1773
share/gimp/icons/Color/scalable/apps/gimp-reset.svg
1774
share/gimp/icons/Color/scalable/apps/gimp-reshow-filter.svg
1775
share/gimp/icons/Color/scalable/apps/gimp-resize.svg
1776
share/gimp/icons/Color/scalable/apps/gimp-rotate-180.svg
1777
share/gimp/icons/Color/scalable/apps/gimp-rotate-270.svg
1778
share/gimp/icons/Color/scalable/apps/gimp-rotate-90.svg
1779
share/gimp/icons/Color/scalable/apps/gimp-sample-point.svg
1780
share/gimp/icons/Color/scalable/apps/gimp-scale.svg
1781
share/gimp/icons/Color/scalable/apps/gimp-selection-add.svg
1782
share/gimp/icons/Color/scalable/apps/gimp-selection-all.svg
1783
share/gimp/icons/Color/scalable/apps/gimp-selection-border.svg
1784
share/gimp/icons/Color/scalable/apps/gimp-selection-grow.svg
1785
share/gimp/icons/Color/scalable/apps/gimp-selection-intersect.svg
1786
share/gimp/icons/Color/scalable/apps/gimp-selection-none.svg
1787
share/gimp/icons/Color/scalable/apps/gimp-selection-replace.svg
1788
share/gimp/icons/Color/scalable/apps/gimp-selection-shrink.svg
1789
share/gimp/icons/Color/scalable/apps/gimp-selection-stroke.svg
1790
share/gimp/icons/Color/scalable/apps/gimp-selection-subtract.svg
1791
share/gimp/icons/Color/scalable/apps/gimp-selection-to-channel.svg
1792
share/gimp/icons/Color/scalable/apps/gimp-selection-to-path.svg
1793
share/gimp/icons/Color/scalable/apps/gimp-selection.svg
1794
share/gimp/icons/Color/scalable/apps/gimp-shape-circle.svg
1795
share/gimp/icons/Color/scalable/apps/gimp-shape-diamond.svg
1796
share/gimp/icons/Color/scalable/apps/gimp-shape-square.svg
1797
share/gimp/icons/Color/scalable/apps/gimp-shred.svg
1798
share/gimp/icons/Color/scalable/apps/gimp-smartphone.svg
1799
share/gimp/icons/Color/scalable/apps/gimp-swap-colors.svg
1800
share/gimp/icons/Color/scalable/apps/gimp-symmetry.svg
1801
share/gimp/icons/Color/scalable/apps/gimp-template.svg
1802
share/gimp/icons/Color/scalable/apps/gimp-text-dir-ltr.svg
1803
share/gimp/icons/Color/scalable/apps/gimp-text-dir-rtl.svg
1804
share/gimp/icons/Color/scalable/apps/gimp-text-layer.svg
1805
share/gimp/icons/Color/scalable/apps/gimp-toilet-paper.svg
1806
share/gimp/icons/Color/scalable/apps/gimp-tool-airbrush.svg
1807
share/gimp/icons/Color/scalable/apps/gimp-tool-align.svg
1808
share/gimp/icons/Color/scalable/apps/gimp-tool-blur.svg
1809
share/gimp/icons/Color/scalable/apps/gimp-tool-brightness-contrast.svg
1810
share/gimp/icons/Color/scalable/apps/gimp-tool-bucket-fill.svg
1811
share/gimp/icons/Color/scalable/apps/gimp-tool-by-color-select.svg
1812
share/gimp/icons/Color/scalable/apps/gimp-tool-cage.svg
1813
share/gimp/icons/Color/scalable/apps/gimp-tool-clone.svg
1814
share/gimp/icons/Color/scalable/apps/gimp-tool-color-balance.svg
1815
share/gimp/icons/Color/scalable/apps/gimp-tool-color-picker.svg
1816
share/gimp/icons/Color/scalable/apps/gimp-tool-color-temperature.svg
1817
share/gimp/icons/Color/scalable/apps/gimp-tool-colorize.svg
1818
share/gimp/icons/Color/scalable/apps/gimp-tool-crop.svg
1819
share/gimp/icons/Color/scalable/apps/gimp-tool-curves.svg
1820
share/gimp/icons/Color/scalable/apps/gimp-tool-desaturate.svg
1821
share/gimp/icons/Color/scalable/apps/gimp-tool-dodge.svg
1822
share/gimp/icons/Color/scalable/apps/gimp-tool-ellipse-select.svg
1823
share/gimp/icons/Color/scalable/apps/gimp-tool-eraser.svg
1824
share/gimp/icons/Color/scalable/apps/gimp-tool-exposure.svg
1825
share/gimp/icons/Color/scalable/apps/gimp-tool-flip.svg
1826
share/gimp/icons/Color/scalable/apps/gimp-tool-foreground-select.svg
1827
share/gimp/icons/Color/scalable/apps/gimp-tool-free-select.svg
1828
share/gimp/icons/Color/scalable/apps/gimp-tool-fuzzy-select.svg
1829
share/gimp/icons/Color/scalable/apps/gimp-tool-gradient.svg
1830
share/gimp/icons/Color/scalable/apps/gimp-tool-handle-transform.svg
1831
share/gimp/icons/Color/scalable/apps/gimp-tool-heal.svg
1832
share/gimp/icons/Color/scalable/apps/gimp-tool-hue-saturation.svg
1833
share/gimp/icons/Color/scalable/apps/gimp-tool-ink.svg
1834
share/gimp/icons/Color/scalable/apps/gimp-tool-iscissors.svg
1835
share/gimp/icons/Color/scalable/apps/gimp-tool-levels.svg
1836
share/gimp/icons/Color/scalable/apps/gimp-tool-measure.svg
1837
share/gimp/icons/Color/scalable/apps/gimp-tool-move.svg
1838
share/gimp/icons/Color/scalable/apps/gimp-tool-mypaint-brush.svg
1839
share/gimp/icons/Color/scalable/apps/gimp-tool-n-point-deformation.svg
1840
share/gimp/icons/Color/scalable/apps/gimp-tool-options.svg
1841
share/gimp/icons/Color/scalable/apps/gimp-tool-paintbrush.svg
1842
share/gimp/icons/Color/scalable/apps/gimp-tool-path.svg
1843
share/gimp/icons/Color/scalable/apps/gimp-tool-pencil.svg
1844
share/gimp/icons/Color/scalable/apps/gimp-tool-perspective-clone.svg
1845
share/gimp/icons/Color/scalable/apps/gimp-tool-perspective.svg
1846
share/gimp/icons/Color/scalable/apps/gimp-tool-posterize.svg
1847
share/gimp/icons/Color/scalable/apps/gimp-tool-preset.svg
1848
share/gimp/icons/Color/scalable/apps/gimp-tool-rect-select.svg
1849
share/gimp/icons/Color/scalable/apps/gimp-tool-rotate.svg
1850
share/gimp/icons/Color/scalable/apps/gimp-tool-scale.svg
1851
share/gimp/icons/Color/scalable/apps/gimp-tool-seamless-clone.svg
1852
share/gimp/icons/Color/scalable/apps/gimp-tool-shadows-highlights.svg
1853
share/gimp/icons/Color/scalable/apps/gimp-tool-shear.svg
1854
share/gimp/icons/Color/scalable/apps/gimp-tool-smudge.svg
1855
share/gimp/icons/Color/scalable/apps/gimp-tool-text.svg
1856
share/gimp/icons/Color/scalable/apps/gimp-tool-threshold.svg
1857
share/gimp/icons/Color/scalable/apps/gimp-tool-unified-transform.svg
1858
share/gimp/icons/Color/scalable/apps/gimp-tool-warp.svg
1859
share/gimp/icons/Color/scalable/apps/gimp-tool-zoom.svg
1860
share/gimp/icons/Color/scalable/apps/gimp-tools.svg
1861
share/gimp/icons/Color/scalable/apps/gimp-transparency.svg
1862
share/gimp/icons/Color/scalable/apps/gimp-undo-history.svg
1863
share/gimp/icons/Color/scalable/apps/gimp-user-manual.svg
1864
share/gimp/icons/Color/scalable/apps/gimp-vcenter.svg
1865
share/gimp/icons/Color/scalable/apps/gimp-vchain-broken.svg
1866
share/gimp/icons/Color/scalable/apps/gimp-vchain.svg
1867
share/gimp/icons/Color/scalable/apps/gimp-vfill.svg
1868
share/gimp/icons/Color/scalable/apps/gimp-video.svg
1869
share/gimp/icons/Color/scalable/apps/gimp-visible.svg
1870
share/gimp/icons/Color/scalable/apps/gimp-warning.svg
1871
share/gimp/icons/Color/scalable/apps/gimp-web.svg
1872
share/gimp/icons/Color/scalable/apps/gimp-wilber-eek.svg
1873
share/gimp/icons/Color/scalable/apps/gimp-wilber-outline.svg
1874
share/gimp/icons/Color/scalable/apps/gimp-wilber.svg
1875
share/gimp/icons/Color/scalable/apps/gimp-zoom-follow-window.svg
1876
share/gimp/icons/Color/scalable/apps/go-bottom.svg
1877
share/gimp/icons/Color/scalable/apps/go-down.svg
1878
share/gimp/icons/Color/scalable/apps/go-first.svg
1879
share/gimp/icons/Color/scalable/apps/go-home.svg
1880
share/gimp/icons/Color/scalable/apps/go-last.svg
1881
share/gimp/icons/Color/scalable/apps/go-next.svg
1882
share/gimp/icons/Color/scalable/apps/go-previous.svg
1883
share/gimp/icons/Color/scalable/apps/go-top.svg
1884
share/gimp/icons/Color/scalable/apps/go-up.svg
1885
share/gimp/icons/Color/scalable/apps/gtk-cancel.svg
1886
share/gimp/icons/Color/scalable/apps/gtk-edit.svg
1887
share/gimp/icons/Color/scalable/apps/gtk-no.svg
1888
share/gimp/icons/Color/scalable/apps/gtk-ok.svg
1889
share/gimp/icons/Color/scalable/apps/gtk-select-color.svg
1890
share/gimp/icons/Color/scalable/apps/gtk-select-font.svg
1891
share/gimp/icons/Color/scalable/apps/gtk-yes.svg
1892
share/gimp/icons/Color/scalable/apps/help-about.svg
1893
share/gimp/icons/Color/scalable/apps/list-add.svg
1894
share/gimp/icons/Color/scalable/apps/list-remove.svg
1895
share/gimp/icons/Color/scalable/apps/media-floppy.svg
1896
share/gimp/icons/Color/scalable/apps/media-optical.svg
1897
share/gimp/icons/Color/scalable/apps/media-playback-pause.svg
1898
share/gimp/icons/Color/scalable/apps/media-playback-start.svg
1899
share/gimp/icons/Color/scalable/apps/media-seek-backward.svg
1900
share/gimp/icons/Color/scalable/apps/media-skip-backward.svg
1901
share/gimp/icons/Color/scalable/apps/media-skip-forward.svg
1902
share/gimp/icons/Color/scalable/apps/preferences-system.svg
1903
share/gimp/icons/Color/scalable/apps/process-stop.svg
1904
share/gimp/icons/Color/scalable/apps/system-run.svg
1905
share/gimp/icons/Color/scalable/apps/view-fullscreen.svg
1906
share/gimp/icons/Color/scalable/apps/view-refresh.svg
1907
share/gimp/icons/Color/scalable/apps/window-close.svg
1908
share/gimp/icons/Color/scalable/apps/window-new.svg
1909
share/gimp/icons/Color/scalable/apps/zoom-fit-best.svg
1910
share/gimp/icons/Color/scalable/apps/zoom-in.svg
1911
share/gimp/icons/Color/scalable/apps/zoom-original.svg
1912
share/gimp/icons/Color/scalable/apps/zoom-out.svg
1913
share/gimp/icons/Legacy/128x128/apps/gimp-wilber-outline.png
1914
share/gimp/icons/Legacy/128x128/apps/gimp-wilber.png
1915
share/gimp/icons/Legacy/12x12/apps/gimp-close.png
1916
share/gimp/icons/Legacy/12x12/apps/gimp-default-colors.png
1917
share/gimp/icons/Legacy/12x12/apps/gimp-linked.png
1918
share/gimp/icons/Legacy/12x12/apps/gimp-menu-left.png
1919
share/gimp/icons/Legacy/12x12/apps/gimp-menu-right.png
1920
share/gimp/icons/Legacy/12x12/apps/gimp-quick-mask-off.png
1921
share/gimp/icons/Legacy/12x12/apps/gimp-quick-mask-on.png
1922
share/gimp/icons/Legacy/12x12/apps/gimp-swap-colors.png
1923
share/gimp/icons/Legacy/12x12/apps/gimp-visible.png
1924
share/gimp/icons/Legacy/12x12/apps/gimp-zoom-follow-window.png
1925
share/gimp/icons/Legacy/16x16/apps/gimp-anchor.png
1926
share/gimp/icons/Legacy/16x16/apps/gimp-cap-butt.png
1927
share/gimp/icons/Legacy/16x16/apps/gimp-cap-round.png
1928
share/gimp/icons/Legacy/16x16/apps/gimp-cap-square.png
1929
share/gimp/icons/Legacy/16x16/apps/gimp-center.png
1930
share/gimp/icons/Legacy/16x16/apps/gimp-channel-alpha.png
1931
share/gimp/icons/Legacy/16x16/apps/gimp-channel-blue.png
1932
share/gimp/icons/Legacy/16x16/apps/gimp-channel-gray.png
1933
share/gimp/icons/Legacy/16x16/apps/gimp-channel-green.png
1934
share/gimp/icons/Legacy/16x16/apps/gimp-channel-indexed.png
1935
share/gimp/icons/Legacy/16x16/apps/gimp-channel-red.png
1936
share/gimp/icons/Legacy/16x16/apps/gimp-channel.png
1937
share/gimp/icons/Legacy/16x16/apps/gimp-channels.png
1938
share/gimp/icons/Legacy/16x16/apps/gimp-color-pick-from-screen.png
1939
share/gimp/icons/Legacy/16x16/apps/gimp-color-triangle.png
1940
share/gimp/icons/Legacy/16x16/apps/gimp-colormap.png
1941
share/gimp/icons/Legacy/16x16/apps/gimp-controller-keyboard.png
1942
share/gimp/icons/Legacy/16x16/apps/gimp-controller-linux-input.png
1943
share/gimp/icons/Legacy/16x16/apps/gimp-controller-midi.png
1944
share/gimp/icons/Legacy/16x16/apps/gimp-controller-wheel.png
1945
share/gimp/icons/Legacy/16x16/apps/gimp-controller.png
1946
share/gimp/icons/Legacy/16x16/apps/gimp-convert-grayscale.png
1947
share/gimp/icons/Legacy/16x16/apps/gimp-convert-indexed.png
1948
share/gimp/icons/Legacy/16x16/apps/gimp-convert-rgb.png
1949
share/gimp/icons/Legacy/16x16/apps/gimp-cursor.png
1950
share/gimp/icons/Legacy/16x16/apps/gimp-curve-free.png
1951
share/gimp/icons/Legacy/16x16/apps/gimp-curve-smooth.png
1952
share/gimp/icons/Legacy/16x16/apps/gimp-device-status.png
1953
share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-colorblind.png
1954
share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-contrast.png
1955
share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-gamma.png
1956
share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-lcms.png
1957
share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-proof.png
1958
share/gimp/icons/Legacy/16x16/apps/gimp-display-filter.png
1959
share/gimp/icons/Legacy/16x16/apps/gimp-duplicate.png
1960
share/gimp/icons/Legacy/16x16/apps/gimp-dynamics.png
1961
share/gimp/icons/Legacy/16x16/apps/gimp-flip-horizontal.png
1962
share/gimp/icons/Legacy/16x16/apps/gimp-flip-vertical.png
1963
share/gimp/icons/Legacy/16x16/apps/gimp-floating-selection.png
1964
share/gimp/icons/Legacy/16x16/apps/gimp-gegl.png
1965
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-bilinear.png
1966
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-conical-asymmetric.png
1967
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-conical-symmetric.png
1968
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-linear.png
1969
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-radial.png
1970
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-shapeburst-angular.png
1971
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-shapeburst-dimpled.png
1972
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-shapeburst-spherical.png
1973
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-spiral-anticlockwise.png
1974
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-spiral-clockwise.png
1975
share/gimp/icons/Legacy/16x16/apps/gimp-gradient-square.png
1976
share/gimp/icons/Legacy/16x16/apps/gimp-grid.png
1977
share/gimp/icons/Legacy/16x16/apps/gimp-histogram-linear.png
1978
share/gimp/icons/Legacy/16x16/apps/gimp-histogram-logarithmic.png
1979
share/gimp/icons/Legacy/16x16/apps/gimp-histogram.png
1980
share/gimp/icons/Legacy/16x16/apps/gimp-image.png
1981
share/gimp/icons/Legacy/16x16/apps/gimp-images.png
1982
share/gimp/icons/Legacy/16x16/apps/gimp-info.png
1983
share/gimp/icons/Legacy/16x16/apps/gimp-input-device.png
1984
share/gimp/icons/Legacy/16x16/apps/gimp-invert.png
1985
share/gimp/icons/Legacy/16x16/apps/gimp-join-bevel.png
1986
share/gimp/icons/Legacy/16x16/apps/gimp-join-miter.png
1987
share/gimp/icons/Legacy/16x16/apps/gimp-join-round.png
1988
share/gimp/icons/Legacy/16x16/apps/gimp-landscape.png
1989
share/gimp/icons/Legacy/16x16/apps/gimp-layer-mask.png
1990
share/gimp/icons/Legacy/16x16/apps/gimp-layer-to-imagesize.png
1991
share/gimp/icons/Legacy/16x16/apps/gimp-layer.png
1992
share/gimp/icons/Legacy/16x16/apps/gimp-layers.png
1993
share/gimp/icons/Legacy/16x16/apps/gimp-list.png
1994
share/gimp/icons/Legacy/16x16/apps/gimp-merge-down.png
1995
share/gimp/icons/Legacy/16x16/apps/gimp-move-to-screen.png
1996
share/gimp/icons/Legacy/16x16/apps/gimp-navigation.png
1997
share/gimp/icons/Legacy/16x16/apps/gimp-paste-as-new.png
1998
share/gimp/icons/Legacy/16x16/apps/gimp-paste-into.png
1999
share/gimp/icons/Legacy/16x16/apps/gimp-path-stroke.png
2000
share/gimp/icons/Legacy/16x16/apps/gimp-path.png
2001
share/gimp/icons/Legacy/16x16/apps/gimp-paths.png
2002
share/gimp/icons/Legacy/16x16/apps/gimp-plugin.png
2003
share/gimp/icons/Legacy/16x16/apps/gimp-portrait.png
2004
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-brushes.png
2005
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-dynamics.png
2006
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-environ.png
2007
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-fonts.png
2008
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-gradients.png
2009
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-icon-themes.png
2010
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-interp.png
2011
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-modules.png
2012
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-palettes.png
2013
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-patterns.png
2014
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-plug-ins.png
2015
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-scripts.png
2016
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-themes.png
2017
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-tool-plug-ins.png
2018
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-tool-presets.png
2019
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-tools.png
2020
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-icon-theme.png
2021
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-image-windows.png
2022
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-interface.png
2023
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-theme.png
2024
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-toolbox.png
2025
share/gimp/icons/Legacy/16x16/apps/gimp-prefs-window-management.png
2026
share/gimp/icons/Legacy/16x16/apps/gimp-print-resolution.png
2027
share/gimp/icons/Legacy/16x16/apps/gimp-reset.png
2028
share/gimp/icons/Legacy/16x16/apps/gimp-reshow-filter.png
2029
share/gimp/icons/Legacy/16x16/apps/gimp-resize.png
2030
share/gimp/icons/Legacy/16x16/apps/gimp-rotate-180.png
2031
share/gimp/icons/Legacy/16x16/apps/gimp-rotate-270.png
2032
share/gimp/icons/Legacy/16x16/apps/gimp-rotate-90.png
2033
share/gimp/icons/Legacy/16x16/apps/gimp-sample-point.png
2034
share/gimp/icons/Legacy/16x16/apps/gimp-scale.png
2035
share/gimp/icons/Legacy/16x16/apps/gimp-selection-add.png
2036
share/gimp/icons/Legacy/16x16/apps/gimp-selection-all.png
2037
share/gimp/icons/Legacy/16x16/apps/gimp-selection-border.png
2038
share/gimp/icons/Legacy/16x16/apps/gimp-selection-grow.png
2039
share/gimp/icons/Legacy/16x16/apps/gimp-selection-intersect.png
2040
share/gimp/icons/Legacy/16x16/apps/gimp-selection-none.png
2041
share/gimp/icons/Legacy/16x16/apps/gimp-selection-replace.png
2042
share/gimp/icons/Legacy/16x16/apps/gimp-selection-shrink.png
2043
share/gimp/icons/Legacy/16x16/apps/gimp-selection-stroke.png
2044
share/gimp/icons/Legacy/16x16/apps/gimp-selection-subtract.png
2045
share/gimp/icons/Legacy/16x16/apps/gimp-selection-to-channel.png
2046
share/gimp/icons/Legacy/16x16/apps/gimp-selection-to-path.png
2047
share/gimp/icons/Legacy/16x16/apps/gimp-selection.png
2048
share/gimp/icons/Legacy/16x16/apps/gimp-shape-circle.png
2049
share/gimp/icons/Legacy/16x16/apps/gimp-shape-diamond.png
2050
share/gimp/icons/Legacy/16x16/apps/gimp-shape-square.png
2051
share/gimp/icons/Legacy/16x16/apps/gimp-template.png
2052
share/gimp/icons/Legacy/16x16/apps/gimp-text-layer.png
2053
share/gimp/icons/Legacy/16x16/apps/gimp-toilet-paper.png
2054
share/gimp/icons/Legacy/16x16/apps/gimp-tool-airbrush.png
2055
share/gimp/icons/Legacy/16x16/apps/gimp-tool-align.png
2056
share/gimp/icons/Legacy/16x16/apps/gimp-tool-blur.png
2057
share/gimp/icons/Legacy/16x16/apps/gimp-tool-brightness-contrast.png
2058
share/gimp/icons/Legacy/16x16/apps/gimp-tool-bucket-fill.png
2059
share/gimp/icons/Legacy/16x16/apps/gimp-tool-by-color-select.png
2060
share/gimp/icons/Legacy/16x16/apps/gimp-tool-cage.png
2061
share/gimp/icons/Legacy/16x16/apps/gimp-tool-clone.png
2062
share/gimp/icons/Legacy/16x16/apps/gimp-tool-color-balance.png
2063
share/gimp/icons/Legacy/16x16/apps/gimp-tool-color-picker.png
2064
share/gimp/icons/Legacy/16x16/apps/gimp-tool-colorize.png
2065
share/gimp/icons/Legacy/16x16/apps/gimp-tool-crop.png
2066
share/gimp/icons/Legacy/16x16/apps/gimp-tool-curves.png
2067
share/gimp/icons/Legacy/16x16/apps/gimp-tool-desaturate.png
2068
share/gimp/icons/Legacy/16x16/apps/gimp-tool-dodge.png
2069
share/gimp/icons/Legacy/16x16/apps/gimp-tool-ellipse-select.png
2070
share/gimp/icons/Legacy/16x16/apps/gimp-tool-eraser.png
2071
share/gimp/icons/Legacy/16x16/apps/gimp-tool-flip.png
2072
share/gimp/icons/Legacy/16x16/apps/gimp-tool-foreground-select.png
2073
share/gimp/icons/Legacy/16x16/apps/gimp-tool-free-select.png
2074
share/gimp/icons/Legacy/16x16/apps/gimp-tool-fuzzy-select.png
2075
share/gimp/icons/Legacy/16x16/apps/gimp-tool-gradient.png
2076
share/gimp/icons/Legacy/16x16/apps/gimp-tool-handle-transform.png
2077
share/gimp/icons/Legacy/16x16/apps/gimp-tool-heal.png
2078
share/gimp/icons/Legacy/16x16/apps/gimp-tool-hue-saturation.png
2079
share/gimp/icons/Legacy/16x16/apps/gimp-tool-ink.png
2080
share/gimp/icons/Legacy/16x16/apps/gimp-tool-iscissors.png
2081
share/gimp/icons/Legacy/16x16/apps/gimp-tool-levels.png
2082
share/gimp/icons/Legacy/16x16/apps/gimp-tool-measure.png
2083
share/gimp/icons/Legacy/16x16/apps/gimp-tool-move.png
2084
share/gimp/icons/Legacy/16x16/apps/gimp-tool-mypaint-brush.png
2085
share/gimp/icons/Legacy/16x16/apps/gimp-tool-n-point-deformation.png
2086
share/gimp/icons/Legacy/16x16/apps/gimp-tool-options.png
2087
share/gimp/icons/Legacy/16x16/apps/gimp-tool-paintbrush.png
2088
share/gimp/icons/Legacy/16x16/apps/gimp-tool-path.png
2089
share/gimp/icons/Legacy/16x16/apps/gimp-tool-pencil.png
2090
share/gimp/icons/Legacy/16x16/apps/gimp-tool-perspective-clone.png
2091
share/gimp/icons/Legacy/16x16/apps/gimp-tool-perspective.png
2092
share/gimp/icons/Legacy/16x16/apps/gimp-tool-posterize.png
2093
share/gimp/icons/Legacy/16x16/apps/gimp-tool-preset.png
2094
share/gimp/icons/Legacy/16x16/apps/gimp-tool-rect-select.png
2095
share/gimp/icons/Legacy/16x16/apps/gimp-tool-rotate.png
2096
share/gimp/icons/Legacy/16x16/apps/gimp-tool-scale.png
2097
share/gimp/icons/Legacy/16x16/apps/gimp-tool-seamless-clone.png
2098
share/gimp/icons/Legacy/16x16/apps/gimp-tool-shear.png
2099
share/gimp/icons/Legacy/16x16/apps/gimp-tool-smudge.png
2100
share/gimp/icons/Legacy/16x16/apps/gimp-tool-text.png
2101
share/gimp/icons/Legacy/16x16/apps/gimp-tool-threshold.png
2102
share/gimp/icons/Legacy/16x16/apps/gimp-tool-unified-transform.png
2103
share/gimp/icons/Legacy/16x16/apps/gimp-tool-warp.png
2104
share/gimp/icons/Legacy/16x16/apps/gimp-tool-zoom.png
2105
share/gimp/icons/Legacy/16x16/apps/gimp-tools.png
2106
share/gimp/icons/Legacy/16x16/apps/gimp-transparency.png
2107
share/gimp/icons/Legacy/16x16/apps/gimp-undo-history.png
2108
share/gimp/icons/Legacy/16x16/apps/gimp-user-manual.png
2109
share/gimp/icons/Legacy/16x16/apps/gimp-video.png
2110
share/gimp/icons/Legacy/16x16/apps/gimp-warning.png
2111
share/gimp/icons/Legacy/16x16/apps/gimp-web.png
2112
share/gimp/icons/Legacy/16x16/apps/gimp-wilber.png
2113
share/gimp/icons/Legacy/16x16/apps/gtk-edit.png
2114
share/gimp/icons/Legacy/18x18/apps/gimp-color-picker-black.png
2115
share/gimp/icons/Legacy/18x18/apps/gimp-color-picker-gray.png
2116
share/gimp/icons/Legacy/18x18/apps/gimp-color-picker-white.png
2117
share/gimp/icons/Legacy/192x192/apps/gimp-wilber-outline.png
2118
share/gimp/icons/Legacy/192x192/apps/gimp-wilber.png
2119
share/gimp/icons/Legacy/20x20/apps/gimp-linked.png
2120
share/gimp/icons/Legacy/20x20/apps/gimp-visible.png
2121
share/gimp/icons/Legacy/22x22/apps/gimp-char-picker.png
2122
share/gimp/icons/Legacy/22x22/apps/gimp-dynamics.png
2123
share/gimp/icons/Legacy/22x22/apps/gimp-histogram.png
2124
share/gimp/icons/Legacy/22x22/apps/gimp-input-device.png
2125
share/gimp/icons/Legacy/22x22/apps/gimp-letter-spacing.png
2126
share/gimp/icons/Legacy/22x22/apps/gimp-line-spacing.png
2127
share/gimp/icons/Legacy/22x22/apps/gimp-path.png
2128
share/gimp/icons/Legacy/22x22/apps/gimp-paths.png
2129
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-color-management.png
2130
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-controllers.png
2131
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-default-grid.png
2132
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-display.png
2133
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-brushes.png
2134
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-dynamics.png
2135
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-environ.png
2136
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-fonts.png
2137
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-gradients.png
2138
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-icon-themes.png
2139
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-interp.png
2140
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-modules.png
2141
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-palettes.png
2142
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-patterns.png
2143
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-plug-ins.png
2144
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-scripts.png
2145
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-themes.png
2146
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-tool-plug-ins.png
2147
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-tool-presets.png
2148
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-tools.png
2149
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders.png
2150
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-help-system.png
2151
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-icon-theme.png
2152
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-image-title.png
2153
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-image-windows.png
2154
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-input-devices.png
2155
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-interface.png
2156
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-new-image.png
2157
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-playground.png
2158
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-session.png
2159
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-system-resources.png
2160
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-theme.png
2161
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-tool-options.png
2162
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-toolbox.png
2163
share/gimp/icons/Legacy/22x22/apps/gimp-prefs-window-management.png
2164
share/gimp/icons/Legacy/22x22/apps/gimp-tool-preset.png
2165
share/gimp/icons/Legacy/22x22/apps/gimp-wilber.png
2166
share/gimp/icons/Legacy/22x22/tools/gimp-gegl.png
2167
share/gimp/icons/Legacy/22x22/tools/gimp-tool-airbrush.png
2168
share/gimp/icons/Legacy/22x22/tools/gimp-tool-align.png
2169
share/gimp/icons/Legacy/22x22/tools/gimp-tool-blur.png
2170
share/gimp/icons/Legacy/22x22/tools/gimp-tool-brightness-contrast.png
2171
share/gimp/icons/Legacy/22x22/tools/gimp-tool-bucket-fill.png
2172
share/gimp/icons/Legacy/22x22/tools/gimp-tool-by-color-select.png
2173
share/gimp/icons/Legacy/22x22/tools/gimp-tool-cage.png
2174
share/gimp/icons/Legacy/22x22/tools/gimp-tool-clone.png
2175
share/gimp/icons/Legacy/22x22/tools/gimp-tool-color-balance.png
2176
share/gimp/icons/Legacy/22x22/tools/gimp-tool-color-picker.png
2177
share/gimp/icons/Legacy/22x22/tools/gimp-tool-colorize.png
2178
share/gimp/icons/Legacy/22x22/tools/gimp-tool-crop.png
2179
share/gimp/icons/Legacy/22x22/tools/gimp-tool-curves.png
2180
share/gimp/icons/Legacy/22x22/tools/gimp-tool-desaturate.png
2181
share/gimp/icons/Legacy/22x22/tools/gimp-tool-dodge.png
2182
share/gimp/icons/Legacy/22x22/tools/gimp-tool-ellipse-select.png
2183
share/gimp/icons/Legacy/22x22/tools/gimp-tool-eraser.png
2184
share/gimp/icons/Legacy/22x22/tools/gimp-tool-flip.png
2185
share/gimp/icons/Legacy/22x22/tools/gimp-tool-foreground-select.png
2186
share/gimp/icons/Legacy/22x22/tools/gimp-tool-free-select.png
2187
share/gimp/icons/Legacy/22x22/tools/gimp-tool-fuzzy-select.png
2188
share/gimp/icons/Legacy/22x22/tools/gimp-tool-gradient.png
2189
share/gimp/icons/Legacy/22x22/tools/gimp-tool-handle-transform.png
2190
share/gimp/icons/Legacy/22x22/tools/gimp-tool-heal.png
2191
share/gimp/icons/Legacy/22x22/tools/gimp-tool-hue-saturation.png
2192
share/gimp/icons/Legacy/22x22/tools/gimp-tool-ink.png
2193
share/gimp/icons/Legacy/22x22/tools/gimp-tool-iscissors.png
2194
share/gimp/icons/Legacy/22x22/tools/gimp-tool-levels.png
2195
share/gimp/icons/Legacy/22x22/tools/gimp-tool-measure.png
2196
share/gimp/icons/Legacy/22x22/tools/gimp-tool-move.png
2197
share/gimp/icons/Legacy/22x22/tools/gimp-tool-mypaint-brush.png
2198
share/gimp/icons/Legacy/22x22/tools/gimp-tool-n-point-deformation.png
2199
share/gimp/icons/Legacy/22x22/tools/gimp-tool-paintbrush.png
2200
share/gimp/icons/Legacy/22x22/tools/gimp-tool-path.png
2201
share/gimp/icons/Legacy/22x22/tools/gimp-tool-pencil.png
2202
share/gimp/icons/Legacy/22x22/tools/gimp-tool-perspective-clone.png
2203
share/gimp/icons/Legacy/22x22/tools/gimp-tool-perspective.png
2204
share/gimp/icons/Legacy/22x22/tools/gimp-tool-posterize.png
2205
share/gimp/icons/Legacy/22x22/tools/gimp-tool-rect-select.png
2206
share/gimp/icons/Legacy/22x22/tools/gimp-tool-rotate.png
2207
share/gimp/icons/Legacy/22x22/tools/gimp-tool-scale.png
2208
share/gimp/icons/Legacy/22x22/tools/gimp-tool-seamless-clone.png
2209
share/gimp/icons/Legacy/22x22/tools/gimp-tool-shear.png
2210
share/gimp/icons/Legacy/22x22/tools/gimp-tool-smudge.png
2211
share/gimp/icons/Legacy/22x22/tools/gimp-tool-text.png
2212
share/gimp/icons/Legacy/22x22/tools/gimp-tool-threshold.png
2213
share/gimp/icons/Legacy/22x22/tools/gimp-tool-unified-transform.png
2214
share/gimp/icons/Legacy/22x22/tools/gimp-tool-warp.png
2215
share/gimp/icons/Legacy/22x22/tools/gimp-tool-zoom.png
2216
share/gimp/icons/Legacy/24x24/apps/gimp-center.png
2217
share/gimp/icons/Legacy/24x24/apps/gimp-channel-alpha.png
2218
share/gimp/icons/Legacy/24x24/apps/gimp-channel-blue.png
2219
share/gimp/icons/Legacy/24x24/apps/gimp-channel-gray.png
2220
share/gimp/icons/Legacy/24x24/apps/gimp-channel-green.png
2221
share/gimp/icons/Legacy/24x24/apps/gimp-channel-indexed.png
2222
share/gimp/icons/Legacy/24x24/apps/gimp-channel-red.png
2223
share/gimp/icons/Legacy/24x24/apps/gimp-channel.png
2224
share/gimp/icons/Legacy/24x24/apps/gimp-channels.png
2225
share/gimp/icons/Legacy/24x24/apps/gimp-colormap.png
2226
share/gimp/icons/Legacy/24x24/apps/gimp-controller-keyboard.png
2227
share/gimp/icons/Legacy/24x24/apps/gimp-controller-linux-input.png
2228
share/gimp/icons/Legacy/24x24/apps/gimp-controller-midi.png
2229
share/gimp/icons/Legacy/24x24/apps/gimp-controller-wheel.png
2230
share/gimp/icons/Legacy/24x24/apps/gimp-controller.png
2231
share/gimp/icons/Legacy/24x24/apps/gimp-cursor.png
2232
share/gimp/icons/Legacy/24x24/apps/gimp-device-status.png
2233
share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-colorblind.png
2234
share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-contrast.png
2235
share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-gamma.png
2236
share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-lcms.png
2237
share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-proof.png
2238
share/gimp/icons/Legacy/24x24/apps/gimp-display-filter.png
2239
share/gimp/icons/Legacy/24x24/apps/gimp-floating-selection.png
2240
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-east.png
2241
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-north-east.png
2242
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-north-west.png
2243
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-north.png
2244
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-south-east.png
2245
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-south-west.png
2246
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-south.png
2247
share/gimp/icons/Legacy/24x24/apps/gimp-gravity-west.png
2248
share/gimp/icons/Legacy/24x24/apps/gimp-hcenter.png
2249
share/gimp/icons/Legacy/24x24/apps/gimp-hchain-broken.png
2250
share/gimp/icons/Legacy/24x24/apps/gimp-hchain.png
2251
share/gimp/icons/Legacy/24x24/apps/gimp-hfill.png
2252
share/gimp/icons/Legacy/24x24/apps/gimp-image.png
2253
share/gimp/icons/Legacy/24x24/apps/gimp-images.png
2254
share/gimp/icons/Legacy/24x24/apps/gimp-info.png
2255
share/gimp/icons/Legacy/24x24/apps/gimp-layer-mask.png
2256
share/gimp/icons/Legacy/24x24/apps/gimp-layer.png
2257
share/gimp/icons/Legacy/24x24/apps/gimp-layers.png
2258
share/gimp/icons/Legacy/24x24/apps/gimp-move-to-screen.png
2259
share/gimp/icons/Legacy/24x24/apps/gimp-print-resolution.png
2260
share/gimp/icons/Legacy/24x24/apps/gimp-sample-point.png
2261
share/gimp/icons/Legacy/24x24/apps/gimp-template.png
2262
share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-ltr.png
2263
share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-rtl.png
2264
share/gimp/icons/Legacy/24x24/apps/gimp-text-layer.png
2265
share/gimp/icons/Legacy/24x24/apps/gimp-toilet-paper.png
2266
share/gimp/icons/Legacy/24x24/apps/gimp-tool-options.png
2267
share/gimp/icons/Legacy/24x24/apps/gimp-tools.png
2268
share/gimp/icons/Legacy/24x24/apps/gimp-transparency.png
2269
share/gimp/icons/Legacy/24x24/apps/gimp-undo-history.png
2270
share/gimp/icons/Legacy/24x24/apps/gimp-user-manual.png
2271
share/gimp/icons/Legacy/24x24/apps/gimp-vcenter.png
2272
share/gimp/icons/Legacy/24x24/apps/gimp-vchain-broken.png
2273
share/gimp/icons/Legacy/24x24/apps/gimp-vchain.png
2274
share/gimp/icons/Legacy/24x24/apps/gimp-vfill.png
2275
share/gimp/icons/Legacy/24x24/apps/gimp-video.png
2276
share/gimp/icons/Legacy/24x24/apps/gimp-warning.png
2277
share/gimp/icons/Legacy/24x24/apps/gimp-web.png
2278
share/gimp/icons/Legacy/256x256/apps/gimp-wilber-outline.png
2279
share/gimp/icons/Legacy/256x256/apps/gimp-wilber.png
2280
share/gimp/icons/Legacy/32x32/apps/gimp-channel-alpha.png
2281
share/gimp/icons/Legacy/32x32/apps/gimp-channel-blue.png
2282
share/gimp/icons/Legacy/32x32/apps/gimp-channel-gray.png
2283
share/gimp/icons/Legacy/32x32/apps/gimp-channel-green.png
2284
share/gimp/icons/Legacy/32x32/apps/gimp-channel-indexed.png
2285
share/gimp/icons/Legacy/32x32/apps/gimp-channel-red.png
2286
share/gimp/icons/Legacy/32x32/apps/gimp-channel.png
2287
share/gimp/icons/Legacy/32x32/apps/gimp-floating-selection.png
2288
share/gimp/icons/Legacy/32x32/apps/gimp-image.png
2289
share/gimp/icons/Legacy/32x32/apps/gimp-layer-mask.png
2290
share/gimp/icons/Legacy/32x32/apps/gimp-layer.png
2291
share/gimp/icons/Legacy/32x32/apps/gimp-text-layer.png
2292
share/gimp/icons/Legacy/32x32/apps/gimp-user-manual.png
2293
share/gimp/icons/Legacy/32x32/apps/gimp-wilber.png
2294
share/gimp/icons/Legacy/48x48/apps/gimp-channel-alpha.png
2295
share/gimp/icons/Legacy/48x48/apps/gimp-channel-blue.png
2296
share/gimp/icons/Legacy/48x48/apps/gimp-channel-gray.png
2297
share/gimp/icons/Legacy/48x48/apps/gimp-channel-green.png
2298
share/gimp/icons/Legacy/48x48/apps/gimp-channel-indexed.png
2299
share/gimp/icons/Legacy/48x48/apps/gimp-channel-red.png
2300
share/gimp/icons/Legacy/48x48/apps/gimp-channel.png
2301
share/gimp/icons/Legacy/48x48/apps/gimp-floating-selection.png
2302
share/gimp/icons/Legacy/48x48/apps/gimp-image.png
2303
share/gimp/icons/Legacy/48x48/apps/gimp-layer-mask.png
2304
share/gimp/icons/Legacy/48x48/apps/gimp-layer.png
2305
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-color-management.png
2306
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-controllers.png
2307
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-default-comment.png
2308
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-default-grid.png
2309
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-display.png
2310
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-brushes.png
2311
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-dynamics.png
2312
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-environ.png
2313
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-fonts.png
2314
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-gradients.png
2315
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-icon-themes.png
2316
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-interp.png
2317
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-modules.png
2318
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-palettes.png
2319
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-patterns.png
2320
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-plug-ins.png
2321
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-scripts.png
2322
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-themes.png
2323
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-tool-plug-ins.png
2324
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-tool-presets.png
2325
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-tools.png
2326
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders.png
2327
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-help-system.png
2328
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-icon-theme.png
2329
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-image-title.png
2330
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-image-windows.png
2331
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-input-devices.png
2332
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-interface.png
2333
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-new-image.png
2334
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-playground.png
2335
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-session.png
2336
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-system-resources.png
2337
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-theme.png
2338
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-tool-options.png
2339
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-toolbox.png
2340
share/gimp/icons/Legacy/48x48/apps/gimp-prefs-window-management.png
2341
share/gimp/icons/Legacy/48x48/apps/gimp-text-layer.png
2342
share/gimp/icons/Legacy/48x48/apps/gimp-wilber.png
2343
share/gimp/icons/Legacy/64x64/apps/gimp-error.png
2344
share/gimp/icons/Legacy/64x64/apps/gimp-frame.png
2345
share/gimp/icons/Legacy/64x64/apps/gimp-info.png
2346
share/gimp/icons/Legacy/64x64/apps/gimp-question.png
2347
share/gimp/icons/Legacy/64x64/apps/gimp-texture.png
2348
share/gimp/icons/Legacy/64x64/apps/gimp-user-manual.png
2349
share/gimp/icons/Legacy/64x64/apps/gimp-warning.png
2350
share/gimp/icons/Legacy/64x64/apps/gimp-wilber-eek.png
2351
share/gimp/icons/Legacy/64x64/apps/gimp-wilber-outline.png
2352
share/gimp/icons/Legacy/64x64/apps/gimp-wilber.png
2353
share/gimp/icons/Legacy/96x96/apps/gimp-wilber-outline.png
2354
share/gimp/icons/Legacy/96x96/apps/gimp-wilber.png
2355
share/gimp/icons/Legacy/index.theme
2356
share/gimp/icons/Symbolic-Inverted/24x24/apps/dialog-information.svg
2357
share/gimp/icons/Symbolic-Inverted/24x24/apps/document-print.svg
2358
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-business-card.svg
2359
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-center.svg
2360
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-alpha.svg
2361
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-blue.svg
2362
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-gray.svg
2363
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-green.svg
2364
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-indexed.svg
2365
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-red.svg
2366
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel.svg
2367
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channels.svg
2368
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-char-picker.svg
2369
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-color-space-linear.svg
2370
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-color-space-perceptual.svg
2371
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-colormap.svg
2372
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-keyboard.svg
2373
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-linux-input.svg
2374
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-midi.svg
2375
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-wheel.svg
2376
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller.svg
2377
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-cursor.svg
2378
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-device-status.svg
2379
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-clip-warning.svg
2380
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-colorblind.svg
2381
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-contrast.svg
2382
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-gamma.svg
2383
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-lcms.svg
2384
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-proof.svg
2385
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter.svg
2386
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display.svg
2387
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-dynamics.svg
2388
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-error.svg
2389
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-floating-selection.svg
2390
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-gegl.svg
2391
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-grid.svg
2392
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-histogram.svg
2393
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-image.svg
2394
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-images.svg
2395
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-info.svg
2396
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-landscape.svg
2397
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-layer-mask.svg
2398
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-layer.svg
2399
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-layers.svg
2400
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-letter-spacing.svg
2401
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-line-spacing.svg
2402
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-move-to-screen.svg
2403
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-navigation.svg
2404
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-path.svg
2405
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-paths.svg
2406
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-portrait.svg
2407
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-color-management.svg
2408
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-controllers.svg
2409
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-default-comment.svg
2410
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-default-grid.svg
2411
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-display.svg
2412
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-brushes.svg
2413
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-dynamics.svg
2414
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-environ.svg
2415
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-fonts.svg
2416
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-gradients.svg
2417
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-icon-themes.svg
2418
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-interp.svg
2419
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-modules.svg
2420
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-mypaint-brushes.svg
2421
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-palettes.svg
2422
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-patterns.svg
2423
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-plug-ins.svg
2424
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-scripts.svg
2425
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-themes.svg
2426
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-tool-plug-ins.svg
2427
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-tool-presets.svg
2428
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-tools.svg
2429
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders.svg
2430
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-help-system.svg
2431
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-icon-theme.svg
2432
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-title.svg
2433
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-windows-appearance.svg
2434
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-windows-snapping.svg
2435
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-windows.svg
2436
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-import-export.svg
2437
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-input-devices.svg
2438
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-interface.svg
2439
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-new-image.svg
2440
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-playground.svg
2441
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-session.svg
2442
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-system-resources.svg
2443
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-theme.svg
2444
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-tool-options.svg
2445
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-toolbox.svg
2446
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-window-management.svg
2447
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-question.svg
2448
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-resize.svg
2449
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-sample-point.svg
2450
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-scale.svg
2451
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-selection.svg
2452
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-smartphone.svg
2453
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-symmetry.svg
2454
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-template.svg
2455
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-text-layer.svg
2456
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-airbrush.svg
2457
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-align.svg
2458
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-blur.svg
2459
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-brightness-contrast.svg
2460
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-bucket-fill.svg
2461
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-by-color-select.svg
2462
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-cage.svg
2463
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-clone.svg
2464
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-color-balance.svg
2465
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-color-picker.svg
2466
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-colorize.svg
2467
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-crop.svg
2468
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-curves.svg
2469
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-desaturate.svg
2470
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-dodge.svg
2471
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-ellipse-select.svg
2472
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-eraser.svg
2473
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-exposure.svg
2474
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-flip.svg
2475
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-foreground-select.svg
2476
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-free-select.svg
2477
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-fuzzy-select.svg
2478
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-gradient.svg
2479
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-handle-transform.svg
2480
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-heal.svg
2481
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-hue-saturation.svg
2482
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-ink.svg
2483
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-iscissors.svg
2484
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-levels.svg
2485
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-measure.svg
2486
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-mypaint-brush.svg
2487
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-n-point-deformation.svg
2488
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-options.svg
2489
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-paintbrush.svg
2490
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-path.svg
2491
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-pencil.svg
2492
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-perspective-clone.svg
2493
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-perspective.svg
2494
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-posterize.svg
2495
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-preset.svg
2496
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-rect-select.svg
2497
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-rotate.svg
2498
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-scale.svg
2499
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-seamless-clone.svg
2500
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-shadows-highlights.svg
2501
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-shear.svg
2502
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-smudge.svg
2503
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-text.svg
2504
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-threshold.svg
2505
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-unified-transform.svg
2506
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-warp.svg
2507
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-zoom.svg
2508
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tools.svg
2509
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-transparency.svg
2510
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-undo-history.svg
2511
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-user-manual.svg
2512
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-video.svg
2513
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-warning.svg
2514
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-web.svg
2515
share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-wilber.svg
2516
share/gimp/icons/Symbolic-Inverted/24x24/apps/gtk-select-color.svg
2517
share/gimp/icons/Symbolic-Inverted/24x24/apps/media-floppy.svg
2518
share/gimp/icons/Symbolic-Inverted/24x24/apps/media-optical.svg
2519
share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-error.png
2520
share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-frame.png
2521
share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-info.png
2522
share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-question.png
2523
share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-texture.png
2524
share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-warning.png
2525
share/gimp/icons/Symbolic-Inverted/index.theme
2526
share/gimp/icons/Symbolic-Inverted/scalable/apps/dialog-information.svg
2527
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-new.svg
2528
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-open-recent.svg
2529
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-open.svg
2530
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-print.svg
2531
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-revert.svg
2532
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-save-as.svg
2533
share/gimp/icons/Symbolic-Inverted/scalable/apps/document-save.svg
2534
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-clear.svg
2535
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-copy.svg
2536
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-cut.svg
2537
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-delete.svg
2538
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-paste.svg
2539
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-redo.svg
2540
share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-undo.svg
2541
share/gimp/icons/Symbolic-Inverted/scalable/apps/folder-new.svg
2542
share/gimp/icons/Symbolic-Inverted/scalable/apps/folder.svg
2543
share/gimp/icons/Symbolic-Inverted/scalable/apps/format-indent-more.svg
2544
share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-center.svg
2545
share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-fill.svg
2546
share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-left.svg
2547
share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-right.svg
2548
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-anchor.svg
2549
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-attach.svg
2550
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-business-card.svg
2551
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cap-butt.svg
2552
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cap-round.svg
2553
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cap-square.svg
2554
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-center.svg
2555
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-alpha.svg
2556
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-blue.svg
2557
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-gray.svg
2558
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-green.svg
2559
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-indexed.svg
2560
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-red.svg
2561
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel.svg
2562
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channels.svg
2563
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-char-picker.svg
2564
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-clipboard.svg
2565
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-close-all.svg
2566
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-close.svg
2567
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-cmyk.svg
2568
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-pick-from-screen.svg
2569
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-picker-black.svg
2570
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-picker-gray.svg
2571
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-picker-white.svg
2572
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-space-linear.svg
2573
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-space-perceptual.svg
2574
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-triangle.svg
2575
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-water.svg
2576
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-colormap.svg
2577
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-keyboard.svg
2578
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-linux-input.svg
2579
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-midi.svg
2580
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-wheel.svg
2581
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller.svg
2582
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-convert-grayscale.svg
2583
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-convert-indexed.svg
2584
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-convert-rgb.svg
2585
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cursor.svg
2586
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-curve-free.svg
2587
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-curve-smooth.svg
2588
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-dashboard.svg
2589
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-default-colors.svg
2590
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-detach.svg
2591
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-device-status.svg
2592
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-clip-warning.svg
2593
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-colorblind.svg
2594
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-contrast.svg
2595
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-gamma.svg
2596
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-lcms.svg
2597
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-proof.svg
2598
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter.svg
2599
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display.svg
2600
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-duplicate.svg
2601
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-dynamics.svg
2602
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-error.svg
2603
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-file-manager.svg
2604
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-flip-horizontal.svg
2605
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-flip-vertical.svg
2606
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-floating-selection.svg
2607
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gegl.svg
2608
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-bilinear.svg
2609
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-conical-asymmetric.svg
2610
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-conical-symmetric.svg
2611
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-linear.svg
2612
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-radial.svg
2613
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-shapeburst-angular.svg
2614
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-shapeburst-dimpled.svg
2615
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-shapeburst-spherical.svg
2616
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-spiral-anticlockwise.svg
2617
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-spiral-clockwise.svg
2618
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-square.svg
2619
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-east.svg
2620
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-north-east.svg
2621
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-north-west.svg
2622
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-north.svg
2623
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-south-east.svg
2624
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-south-west.svg
2625
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-south.svg
2626
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-west.svg
2627
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-grid.svg
2628
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-group-layer.svg
2629
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hcenter.svg
2630
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hchain-broken.svg
2631
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hchain.svg
2632
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hfill.svg
2633
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-histogram-linear.svg
2634
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-histogram-logarithmic.svg
2635
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-histogram.svg
2636
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-image-open.svg
2637
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-image-reload.svg
2638
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-image.svg
2639
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-images.svg
2640
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-info.svg
2641
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-input-device.svg
2642
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-invert.svg
2643
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-join-bevel.svg
2644
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-join-miter.svg
2645
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-join-round.svg
2646
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-landscape.svg
2647
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layer-mask.svg
2648
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layer-to-imagesize.svg
2649
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layer.svg
2650
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layers.svg
2651
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-letter-spacing.svg
2652
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-line-spacing.svg
2653
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-linked.svg
2654
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-list.svg
2655
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-menu-left.svg
2656
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-menu-right.svg
2657
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-merge-down.svg
2658
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-move-to-screen.svg
2659
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-navigation.svg
2660
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-paste-as-new.svg
2661
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-paste-into.svg
2662
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-path-stroke.svg
2663
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-path.svg
2664
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-paths.svg
2665
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-pattern.svg
2666
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-plugin.svg
2667
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-portrait.svg
2668
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-color-management.svg
2669
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-controllers.svg
2670
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-default-comment.svg
2671
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-default-grid.svg
2672
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-display.svg
2673
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-brushes.svg
2674
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-dynamics.svg
2675
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-environ.svg
2676
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-fonts.svg
2677
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-gradients.svg
2678
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-icon-themes.svg
2679
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-interp.svg
2680
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-modules.svg
2681
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-mypaint-brushes.svg
2682
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-palettes.svg
2683
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-patterns.svg
2684
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-plug-ins.svg
2685
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-scripts.svg
2686
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-themes.svg
2687
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-tool-plug-ins.svg
2688
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-tool-presets.svg
2689
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-tools.svg
2690
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders.svg
2691
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-help-system.svg
2692
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-icon-theme.svg
2693
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-title.svg
2694
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-windows-appearance.svg
2695
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-windows-snapping.svg
2696
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-windows.svg
2697
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-import-export.svg
2698
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-input-devices.svg
2699
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-interface.svg
2700
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-new-image.svg
2701
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-playground.svg
2702
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-session.svg
2703
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-system-resources.svg
2704
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-theme.svg
2705
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-tool-options.svg
2706
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-toolbox.svg
2707
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-window-management.svg
2708
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-question.svg
2709
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-quick-mask-off.svg
2710
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-quick-mask-on.svg
2711
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-reset.svg
2712
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-reshow-filter.svg
2713
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-resize.svg
2714
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-rotate-180.svg
2715
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-rotate-270.svg
2716
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-rotate-90.svg
2717
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-sample-point.svg
2718
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-scale.svg
2719
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-add.svg
2720
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-all.svg
2721
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-border.svg
2722
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-grow.svg
2723
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-intersect.svg
2724
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-none.svg
2725
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-replace.svg
2726
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-shrink.svg
2727
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-stroke.svg
2728
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-subtract.svg
2729
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-to-channel.svg
2730
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-to-path.svg
2731
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection.svg
2732
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shape-circle.svg
2733
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shape-diamond.svg
2734
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shape-square.svg
2735
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shred.svg
2736
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-smartphone.svg
2737
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-swap-colors.svg
2738
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-symmetry.svg
2739
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-template.svg
2740
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-ltr.svg
2741
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-rtl.svg
2742
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-layer.svg
2743
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-toilet-paper.svg
2744
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-airbrush.svg
2745
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-align.svg
2746
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-blur.svg
2747
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-brightness-contrast.svg
2748
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-bucket-fill.svg
2749
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-by-color-select.svg
2750
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-cage.svg
2751
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-clone.svg
2752
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-color-balance.svg
2753
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-color-picker.svg
2754
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-color-temperature.svg
2755
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-colorize.svg
2756
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-crop.svg
2757
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-curves.svg
2758
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-desaturate.svg
2759
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-dodge.svg
2760
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-ellipse-select.svg
2761
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-eraser.svg
2762
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-exposure.svg
2763
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-flip.svg
2764
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-foreground-select.svg
2765
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-free-select.svg
2766
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-fuzzy-select.svg
2767
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-gradient.svg
2768
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-handle-transform.svg
2769
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-heal.svg
2770
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-hue-saturation.svg
2771
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-ink.svg
2772
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-iscissors.svg
2773
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-levels.svg
2774
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-measure.svg
2775
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-move.svg
2776
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-mypaint-brush.svg
2777
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-n-point-deformation.svg
2778
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-options.svg
2779
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-paintbrush.svg
2780
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-path.svg
2781
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-pencil.svg
2782
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-perspective-clone.svg
2783
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-perspective.svg
2784
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-posterize.svg
2785
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-preset.svg
2786
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-rect-select.svg
2787
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-rotate.svg
2788
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-scale.svg
2789
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-seamless-clone.svg
2790
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-shadows-highlights.svg
2791
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-shear.svg
2792
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-smudge.svg
2793
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-text.svg
2794
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-threshold.svg
2795
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-unified-transform.svg
2796
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-warp.svg
2797
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-zoom.svg
2798
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tools.svg
2799
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-transparency.svg
2800
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-undo-history.svg
2801
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-user-manual.svg
2802
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vcenter.svg
2803
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vchain-broken.svg
2804
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vchain.svg
2805
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vfill.svg
2806
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-video.svg
2807
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-visible.svg
2808
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-warning.svg
2809
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-web.svg
2810
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-wilber-eek.svg
2811
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-wilber-outline.svg
2812
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-wilber.svg
2813
share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-zoom-follow-window.svg
2814
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-bottom.svg
2815
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-down.svg
2816
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-first.svg
2817
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-home.svg
2818
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-last.svg
2819
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-next.svg
2820
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-previous.svg
2821
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-top.svg
2822
share/gimp/icons/Symbolic-Inverted/scalable/apps/go-up.svg
2823
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-cancel.svg
2824
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-edit.svg
2825
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-no.svg
2826
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-ok.svg
2827
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-select-color.svg
2828
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-select-font.svg
2829
share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-yes.svg
2830
share/gimp/icons/Symbolic-Inverted/scalable/apps/help-about.svg
2831
share/gimp/icons/Symbolic-Inverted/scalable/apps/list-add.svg
2832
share/gimp/icons/Symbolic-Inverted/scalable/apps/list-remove.svg
2833
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-floppy.svg
2834
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-optical.svg
2835
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-playback-pause.svg
2836
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-playback-start.svg
2837
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-seek-backward.svg
2838
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-skip-backward.svg
2839
share/gimp/icons/Symbolic-Inverted/scalable/apps/media-skip-forward.svg
2840
share/gimp/icons/Symbolic-Inverted/scalable/apps/preferences-system.svg
2841
share/gimp/icons/Symbolic-Inverted/scalable/apps/process-stop.svg
2842
share/gimp/icons/Symbolic-Inverted/scalable/apps/system-run.svg
2843
share/gimp/icons/Symbolic-Inverted/scalable/apps/view-fullscreen.svg
2844
share/gimp/icons/Symbolic-Inverted/scalable/apps/view-refresh.svg
2845
share/gimp/icons/Symbolic-Inverted/scalable/apps/window-close.svg
2846
share/gimp/icons/Symbolic-Inverted/scalable/apps/window-new.svg
2847
share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-fit-best.svg
2848
share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-in.svg
2849
share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-original.svg
2850
share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-out.svg
2851
share/gimp/icons/Symbolic/24x24/apps/dialog-information.svg
2852
share/gimp/icons/Symbolic/24x24/apps/document-print.svg
2853
share/gimp/icons/Symbolic/24x24/apps/gimp-business-card.svg
2854
share/gimp/icons/Symbolic/24x24/apps/gimp-center.svg
2855
share/gimp/icons/Symbolic/24x24/apps/gimp-channel-alpha.svg
2856
share/gimp/icons/Symbolic/24x24/apps/gimp-channel-blue.svg
2857
share/gimp/icons/Symbolic/24x24/apps/gimp-channel-gray.svg
2858
share/gimp/icons/Symbolic/24x24/apps/gimp-channel-green.svg
2859
share/gimp/icons/Symbolic/24x24/apps/gimp-channel-indexed.svg
2860
share/gimp/icons/Symbolic/24x24/apps/gimp-channel-red.svg
2861
share/gimp/icons/Symbolic/24x24/apps/gimp-channel.svg
2862
share/gimp/icons/Symbolic/24x24/apps/gimp-channels.svg
2863
share/gimp/icons/Symbolic/24x24/apps/gimp-char-picker.svg
2864
share/gimp/icons/Symbolic/24x24/apps/gimp-color-space-linear.svg
2865
share/gimp/icons/Symbolic/24x24/apps/gimp-color-space-perceptual.svg
2866
share/gimp/icons/Symbolic/24x24/apps/gimp-colormap.svg
2867
share/gimp/icons/Symbolic/24x24/apps/gimp-controller-keyboard.svg
2868
share/gimp/icons/Symbolic/24x24/apps/gimp-controller-linux-input.svg
2869
share/gimp/icons/Symbolic/24x24/apps/gimp-controller-midi.svg
2870
share/gimp/icons/Symbolic/24x24/apps/gimp-controller-wheel.svg
2871
share/gimp/icons/Symbolic/24x24/apps/gimp-controller.svg
2872
share/gimp/icons/Symbolic/24x24/apps/gimp-cursor.svg
2873
share/gimp/icons/Symbolic/24x24/apps/gimp-device-status.svg
2874
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-clip-warning.svg
2875
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-colorblind.svg
2876
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-contrast.svg
2877
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-gamma.svg
2878
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-lcms.svg
2879
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-proof.svg
2880
share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter.svg
2881
share/gimp/icons/Symbolic/24x24/apps/gimp-display.svg
2882
share/gimp/icons/Symbolic/24x24/apps/gimp-dynamics.svg
2883
share/gimp/icons/Symbolic/24x24/apps/gimp-error.svg
2884
share/gimp/icons/Symbolic/24x24/apps/gimp-floating-selection.svg
2885
share/gimp/icons/Symbolic/24x24/apps/gimp-gegl.svg
2886
share/gimp/icons/Symbolic/24x24/apps/gimp-grid.svg
2887
share/gimp/icons/Symbolic/24x24/apps/gimp-histogram.svg
2888
share/gimp/icons/Symbolic/24x24/apps/gimp-image.svg
2889
share/gimp/icons/Symbolic/24x24/apps/gimp-images.svg
2890
share/gimp/icons/Symbolic/24x24/apps/gimp-info.svg
2891
share/gimp/icons/Symbolic/24x24/apps/gimp-landscape.svg
2892
share/gimp/icons/Symbolic/24x24/apps/gimp-layer-mask.svg
2893
share/gimp/icons/Symbolic/24x24/apps/gimp-layer.svg
2894
share/gimp/icons/Symbolic/24x24/apps/gimp-layers.svg
2895
share/gimp/icons/Symbolic/24x24/apps/gimp-letter-spacing.svg
2896
share/gimp/icons/Symbolic/24x24/apps/gimp-line-spacing.svg
2897
share/gimp/icons/Symbolic/24x24/apps/gimp-move-to-screen.svg
2898
share/gimp/icons/Symbolic/24x24/apps/gimp-navigation.svg
2899
share/gimp/icons/Symbolic/24x24/apps/gimp-path.svg
2900
share/gimp/icons/Symbolic/24x24/apps/gimp-paths.svg
2901
share/gimp/icons/Symbolic/24x24/apps/gimp-portrait.svg
2902
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-color-management.svg
2903
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-controllers.svg
2904
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-default-comment.svg
2905
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-default-grid.svg
2906
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-display.svg
2907
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-brushes.svg
2908
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-dynamics.svg
2909
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-environ.svg
2910
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-fonts.svg
2911
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-gradients.svg
2912
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-icon-themes.svg
2913
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-interp.svg
2914
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-modules.svg
2915
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-mypaint-brushes.svg
2916
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-palettes.svg
2917
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-patterns.svg
2918
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-plug-ins.svg
2919
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-scripts.svg
2920
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-themes.svg
2921
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-tool-plug-ins.svg
2922
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-tool-presets.svg
2923
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-tools.svg
2924
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders.svg
2925
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-help-system.svg
2926
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-icon-theme.svg
2927
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-title.svg
2928
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-windows-appearance.svg
2929
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-windows-snapping.svg
2930
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-windows.svg
2931
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-import-export.svg
2932
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-input-devices.svg
2933
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-interface.svg
2934
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-new-image.svg
2935
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-playground.svg
2936
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-session.svg
2937
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-system-resources.svg
2938
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-theme.svg
2939
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-tool-options.svg
2940
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-toolbox.svg
2941
share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-window-management.svg
2942
share/gimp/icons/Symbolic/24x24/apps/gimp-question.svg
2943
share/gimp/icons/Symbolic/24x24/apps/gimp-resize.svg
2944
share/gimp/icons/Symbolic/24x24/apps/gimp-sample-point.svg
2945
share/gimp/icons/Symbolic/24x24/apps/gimp-scale.svg
2946
share/gimp/icons/Symbolic/24x24/apps/gimp-selection.svg
2947
share/gimp/icons/Symbolic/24x24/apps/gimp-smartphone.svg
2948
share/gimp/icons/Symbolic/24x24/apps/gimp-symmetry.svg
2949
share/gimp/icons/Symbolic/24x24/apps/gimp-template.svg
2950
share/gimp/icons/Symbolic/24x24/apps/gimp-text-layer.svg
2951
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-airbrush.svg
2952
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-align.svg
2953
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-blur.svg
2954
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-brightness-contrast.svg
2955
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-bucket-fill.svg
2956
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-by-color-select.svg
2957
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-cage.svg
2958
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-clone.svg
2959
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-color-balance.svg
2960
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-color-picker.svg
2961
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-colorize.svg
2962
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-crop.svg
2963
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-curves.svg
2964
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-desaturate.svg
2965
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-dodge.svg
2966
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-ellipse-select.svg
2967
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-eraser.svg
2968
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-exposure.svg
2969
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-flip.svg
2970
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-foreground-select.svg
2971
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-free-select.svg
2972
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-fuzzy-select.svg
2973
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-gradient.svg
2974
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-handle-transform.svg
2975
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-heal.svg
2976
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-hue-saturation.svg
2977
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-ink.svg
2978
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-iscissors.svg
2979
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-levels.svg
2980
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-measure.svg
2981
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-mypaint-brush.svg
2982
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-n-point-deformation.svg
2983
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-options.svg
2984
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-paintbrush.svg
2985
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-path.svg
2986
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-pencil.svg
2987
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-perspective-clone.svg
2988
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-perspective.svg
2989
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-posterize.svg
2990
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-preset.svg
2991
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-rect-select.svg
2992
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-rotate.svg
2993
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-scale.svg
2994
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-seamless-clone.svg
2995
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-shadows-highlights.svg
2996
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-shear.svg
2997
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-smudge.svg
2998
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-text.svg
2999
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-threshold.svg
3000
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-unified-transform.svg
3001
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-warp.svg
3002
share/gimp/icons/Symbolic/24x24/apps/gimp-tool-zoom.svg
3003
share/gimp/icons/Symbolic/24x24/apps/gimp-tools.svg
3004
share/gimp/icons/Symbolic/24x24/apps/gimp-transparency.svg
3005
share/gimp/icons/Symbolic/24x24/apps/gimp-undo-history.svg
3006
share/gimp/icons/Symbolic/24x24/apps/gimp-user-manual.svg
3007
share/gimp/icons/Symbolic/24x24/apps/gimp-video.svg
3008
share/gimp/icons/Symbolic/24x24/apps/gimp-warning.svg
3009
share/gimp/icons/Symbolic/24x24/apps/gimp-web.svg
3010
share/gimp/icons/Symbolic/24x24/apps/gimp-wilber.svg
3011
share/gimp/icons/Symbolic/24x24/apps/gtk-select-color.svg
3012
share/gimp/icons/Symbolic/24x24/apps/media-floppy.svg
3013
share/gimp/icons/Symbolic/24x24/apps/media-optical.svg
3014
share/gimp/icons/Symbolic/64x64/apps/gimp-error.png
3015
share/gimp/icons/Symbolic/64x64/apps/gimp-frame.png
3016
share/gimp/icons/Symbolic/64x64/apps/gimp-info.png
3017
share/gimp/icons/Symbolic/64x64/apps/gimp-question.png
3018
share/gimp/icons/Symbolic/64x64/apps/gimp-texture.png
3019
share/gimp/icons/Symbolic/64x64/apps/gimp-warning.png
3020
share/gimp/icons/Symbolic/index.theme
3021
share/gimp/icons/Symbolic/scalable/apps/dialog-information.svg
3022
share/gimp/icons/Symbolic/scalable/apps/document-new.svg
3023
share/gimp/icons/Symbolic/scalable/apps/document-open-recent.svg
3024
share/gimp/icons/Symbolic/scalable/apps/document-open.svg
3025
share/gimp/icons/Symbolic/scalable/apps/document-print.svg
3026
share/gimp/icons/Symbolic/scalable/apps/document-revert.svg
3027
share/gimp/icons/Symbolic/scalable/apps/document-save-as.svg
3028
share/gimp/icons/Symbolic/scalable/apps/document-save.svg
3029
share/gimp/icons/Symbolic/scalable/apps/edit-clear.svg
3030
share/gimp/icons/Symbolic/scalable/apps/edit-copy.svg
3031
share/gimp/icons/Symbolic/scalable/apps/edit-cut.svg
3032
share/gimp/icons/Symbolic/scalable/apps/edit-delete.svg
3033
share/gimp/icons/Symbolic/scalable/apps/edit-paste.svg
3034
share/gimp/icons/Symbolic/scalable/apps/edit-redo.svg
3035
share/gimp/icons/Symbolic/scalable/apps/edit-undo.svg
3036
share/gimp/icons/Symbolic/scalable/apps/folder-new.svg
3037
share/gimp/icons/Symbolic/scalable/apps/folder.svg
3038
share/gimp/icons/Symbolic/scalable/apps/format-indent-more.svg
3039
share/gimp/icons/Symbolic/scalable/apps/format-justify-center.svg
3040
share/gimp/icons/Symbolic/scalable/apps/format-justify-fill.svg
3041
share/gimp/icons/Symbolic/scalable/apps/format-justify-left.svg
3042
share/gimp/icons/Symbolic/scalable/apps/format-justify-right.svg
3043
share/gimp/icons/Symbolic/scalable/apps/gimp-anchor.svg
3044
share/gimp/icons/Symbolic/scalable/apps/gimp-attach.svg
3045
share/gimp/icons/Symbolic/scalable/apps/gimp-business-card.svg
3046
share/gimp/icons/Symbolic/scalable/apps/gimp-cap-butt.svg
3047
share/gimp/icons/Symbolic/scalable/apps/gimp-cap-round.svg
3048
share/gimp/icons/Symbolic/scalable/apps/gimp-cap-square.svg
3049
share/gimp/icons/Symbolic/scalable/apps/gimp-center.svg
3050
share/gimp/icons/Symbolic/scalable/apps/gimp-channel-alpha.svg
3051
share/gimp/icons/Symbolic/scalable/apps/gimp-channel-blue.svg
3052
share/gimp/icons/Symbolic/scalable/apps/gimp-channel-gray.svg
3053
share/gimp/icons/Symbolic/scalable/apps/gimp-channel-green.svg
3054
share/gimp/icons/Symbolic/scalable/apps/gimp-channel-indexed.svg
3055
share/gimp/icons/Symbolic/scalable/apps/gimp-channel-red.svg
3056
share/gimp/icons/Symbolic/scalable/apps/gimp-channel.svg
3057
share/gimp/icons/Symbolic/scalable/apps/gimp-channels.svg
3058
share/gimp/icons/Symbolic/scalable/apps/gimp-char-picker.svg
3059
share/gimp/icons/Symbolic/scalable/apps/gimp-clipboard.svg
3060
share/gimp/icons/Symbolic/scalable/apps/gimp-close-all.svg
3061
share/gimp/icons/Symbolic/scalable/apps/gimp-close.svg
3062
share/gimp/icons/Symbolic/scalable/apps/gimp-color-cmyk.svg
3063
share/gimp/icons/Symbolic/scalable/apps/gimp-color-pick-from-screen.svg
3064
share/gimp/icons/Symbolic/scalable/apps/gimp-color-picker-black.svg
3065
share/gimp/icons/Symbolic/scalable/apps/gimp-color-picker-gray.svg
3066
share/gimp/icons/Symbolic/scalable/apps/gimp-color-picker-white.svg
3067
share/gimp/icons/Symbolic/scalable/apps/gimp-color-space-linear.svg
3068
share/gimp/icons/Symbolic/scalable/apps/gimp-color-space-perceptual.svg
3069
share/gimp/icons/Symbolic/scalable/apps/gimp-color-triangle.svg
3070
share/gimp/icons/Symbolic/scalable/apps/gimp-color-water.svg
3071
share/gimp/icons/Symbolic/scalable/apps/gimp-colormap.svg
3072
share/gimp/icons/Symbolic/scalable/apps/gimp-controller-keyboard.svg
3073
share/gimp/icons/Symbolic/scalable/apps/gimp-controller-linux-input.svg
3074
share/gimp/icons/Symbolic/scalable/apps/gimp-controller-midi.svg
3075
share/gimp/icons/Symbolic/scalable/apps/gimp-controller-wheel.svg
3076
share/gimp/icons/Symbolic/scalable/apps/gimp-controller.svg
3077
share/gimp/icons/Symbolic/scalable/apps/gimp-convert-grayscale.svg
3078
share/gimp/icons/Symbolic/scalable/apps/gimp-convert-indexed.svg
3079
share/gimp/icons/Symbolic/scalable/apps/gimp-convert-rgb.svg
3080
share/gimp/icons/Symbolic/scalable/apps/gimp-cursor.svg
3081
share/gimp/icons/Symbolic/scalable/apps/gimp-curve-free.svg
3082
share/gimp/icons/Symbolic/scalable/apps/gimp-curve-smooth.svg
3083
share/gimp/icons/Symbolic/scalable/apps/gimp-dashboard.svg
3084
share/gimp/icons/Symbolic/scalable/apps/gimp-default-colors.svg
3085
share/gimp/icons/Symbolic/scalable/apps/gimp-detach.svg
3086
share/gimp/icons/Symbolic/scalable/apps/gimp-device-status.svg
3087
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-clip-warning.svg
3088
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-colorblind.svg
3089
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-contrast.svg
3090
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-gamma.svg
3091
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-lcms.svg
3092
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-proof.svg
3093
share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter.svg
3094
share/gimp/icons/Symbolic/scalable/apps/gimp-display.svg
3095
share/gimp/icons/Symbolic/scalable/apps/gimp-duplicate.svg
3096
share/gimp/icons/Symbolic/scalable/apps/gimp-dynamics.svg
3097
share/gimp/icons/Symbolic/scalable/apps/gimp-error.svg
3098
share/gimp/icons/Symbolic/scalable/apps/gimp-file-manager.svg
3099
share/gimp/icons/Symbolic/scalable/apps/gimp-flip-horizontal.svg
3100
share/gimp/icons/Symbolic/scalable/apps/gimp-flip-vertical.svg
3101
share/gimp/icons/Symbolic/scalable/apps/gimp-floating-selection.svg
3102
share/gimp/icons/Symbolic/scalable/apps/gimp-gegl.svg
3103
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-bilinear.svg
3104
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-conical-asymmetric.svg
3105
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-conical-symmetric.svg
3106
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-linear.svg
3107
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-radial.svg
3108
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-shapeburst-angular.svg
3109
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-shapeburst-dimpled.svg
3110
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-shapeburst-spherical.svg
3111
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-spiral-anticlockwise.svg
3112
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-spiral-clockwise.svg
3113
share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-square.svg
3114
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-east.svg
3115
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-north-east.svg
3116
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-north-west.svg
3117
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-north.svg
3118
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-south-east.svg
3119
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-south-west.svg
3120
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-south.svg
3121
share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-west.svg
3122
share/gimp/icons/Symbolic/scalable/apps/gimp-grid.svg
3123
share/gimp/icons/Symbolic/scalable/apps/gimp-group-layer.svg
3124
share/gimp/icons/Symbolic/scalable/apps/gimp-hcenter.svg
3125
share/gimp/icons/Symbolic/scalable/apps/gimp-hchain-broken.svg
3126
share/gimp/icons/Symbolic/scalable/apps/gimp-hchain.svg
3127
share/gimp/icons/Symbolic/scalable/apps/gimp-hfill.svg
3128
share/gimp/icons/Symbolic/scalable/apps/gimp-histogram-linear.svg
3129
share/gimp/icons/Symbolic/scalable/apps/gimp-histogram-logarithmic.svg
3130
share/gimp/icons/Symbolic/scalable/apps/gimp-histogram.svg
3131
share/gimp/icons/Symbolic/scalable/apps/gimp-image-open.svg
3132
share/gimp/icons/Symbolic/scalable/apps/gimp-image-reload.svg
3133
share/gimp/icons/Symbolic/scalable/apps/gimp-image.svg
3134
share/gimp/icons/Symbolic/scalable/apps/gimp-images.svg
3135
share/gimp/icons/Symbolic/scalable/apps/gimp-info.svg
3136
share/gimp/icons/Symbolic/scalable/apps/gimp-input-device.svg
3137
share/gimp/icons/Symbolic/scalable/apps/gimp-invert.svg
3138
share/gimp/icons/Symbolic/scalable/apps/gimp-join-bevel.svg
3139
share/gimp/icons/Symbolic/scalable/apps/gimp-join-miter.svg
3140
share/gimp/icons/Symbolic/scalable/apps/gimp-join-round.svg
3141
share/gimp/icons/Symbolic/scalable/apps/gimp-landscape.svg
3142
share/gimp/icons/Symbolic/scalable/apps/gimp-layer-mask.svg
3143
share/gimp/icons/Symbolic/scalable/apps/gimp-layer-to-imagesize.svg
3144
share/gimp/icons/Symbolic/scalable/apps/gimp-layer.svg
3145
share/gimp/icons/Symbolic/scalable/apps/gimp-layers.svg
3146
share/gimp/icons/Symbolic/scalable/apps/gimp-letter-spacing.svg
3147
share/gimp/icons/Symbolic/scalable/apps/gimp-line-spacing.svg
3148
share/gimp/icons/Symbolic/scalable/apps/gimp-linked.svg
3149
share/gimp/icons/Symbolic/scalable/apps/gimp-list.svg
3150
share/gimp/icons/Symbolic/scalable/apps/gimp-menu-left.svg
3151
share/gimp/icons/Symbolic/scalable/apps/gimp-menu-right.svg
3152
share/gimp/icons/Symbolic/scalable/apps/gimp-merge-down.svg
3153
share/gimp/icons/Symbolic/scalable/apps/gimp-move-to-screen.svg
3154
share/gimp/icons/Symbolic/scalable/apps/gimp-navigation.svg
3155
share/gimp/icons/Symbolic/scalable/apps/gimp-paste-as-new.svg
3156
share/gimp/icons/Symbolic/scalable/apps/gimp-paste-into.svg
3157
share/gimp/icons/Symbolic/scalable/apps/gimp-path-stroke.svg
3158
share/gimp/icons/Symbolic/scalable/apps/gimp-path.svg
3159
share/gimp/icons/Symbolic/scalable/apps/gimp-paths.svg
3160
share/gimp/icons/Symbolic/scalable/apps/gimp-pattern.svg
3161
share/gimp/icons/Symbolic/scalable/apps/gimp-plugin.svg
3162
share/gimp/icons/Symbolic/scalable/apps/gimp-portrait.svg
3163
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-color-management.svg
3164
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-controllers.svg
3165
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-default-comment.svg
3166
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-default-grid.svg
3167
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-display.svg
3168
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-brushes.svg
3169
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-dynamics.svg
3170
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-environ.svg
3171
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-fonts.svg
3172
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-gradients.svg
3173
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-icon-themes.svg
3174
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-interp.svg
3175
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-modules.svg
3176
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-mypaint-brushes.svg
3177
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-palettes.svg
3178
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-patterns.svg
3179
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-plug-ins.svg
3180
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-scripts.svg
3181
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-themes.svg
3182
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-tool-plug-ins.svg
3183
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-tool-presets.svg
3184
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-tools.svg
3185
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders.svg
3186
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-help-system.svg
3187
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-icon-theme.svg
3188
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-title.svg
3189
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-windows-appearance.svg
3190
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-windows-snapping.svg
3191
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-windows.svg
3192
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-import-export.svg
3193
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-input-devices.svg
3194
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-interface.svg
3195
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-new-image.svg
3196
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-playground.svg
3197
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-session.svg
3198
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-system-resources.svg
3199
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-theme.svg
3200
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-tool-options.svg
3201
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-toolbox.svg
3202
share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-window-management.svg
3203
share/gimp/icons/Symbolic/scalable/apps/gimp-question.svg
3204
share/gimp/icons/Symbolic/scalable/apps/gimp-quick-mask-off.svg
3205
share/gimp/icons/Symbolic/scalable/apps/gimp-quick-mask-on.svg
3206
share/gimp/icons/Symbolic/scalable/apps/gimp-reset.svg
3207
share/gimp/icons/Symbolic/scalable/apps/gimp-reshow-filter.svg
3208
share/gimp/icons/Symbolic/scalable/apps/gimp-resize.svg
3209
share/gimp/icons/Symbolic/scalable/apps/gimp-rotate-180.svg
3210
share/gimp/icons/Symbolic/scalable/apps/gimp-rotate-270.svg
3211
share/gimp/icons/Symbolic/scalable/apps/gimp-rotate-90.svg
3212
share/gimp/icons/Symbolic/scalable/apps/gimp-sample-point.svg
3213
share/gimp/icons/Symbolic/scalable/apps/gimp-scale.svg
3214
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-add.svg
3215
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-all.svg
3216
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-border.svg
3217
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-grow.svg
3218
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-intersect.svg
3219
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-none.svg
3220
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-replace.svg
3221
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-shrink.svg
3222
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-stroke.svg
3223
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-subtract.svg
3224
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-to-channel.svg
3225
share/gimp/icons/Symbolic/scalable/apps/gimp-selection-to-path.svg
3226
share/gimp/icons/Symbolic/scalable/apps/gimp-selection.svg
3227
share/gimp/icons/Symbolic/scalable/apps/gimp-shape-circle.svg
3228
share/gimp/icons/Symbolic/scalable/apps/gimp-shape-diamond.svg
3229
share/gimp/icons/Symbolic/scalable/apps/gimp-shape-square.svg
3230
share/gimp/icons/Symbolic/scalable/apps/gimp-shred.svg
3231
share/gimp/icons/Symbolic/scalable/apps/gimp-smartphone.svg
3232
share/gimp/icons/Symbolic/scalable/apps/gimp-swap-colors.svg
3233
share/gimp/icons/Symbolic/scalable/apps/gimp-symmetry.svg
3234
share/gimp/icons/Symbolic/scalable/apps/gimp-template.svg
3235
share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-ltr.svg
3236
share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-rtl.svg
3237
share/gimp/icons/Symbolic/scalable/apps/gimp-text-layer.svg
3238
share/gimp/icons/Symbolic/scalable/apps/gimp-toilet-paper.svg
3239
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-airbrush.svg
3240
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-align.svg
3241
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-blur.svg
3242
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-brightness-contrast.svg
3243
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-bucket-fill.svg
3244
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-by-color-select.svg
3245
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-cage.svg
3246
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-clone.svg
3247
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-color-balance.svg
3248
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-color-picker.svg
3249
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-color-temperature.svg
3250
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-colorize.svg
3251
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-crop.svg
3252
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-curves.svg
3253
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-desaturate.svg
3254
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-dodge.svg
3255
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-ellipse-select.svg
3256
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-eraser.svg
3257
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-exposure.svg
3258
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-flip.svg
3259
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-foreground-select.svg
3260
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-free-select.svg
3261
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-fuzzy-select.svg
3262
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-gradient.svg
3263
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-handle-transform.svg
3264
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-heal.svg
3265
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-hue-saturation.svg
3266
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-ink.svg
3267
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-iscissors.svg
3268
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-levels.svg
3269
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-measure.svg
3270
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-move.svg
3271
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-mypaint-brush.svg
3272
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-n-point-deformation.svg
3273
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-options.svg
3274
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-paintbrush.svg
3275
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-path.svg
3276
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-pencil.svg
3277
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-perspective-clone.svg
3278
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-perspective.svg
3279
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-posterize.svg
3280
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-preset.svg
3281
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-rect-select.svg
3282
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-rotate.svg
3283
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-scale.svg
3284
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-seamless-clone.svg
3285
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-shadows-highlights.svg
3286
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-shear.svg
3287
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-smudge.svg
3288
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-text.svg
3289
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-threshold.svg
3290
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-unified-transform.svg
3291
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-warp.svg
3292
share/gimp/icons/Symbolic/scalable/apps/gimp-tool-zoom.svg
3293
share/gimp/icons/Symbolic/scalable/apps/gimp-tools.svg
3294
share/gimp/icons/Symbolic/scalable/apps/gimp-transparency.svg
3295
share/gimp/icons/Symbolic/scalable/apps/gimp-undo-history.svg
3296
share/gimp/icons/Symbolic/scalable/apps/gimp-user-manual.svg
3297
share/gimp/icons/Symbolic/scalable/apps/gimp-vcenter.svg
3298
share/gimp/icons/Symbolic/scalable/apps/gimp-vchain-broken.svg
3299
share/gimp/icons/Symbolic/scalable/apps/gimp-vchain.svg
3300
share/gimp/icons/Symbolic/scalable/apps/gimp-vfill.svg
3301
share/gimp/icons/Symbolic/scalable/apps/gimp-video.svg
3302
share/gimp/icons/Symbolic/scalable/apps/gimp-visible.svg
3303
share/gimp/icons/Symbolic/scalable/apps/gimp-warning.svg
3304
share/gimp/icons/Symbolic/scalable/apps/gimp-web.svg
3305
share/gimp/icons/Symbolic/scalable/apps/gimp-wilber-eek.svg
3306
share/gimp/icons/Symbolic/scalable/apps/gimp-wilber-outline.svg
3307
share/gimp/icons/Symbolic/scalable/apps/gimp-wilber.svg
3308
share/gimp/icons/Symbolic/scalable/apps/gimp-zoom-follow-window.svg
3309
share/gimp/icons/Symbolic/scalable/apps/go-bottom.svg
3310
share/gimp/icons/Symbolic/scalable/apps/go-down.svg
3311
share/gimp/icons/Symbolic/scalable/apps/go-first.svg
3312
share/gimp/icons/Symbolic/scalable/apps/go-home.svg
3313
share/gimp/icons/Symbolic/scalable/apps/go-last.svg
3314
share/gimp/icons/Symbolic/scalable/apps/go-next.svg
3315
share/gimp/icons/Symbolic/scalable/apps/go-previous.svg
3316
share/gimp/icons/Symbolic/scalable/apps/go-top.svg
3317
share/gimp/icons/Symbolic/scalable/apps/go-up.svg
3318
share/gimp/icons/Symbolic/scalable/apps/gtk-cancel.svg
3319
share/gimp/icons/Symbolic/scalable/apps/gtk-edit.svg
3320
share/gimp/icons/Symbolic/scalable/apps/gtk-no.svg
3321
share/gimp/icons/Symbolic/scalable/apps/gtk-ok.svg
3322
share/gimp/icons/Symbolic/scalable/apps/gtk-select-color.svg
3323
share/gimp/icons/Symbolic/scalable/apps/gtk-select-font.svg
3324
share/gimp/icons/Symbolic/scalable/apps/gtk-yes.svg
3325
share/gimp/icons/Symbolic/scalable/apps/help-about.svg
3326
share/gimp/icons/Symbolic/scalable/apps/list-add.svg
3327
share/gimp/icons/Symbolic/scalable/apps/list-remove.svg
3328
share/gimp/icons/Symbolic/scalable/apps/media-floppy.svg
3329
share/gimp/icons/Symbolic/scalable/apps/media-optical.svg
3330
share/gimp/icons/Symbolic/scalable/apps/media-playback-pause.svg
3331
share/gimp/icons/Symbolic/scalable/apps/media-playback-start.svg
3332
share/gimp/icons/Symbolic/scalable/apps/media-seek-backward.svg
3333
share/gimp/icons/Symbolic/scalable/apps/media-skip-backward.svg
3334
share/gimp/icons/Symbolic/scalable/apps/media-skip-forward.svg
3335
share/gimp/icons/Symbolic/scalable/apps/preferences-system.svg
3336
share/gimp/icons/Symbolic/scalable/apps/process-stop.svg
3337
share/gimp/icons/Symbolic/scalable/apps/system-run.svg
3338
share/gimp/icons/Symbolic/scalable/apps/view-fullscreen.svg
3339
share/gimp/icons/Symbolic/scalable/apps/view-refresh.svg
3340
share/gimp/icons/Symbolic/scalable/apps/window-close.svg
3341
share/gimp/icons/Symbolic/scalable/apps/window-new.svg
3342
share/gimp/icons/Symbolic/scalable/apps/zoom-fit-best.svg
3343
share/gimp/icons/Symbolic/scalable/apps/zoom-in.svg
3344
share/gimp/icons/Symbolic/scalable/apps/zoom-original.svg
3345
share/gimp/icons/Symbolic/scalable/apps/zoom-out.svg
3346
share/gimp/icons/hicolor/index.theme
3347
share/gimp/images/gimp-logo.png
3348
share/gimp/images/gimp-splash.png
3349
share/gimp/images/wilber.png
3350
share/gimp/menus/brush-editor-menu.xml
3351
share/gimp/menus/brushes-menu.xml
3352
share/gimp/menus/buffers-menu.xml
3353
share/gimp/menus/channels-menu.xml
3354
share/gimp/menus/colormap-menu.xml
3355
share/gimp/menus/cursor-info-menu.xml
3356
share/gimp/menus/dashboard-menu.xml
3357
share/gimp/menus/dockable-menu.xml
3358
share/gimp/menus/documents-menu.xml
3359
share/gimp/menus/dynamics-editor-menu.xml
3360
share/gimp/menus/dynamics-menu.xml
3361
share/gimp/menus/error-console-menu.xml
3362
share/gimp/menus/fonts-menu.xml
3363
share/gimp/menus/gradient-editor-menu.xml
3364
share/gimp/menus/gradients-menu.xml
3365
share/gimp/menus/image-menu.xml
3366
share/gimp/menus/images-menu.xml
3367
share/gimp/menus/layers-menu.xml
3368
share/gimp/menus/mypaint-brushes-menu.xml
3369
share/gimp/menus/palette-editor-menu.xml
3370
share/gimp/menus/palettes-menu.xml
3371
share/gimp/menus/patterns-menu.xml
3372
share/gimp/menus/quick-mask-menu.xml
3373
share/gimp/menus/sample-points-menu.xml
3374
share/gimp/menus/selection-menu.xml
3375
share/gimp/menus/templates-menu.xml
3376
share/gimp/menus/text-editor-toolbar.xml
3377
share/gimp/menus/text-tool-menu.xml
3378
share/gimp/menus/tool-options-menu.xml
3379
share/gimp/menus/tool-preset-editor-menu.xml
3380
share/gimp/menus/tool-presets-menu.xml
3381
share/gimp/menus/undo-menu.xml
3382
share/gimp/menus/vectors-menu.xml
3383
share/gimp/palettes/Bears.gpl
3384
share/gimp/palettes/Bgold.gpl
3385
share/gimp/palettes/Blues.gpl
3386
share/gimp/palettes/Borders.gpl
3387
share/gimp/palettes/Browns_And_Yellows.gpl
3388
share/gimp/palettes/Caramel.gpl
3389
share/gimp/palettes/Cascade.gpl
3390
share/gimp/palettes/China.gpl
3391
share/gimp/palettes/Coldfire.gpl
3392
share/gimp/palettes/Cool_Colors.gpl
3393
share/gimp/palettes/Cranes.gpl
3394
share/gimp/palettes/Dark_pastels.gpl
3395
share/gimp/palettes/Default.gpl
3396
share/gimp/palettes/Ega.gpl
3397
share/gimp/palettes/Firecode.gpl
3398
share/gimp/palettes/Gold.gpl
3399
share/gimp/palettes/GrayViolet.gpl
3400
share/gimp/palettes/Grayblue.gpl
3401
share/gimp/palettes/Grays.gpl
3402
share/gimp/palettes/Greens.gpl
3403
share/gimp/palettes/Hilite.gpl
3404
share/gimp/palettes/Khaki.gpl
3405
share/gimp/palettes/Lights.gpl
3406
share/gimp/palettes/Muted.gpl
3407
share/gimp/palettes/Named_Colors.gpl
3408
share/gimp/palettes/News3.gpl
3409
share/gimp/palettes/Op2.gpl
3410
share/gimp/palettes/Paintjet.gpl
3411
share/gimp/palettes/Pastels.gpl
3412
share/gimp/palettes/Plasma.gpl
3413
share/gimp/palettes/Reds.gpl
3414
share/gimp/palettes/Reds_And_Purples.gpl
3415
share/gimp/palettes/Royal.gpl
3416
share/gimp/palettes/Tango.gpl
3417
share/gimp/palettes/Topographic.gpl
3418
share/gimp/palettes/Visibone.gpl
3419
share/gimp/palettes/Visibone_2.gpl
3420
share/gimp/palettes/Volcano.gpl
3421
share/gimp/palettes/Warm_Colors.gpl
3422
share/gimp/palettes/Web.gpl
3423
share/gimp/patterns/Animal/leather.pat
3424
share/gimp/patterns/Animal/leopard.pat
3425
share/gimp/patterns/Fabric/burlap.pat
3426
share/gimp/patterns/Food/choc_swirl.pat
3427
share/gimp/patterns/Food/java.pat
3428
share/gimp/patterns/Legacy/3dgreen.pat
3429
share/gimp/patterns/Legacy/Stripes1px.pat
3430
share/gimp/patterns/Legacy/Stripes2px.pat
3431
share/gimp/patterns/Legacy/blue.pat
3432
share/gimp/patterns/Legacy/bluegrid.pat
3433
share/gimp/patterns/Legacy/bluesquares.pat
3434
share/gimp/patterns/Legacy/blueweb.pat
3435
share/gimp/patterns/Legacy/fibers.pat
3436
share/gimp/patterns/Legacy/nops.pat
3437
share/gimp/patterns/Legacy/pastel.pat
3438
share/gimp/patterns/Legacy/qube1.pat
3439
share/gimp/patterns/Legacy/recessed.pat
3440
share/gimp/patterns/Legacy/redcube.pat
3441
share/gimp/patterns/Legacy/sm_squares.pat
3442
share/gimp/patterns/Legacy/warning.pat
3443
share/gimp/patterns/Paper/crinklepaper.pat
3444
share/gimp/patterns/Paper/paper.pat
3445
share/gimp/patterns/Plant/leaves.pat
3446
share/gimp/patterns/Sky/lightning.pat
3447
share/gimp/patterns/Sky/sky.pat
3448
share/gimp/patterns/Sky/starfield.pat
3449
share/gimp/patterns/Stone/Craters.pat
3450
share/gimp/patterns/Stone/Moonfoot.pat
3451
share/gimp/patterns/Stone/amethyst.pat
3452
share/gimp/patterns/Stone/brick.pat
3453
share/gimp/patterns/Stone/cracked.pat
3454
share/gimp/patterns/Stone/granite1.pat
3455
share/gimp/patterns/Stone/ground1.pat
3456
share/gimp/patterns/Stone/marble1.pat
3457
share/gimp/patterns/Stone/marble2.pat
3458
share/gimp/patterns/Stone/marble3.pat
3459
share/gimp/patterns/Stone/pink_marble.pat
3460
share/gimp/patterns/Stone/rock.pat
3461
share/gimp/patterns/Stone/slate.pat
3462
share/gimp/patterns/Stone/stone33.pat
3463
share/gimp/patterns/Stone/terra.pat
3464
share/gimp/patterns/Water/electric.pat
3465
share/gimp/patterns/Water/ice.pat
3466
share/gimp/patterns/Water/pool.pat
3467
share/gimp/patterns/Water/rain.pat
3468
share/gimp/patterns/Wood/bark.pat
3469
share/gimp/patterns/Wood/burlwood.pat
3470
share/gimp/patterns/Wood/corkboard.pat
3471
share/gimp/patterns/Wood/parque1.pat
3472
share/gimp/patterns/Wood/parque2.pat
3473
share/gimp/patterns/Wood/parque3.pat
3474
share/gimp/patterns/Wood/pine.pat
3475
share/gimp/patterns/Wood/walnut.pat
3476
share/gimp/patterns/Wood/wood1.pat
3477
share/gimp/patterns/Wood/wood2.pat
3478
share/gimp/patterns/Wood/wood3.pat
3479
share/gimp/patterns/Wood/wood4.pat
3480
share/gimp/patterns/Wood/wood5.pat
3481
share/gimp/scripts/add-bevel.scm
3482
share/gimp/scripts/addborder.scm
3483
share/gimp/scripts/blend-anim.scm
3484
share/gimp/scripts/burn-in-anim.scm
3485
share/gimp/scripts/carve-it.scm
3486
share/gimp/scripts/chrome-it.scm
3487
share/gimp/scripts/circuit.scm
3488
share/gimp/scripts/clothify.scm
3489
share/gimp/scripts/coffee.scm
3490
share/gimp/scripts/copy-visible.scm
3491
share/gimp/scripts/difference-clouds.scm
3492
share/gimp/scripts/distress-selection.scm
3493
share/gimp/scripts/drop-shadow.scm
3494
share/gimp/scripts/erase-rows.scm
3495
share/gimp/scripts/font-map.scm
3496
share/gimp/scripts/fuzzyborder.scm
3497
share/gimp/scripts/gimp-online.scm
3498
share/gimp/scripts/gradient-example.scm
3499
share/gimp/scripts/grid-system.scm
3500
share/gimp/scripts/guides-from-selection.scm
3501
share/gimp/scripts/guides-new-percent.scm
3502
share/gimp/scripts/guides-new.scm
3503
share/gimp/scripts/guides-remove-all.scm
3504
share/gimp/scripts/images/beavis.jpg
3505
share/gimp/scripts/images/texture.jpg
3506
share/gimp/scripts/images/texture1.jpg
3507
share/gimp/scripts/images/texture2.jpg
3508
share/gimp/scripts/images/texture3.jpg
3509
share/gimp/scripts/lava.scm
3510
share/gimp/scripts/line-nova.scm
3511
share/gimp/scripts/mkbrush.scm
3512
share/gimp/scripts/old-photo.scm
3513
share/gimp/scripts/palette-export.scm
3514
share/gimp/scripts/paste-as-brush.scm
3515
share/gimp/scripts/paste-as-pattern.scm
3516
share/gimp/scripts/perspective-shadow.scm
3517
share/gimp/scripts/plug-in-compat.init
3518
share/gimp/scripts/predator.scm
3519
share/gimp/scripts/reverse-layers.scm
3520
share/gimp/scripts/ripply-anim.scm
3521
share/gimp/scripts/round-corners.scm
3522
share/gimp/scripts/script-fu-compat.init
3523
share/gimp/scripts/script-fu-set-cmap.scm
3524
share/gimp/scripts/script-fu-util.scm
3525
share/gimp/scripts/script-fu.init
3526
share/gimp/scripts/select-to-brush.scm
3527
share/gimp/scripts/select-to-image.scm
3528
share/gimp/scripts/select-to-pattern.scm
3529
share/gimp/scripts/selection-round.scm
3530
share/gimp/scripts/slide.scm
3531
share/gimp/scripts/spinning-globe.scm
3532
share/gimp/scripts/spyrogimp.scm
3533
share/gimp/scripts/tileblur.scm
3534
share/gimp/scripts/unsharp-mask.scm
3535
share/gimp/scripts/waves-anim.scm
3536
share/gimp/scripts/weave.scm
3537
share/gimp/scripts/xach-effect.scm
3538
share/gimp/tags/gimp-tags-default.xml
3539
share/gimp/themes/Dark/gtkrc
3540
share/gimp/themes/Dark/ui/arrow-down-insens.png
3541
share/gimp/themes/Dark/ui/arrow-down-prelight.png
3542
share/gimp/themes/Dark/ui/arrow-down-small-insens.png
3543
share/gimp/themes/Dark/ui/arrow-down-small-prelight.png
3544
share/gimp/themes/Dark/ui/arrow-down-small.png
3545
share/gimp/themes/Dark/ui/arrow-down.png
3546
share/gimp/themes/Dark/ui/arrow-left-insens.png
3547
share/gimp/themes/Dark/ui/arrow-left-prelight.png
3548
share/gimp/themes/Dark/ui/arrow-left.png
3549
share/gimp/themes/Dark/ui/arrow-right-insens.png
3550
share/gimp/themes/Dark/ui/arrow-right-prelight.png
3551
share/gimp/themes/Dark/ui/arrow-right.png
3552
share/gimp/themes/Dark/ui/arrow-up-insens.png
3553
share/gimp/themes/Dark/ui/arrow-up-prelight.png
3554
share/gimp/themes/Dark/ui/arrow-up-small-insens.png
3555
share/gimp/themes/Dark/ui/arrow-up-small-prelight.png
3556
share/gimp/themes/Dark/ui/arrow-up-small.png
3557
share/gimp/themes/Dark/ui/arrow-up.png
3558
share/gimp/themes/Dark/ui/bar-h.png
3559
share/gimp/themes/Dark/ui/bar-v.png
3560
share/gimp/themes/Dark/ui/blue.png
3561
share/gimp/themes/Dark/ui/button-default.png
3562
share/gimp/themes/Dark/ui/button-insensitive.png
3563
share/gimp/themes/Dark/ui/button-normal.png
3564
share/gimp/themes/Dark/ui/button-prelight.png
3565
share/gimp/themes/Dark/ui/button-pressed.png
3566
share/gimp/themes/Dark/ui/check1.png
3567
share/gimp/themes/Dark/ui/check2.png
3568
share/gimp/themes/Dark/ui/check3.png
3569
share/gimp/themes/Dark/ui/combo-entry-border-active-bg.png
3570
share/gimp/themes/Dark/ui/combo-entry-border-active-notebook.png
3571
share/gimp/themes/Dark/ui/combo-entry-border-active-rtl-notebook.png
3572
share/gimp/themes/Dark/ui/combo-entry-border-bg.png
3573
share/gimp/themes/Dark/ui/combo-entry-border-disabled-bg.png
3574
share/gimp/themes/Dark/ui/combo-entry-border-disabled-notebook.png
3575
share/gimp/themes/Dark/ui/combo-entry-border-disabled-rtl-bg.png
3576
share/gimp/themes/Dark/ui/combo-entry-border-disabled-rtl-notebook.png
3577
share/gimp/themes/Dark/ui/combo-entry-border-notebook.png
3578
share/gimp/themes/Dark/ui/combo-entry-border-rtl-bg.png
3579
share/gimp/themes/Dark/ui/combo-entry-border-rtl-notebook.png
3580
share/gimp/themes/Dark/ui/combo-entry-button-active-rtl.png
3581
share/gimp/themes/Dark/ui/combo-entry-button-active.png
3582
share/gimp/themes/Dark/ui/combo-entry-button-disabled-rtl.png
3583
share/gimp/themes/Dark/ui/combo-entry-button-disabled.png
3584
share/gimp/themes/Dark/ui/combo-entry-button-rtl.png
3585
share/gimp/themes/Dark/ui/combo-entry-button.png
3586
share/gimp/themes/Dark/ui/down-pre.png
3587
share/gimp/themes/Dark/ui/down.png
3588
share/gimp/themes/Dark/ui/entry-border-active-bg.png
3589
share/gimp/themes/Dark/ui/entry-border-active-notebook.png
3590
share/gimp/themes/Dark/ui/entry-border-disabled-bg.png
3591
share/gimp/themes/Dark/ui/entry-border-disabled-notebook.png
3592
share/gimp/themes/Dark/ui/entry-border-fill-active.png
3593
share/gimp/themes/Dark/ui/entry-border-fill.png
3594
share/gimp/themes/Dark/ui/entry-border-notebook-null.png
3595
share/gimp/themes/Dark/ui/entry-border-notebook.png
3596
share/gimp/themes/Dark/ui/ext-bottom.png
3597
share/gimp/themes/Dark/ui/ext-left.png
3598
share/gimp/themes/Dark/ui/ext-right.png
3599
share/gimp/themes/Dark/ui/ext-top.png
3600
share/gimp/themes/Dark/ui/extension-bottom.png
3601
share/gimp/themes/Dark/ui/extension-left.png
3602
share/gimp/themes/Dark/ui/extension-right.png
3603
share/gimp/themes/Dark/ui/extension-top.png
3604
share/gimp/themes/Dark/ui/frame-gap-end.png
3605
share/gimp/themes/Dark/ui/frame-gap-start.png
3606
share/gimp/themes/Dark/ui/frame.png
3607
share/gimp/themes/Dark/ui/gap_bottom.png
3608
share/gimp/themes/Dark/ui/gap_left.png
3609
share/gimp/themes/Dark/ui/gap_right.png
3610
share/gimp/themes/Dark/ui/gap_top.png
3611
share/gimp/themes/Dark/ui/gimp-arrow-down-insensitive.png
3612
share/gimp/themes/Dark/ui/gimp-arrow-down-insenstive.png
3613
share/gimp/themes/Dark/ui/gimp-arrow-down.png
3614
share/gimp/themes/Dark/ui/gimp-arrow-left.png
3615
share/gimp/themes/Dark/ui/gimp-arrow-right-dark.png
3616
share/gimp/themes/Dark/ui/gimp-arrow-right.png
3617
share/gimp/themes/Dark/ui/gimp-arrow-up.png
3618
share/gimp/themes/Dark/ui/gimp-button-default.png
3619
share/gimp/themes/Dark/ui/gimp-button-insensitive.png
3620
share/gimp/themes/Dark/ui/gimp-button-normal.png
3621
share/gimp/themes/Dark/ui/gimp-button-prelight.png
3622
share/gimp/themes/Dark/ui/gimp-button-pressed.png
3623
share/gimp/themes/Dark/ui/gimp-handle-h.png
3624
share/gimp/themes/Dark/ui/gimp-handle-v.png
3625
share/gimp/themes/Dark/ui/gimp-line-h.png
3626
share/gimp/themes/Dark/ui/gimp-line-v.png
3627
share/gimp/themes/Dark/ui/gimp-menu-line-h.png
3628
share/gimp/themes/Dark/ui/gimp-tooltip-bg.png
3629
share/gimp/themes/Dark/ui/list_header-pressed.png
3630
share/gimp/themes/Dark/ui/list_header.png
3631
share/gimp/themes/Dark/ui/menu-arrow-prelight.png
3632
share/gimp/themes/Dark/ui/menu-arrow.png
3633
share/gimp/themes/Dark/ui/menu.png
3634
share/gimp/themes/Dark/ui/menubar.png
3635
share/gimp/themes/Dark/ui/menuitem.png
3636
share/gimp/themes/Dark/ui/minus.png
3637
share/gimp/themes/Dark/ui/notebook.png
3638
share/gimp/themes/Dark/ui/null.png
3639
share/gimp/themes/Dark/ui/option1.png
3640
share/gimp/themes/Dark/ui/option2.png
3641
share/gimp/themes/Dark/ui/option3.png
3642
share/gimp/themes/Dark/ui/plus.png
3643
share/gimp/themes/Dark/ui/progressbar-trough.png
3644
share/gimp/themes/Dark/ui/progressbar.png
3645
share/gimp/themes/Dark/ui/shadow-in-alt.png
3646
share/gimp/themes/Dark/ui/shadow-in.png
3647
share/gimp/themes/Dark/ui/shadow-null.png
3648
share/gimp/themes/Dark/ui/shadow-out.png
3649
share/gimp/themes/Dark/ui/slider-h.png
3650
share/gimp/themes/Dark/ui/slider-v.png
3651
share/gimp/themes/Dark/ui/spin-down-insensitive.png
3652
share/gimp/themes/Dark/ui/spin-down-normal.png
3653
share/gimp/themes/Dark/ui/spin-down-pressed.png
3654
share/gimp/themes/Dark/ui/spin-insensitive.png
3655
share/gimp/themes/Dark/ui/spin-up-insensitive.png
3656
share/gimp/themes/Dark/ui/spin-up-normal.png
3657
share/gimp/themes/Dark/ui/spin-up-pressed.png
3658
share/gimp/themes/Dark/ui/spin.png
3659
share/gimp/themes/Dark/ui/toolbar.png
3660
share/gimp/themes/Dark/ui/transparent.png
3661
share/gimp/themes/Gray/gtkrc
3662
share/gimp/themes/Gray/ui/arrow-down-insens.png
3663
share/gimp/themes/Gray/ui/arrow-down-prelight.png
3664
share/gimp/themes/Gray/ui/arrow-down-small-insens.png
3665
share/gimp/themes/Gray/ui/arrow-down-small-prelight.png
3666
share/gimp/themes/Gray/ui/arrow-down-small.png
3667
share/gimp/themes/Gray/ui/arrow-down.png
3668
share/gimp/themes/Gray/ui/arrow-left-insens.png
3669
share/gimp/themes/Gray/ui/arrow-left-prelight.png
3670
share/gimp/themes/Gray/ui/arrow-left.png
3671
share/gimp/themes/Gray/ui/arrow-right-insens.png
3672
share/gimp/themes/Gray/ui/arrow-right-prelight.png
3673
share/gimp/themes/Gray/ui/arrow-right.png
3674
share/gimp/themes/Gray/ui/arrow-up-insens.png
3675
share/gimp/themes/Gray/ui/arrow-up-prelight.png
3676
share/gimp/themes/Gray/ui/arrow-up-small-insens.png
3677
share/gimp/themes/Gray/ui/arrow-up-small-prelight.png
3678
share/gimp/themes/Gray/ui/arrow-up-small.png
3679
share/gimp/themes/Gray/ui/arrow-up.png
3680
share/gimp/themes/Gray/ui/bar-h.png
3681
share/gimp/themes/Gray/ui/bar-v.png
3682
share/gimp/themes/Gray/ui/button-default.png
3683
share/gimp/themes/Gray/ui/button-insensitive.png
3684
share/gimp/themes/Gray/ui/button-normal.png
3685
share/gimp/themes/Gray/ui/button-prelight.png
3686
share/gimp/themes/Gray/ui/button-pressed.png
3687
share/gimp/themes/Gray/ui/check1.png
3688
share/gimp/themes/Gray/ui/check2.png
3689
share/gimp/themes/Gray/ui/check3.png
3690
share/gimp/themes/Gray/ui/combo-entry-border-active-bg.png
3691
share/gimp/themes/Gray/ui/combo-entry-border-active-notebook.png
3692
share/gimp/themes/Gray/ui/combo-entry-border-active-rtl-notebook.png
3693
share/gimp/themes/Gray/ui/combo-entry-border-bg.png
3694
share/gimp/themes/Gray/ui/combo-entry-border-disabled-bg.png
3695
share/gimp/themes/Gray/ui/combo-entry-border-disabled-notebook.png
3696
share/gimp/themes/Gray/ui/combo-entry-border-disabled-rtl-bg.png
3697
share/gimp/themes/Gray/ui/combo-entry-border-disabled-rtl-notebook.png
3698
share/gimp/themes/Gray/ui/combo-entry-border-notebook.png
3699
share/gimp/themes/Gray/ui/combo-entry-border-rtl-bg.png
3700
share/gimp/themes/Gray/ui/combo-entry-border-rtl-notebook.png
3701
share/gimp/themes/Gray/ui/combo-entry-button-active-rtl.png
3702
share/gimp/themes/Gray/ui/combo-entry-button-active.png
3703
share/gimp/themes/Gray/ui/combo-entry-button-disabled-rtl.png
3704
share/gimp/themes/Gray/ui/combo-entry-button-disabled.png
3705
share/gimp/themes/Gray/ui/combo-entry-button-rtl.png
3706
share/gimp/themes/Gray/ui/combo-entry-button.png
3707
share/gimp/themes/Gray/ui/entry-border-active-bg.png
3708
share/gimp/themes/Gray/ui/entry-border-active-notebook.png
3709
share/gimp/themes/Gray/ui/entry-border-disabled-bg.png
3710
share/gimp/themes/Gray/ui/entry-border-disabled-notebook.png
3711
share/gimp/themes/Gray/ui/entry-border-fill-active-item.png
3712
share/gimp/themes/Gray/ui/entry-border-fill-active.png
3713
share/gimp/themes/Gray/ui/entry-border-fill.png
3714
share/gimp/themes/Gray/ui/entry-border-notebook-null.png
3715
share/gimp/themes/Gray/ui/entry-border-notebook.png
3716
share/gimp/themes/Gray/ui/ext-bottom.png
3717
share/gimp/themes/Gray/ui/ext-left.png
3718
share/gimp/themes/Gray/ui/ext-right.png
3719
share/gimp/themes/Gray/ui/ext-top.png
3720
share/gimp/themes/Gray/ui/extension-bottom.png
3721
share/gimp/themes/Gray/ui/extension-left.png
3722
share/gimp/themes/Gray/ui/extension-right.png
3723
share/gimp/themes/Gray/ui/extension-top.png
3724
share/gimp/themes/Gray/ui/frame-gap-end.png
3725
share/gimp/themes/Gray/ui/frame-gap-start.png
3726
share/gimp/themes/Gray/ui/frame.png
3727
share/gimp/themes/Gray/ui/gap_bottom.png
3728
share/gimp/themes/Gray/ui/gap_left.png
3729
share/gimp/themes/Gray/ui/gap_right.png
3730
share/gimp/themes/Gray/ui/gap_top.png
3731
share/gimp/themes/Gray/ui/gimp-arrow-down-insensitive.png
3732
share/gimp/themes/Gray/ui/gimp-arrow-down-insenstive.png
3733
share/gimp/themes/Gray/ui/gimp-arrow-down.png
3734
share/gimp/themes/Gray/ui/gimp-arrow-left.png
3735
share/gimp/themes/Gray/ui/gimp-arrow-right-dark.png
3736
share/gimp/themes/Gray/ui/gimp-arrow-right-prelight.png
3737
share/gimp/themes/Gray/ui/gimp-arrow-right.png
3738
share/gimp/themes/Gray/ui/gimp-arrow-up.png
3739
share/gimp/themes/Gray/ui/gimp-button-default.png
3740
share/gimp/themes/Gray/ui/gimp-button-insensitive.png
3741
share/gimp/themes/Gray/ui/gimp-button-normal.png
3742
share/gimp/themes/Gray/ui/gimp-button-prelight.png
3743
share/gimp/themes/Gray/ui/gimp-button-pressed.png
3744
share/gimp/themes/Gray/ui/gimp-handle-h.png
3745
share/gimp/themes/Gray/ui/gimp-handle-v.png
3746
share/gimp/themes/Gray/ui/gimp-line-h.png
3747
share/gimp/themes/Gray/ui/gimp-line-v.png
3748
share/gimp/themes/Gray/ui/gimp-menu-line-h.png
3749
share/gimp/themes/Gray/ui/gimp-tooltip-bg.png
3750
share/gimp/themes/Gray/ui/list_header-pressed.png
3751
share/gimp/themes/Gray/ui/list_header.png
3752
share/gimp/themes/Gray/ui/menu-arrow-prelight.png
3753
share/gimp/themes/Gray/ui/menu-arrow.png
3754
share/gimp/themes/Gray/ui/menu-prelight.png
3755
share/gimp/themes/Gray/ui/menu.png
3756
share/gimp/themes/Gray/ui/menubar.png
3757
share/gimp/themes/Gray/ui/menuitem-prelight.png
3758
share/gimp/themes/Gray/ui/menuitem.png
3759
share/gimp/themes/Gray/ui/minus.png
3760
share/gimp/themes/Gray/ui/notebook.png
3761
share/gimp/themes/Gray/ui/null.png
3762
share/gimp/themes/Gray/ui/option1.png
3763
share/gimp/themes/Gray/ui/option2.png
3764
share/gimp/themes/Gray/ui/option3.png
3765
share/gimp/themes/Gray/ui/plus.png
3766
share/gimp/themes/Gray/ui/progressbar-trough.png
3767
share/gimp/themes/Gray/ui/progressbar.png
3768
share/gimp/themes/Gray/ui/shadow-in-alt.png
3769
share/gimp/themes/Gray/ui/shadow-in.png
3770
share/gimp/themes/Gray/ui/shadow-null.png
3771
share/gimp/themes/Gray/ui/shadow-out.png
3772
share/gimp/themes/Gray/ui/slider-h.png
3773
share/gimp/themes/Gray/ui/slider-v.png
3774
share/gimp/themes/Gray/ui/spin-down-insensitive.png
3775
share/gimp/themes/Gray/ui/spin-down-normal.png
3776
share/gimp/themes/Gray/ui/spin-down-pressed.png
3777
share/gimp/themes/Gray/ui/spin-insensitive.png
3778
share/gimp/themes/Gray/ui/spin-up-insensitive.png
3779
share/gimp/themes/Gray/ui/spin-up-normal.png
3780
share/gimp/themes/Gray/ui/spin-up-pressed.png
3781
share/gimp/themes/Gray/ui/spin.png
3782
share/gimp/themes/Gray/ui/toolbar.png
3783
share/gimp/themes/Gray/ui/transparent.png
3784
share/gimp/themes/Light/gtkrc
3785
share/gimp/themes/Light/ui/arrow-down-insens.png
3786
share/gimp/themes/Light/ui/arrow-down-prelight.png
3787
share/gimp/themes/Light/ui/arrow-down-small-insens.png
3788
share/gimp/themes/Light/ui/arrow-down-small-prelight.png
3789
share/gimp/themes/Light/ui/arrow-down-small.png
3790
share/gimp/themes/Light/ui/arrow-down.png
3791
share/gimp/themes/Light/ui/arrow-left-insens.png
3792
share/gimp/themes/Light/ui/arrow-left-prelight.png
3793
share/gimp/themes/Light/ui/arrow-left.png
3794
share/gimp/themes/Light/ui/arrow-right-insens.png
3795
share/gimp/themes/Light/ui/arrow-right-prelight.png
3796
share/gimp/themes/Light/ui/arrow-right.png
3797
share/gimp/themes/Light/ui/arrow-up-insens.png
3798
share/gimp/themes/Light/ui/arrow-up-prelight.png
3799
share/gimp/themes/Light/ui/arrow-up-small-insens.png
3800
share/gimp/themes/Light/ui/arrow-up-small-prelight.png
3801
share/gimp/themes/Light/ui/arrow-up-small.png
3802
share/gimp/themes/Light/ui/arrow-up.png
3803
share/gimp/themes/Light/ui/bar-h.png
3804
share/gimp/themes/Light/ui/bar-v.png
3805
share/gimp/themes/Light/ui/button-default.png
3806
share/gimp/themes/Light/ui/button-insensitive.png
3807
share/gimp/themes/Light/ui/button-normal.png
3808
share/gimp/themes/Light/ui/button-prelight.png
3809
share/gimp/themes/Light/ui/button-pressed.png
3810
share/gimp/themes/Light/ui/check1.png
3811
share/gimp/themes/Light/ui/check2.png
3812
share/gimp/themes/Light/ui/check3.png
3813
share/gimp/themes/Light/ui/combo-entry-border-active-bg.png
3814
share/gimp/themes/Light/ui/combo-entry-border-active-notebook.png
3815
share/gimp/themes/Light/ui/combo-entry-border-active-rtl-notebook.png
3816
share/gimp/themes/Light/ui/combo-entry-border-bg.png
3817
share/gimp/themes/Light/ui/combo-entry-border-disabled-bg.png
3818
share/gimp/themes/Light/ui/combo-entry-border-disabled-notebook.png
3819
share/gimp/themes/Light/ui/combo-entry-border-disabled-rtl-bg.png
3820
share/gimp/themes/Light/ui/combo-entry-border-disabled-rtl-notebook.png
3821
share/gimp/themes/Light/ui/combo-entry-border-notebook.png
3822
share/gimp/themes/Light/ui/combo-entry-border-rtl-bg.png
3823
share/gimp/themes/Light/ui/combo-entry-border-rtl-notebook.png
3824
share/gimp/themes/Light/ui/combo-entry-button-active-rtl.png
3825
share/gimp/themes/Light/ui/combo-entry-button-active.png
3826
share/gimp/themes/Light/ui/combo-entry-button-disabled-rtl.png
3827
share/gimp/themes/Light/ui/combo-entry-button-disabled.png
3828
share/gimp/themes/Light/ui/combo-entry-button-rtl.png
3829
share/gimp/themes/Light/ui/combo-entry-button.png
3830
share/gimp/themes/Light/ui/down-pre.png
3831
share/gimp/themes/Light/ui/down.png
3832
share/gimp/themes/Light/ui/entry-border-active-bg.png
3833
share/gimp/themes/Light/ui/entry-border-active-notebook.png
3834
share/gimp/themes/Light/ui/entry-border-disabled-bg.png
3835
share/gimp/themes/Light/ui/entry-border-disabled-notebook.png
3836
share/gimp/themes/Light/ui/entry-border-fill-active-item.png
3837
share/gimp/themes/Light/ui/entry-border-fill-active.png
3838
share/gimp/themes/Light/ui/entry-border-fill.png
3839
share/gimp/themes/Light/ui/entry-border-notebook-null.png
3840
share/gimp/themes/Light/ui/entry-border-notebook.png
3841
share/gimp/themes/Light/ui/ext-bottom.png
3842
share/gimp/themes/Light/ui/ext-left.png
3843
share/gimp/themes/Light/ui/ext-right.png
3844
share/gimp/themes/Light/ui/ext-top.png
3845
share/gimp/themes/Light/ui/extension-bottom.png
3846
share/gimp/themes/Light/ui/extension-left.png
3847
share/gimp/themes/Light/ui/extension-right.png
3848
share/gimp/themes/Light/ui/extension-top.png
3849
share/gimp/themes/Light/ui/frame-gap-end.png
3850
share/gimp/themes/Light/ui/frame-gap-start.png
3851
share/gimp/themes/Light/ui/frame.png
3852
share/gimp/themes/Light/ui/gap_bottom.png
3853
share/gimp/themes/Light/ui/gap_left.png
3854
share/gimp/themes/Light/ui/gap_right.png
3855
share/gimp/themes/Light/ui/gap_top.png
3856
share/gimp/themes/Light/ui/gimp-arrow-down-insensitive.png
3857
share/gimp/themes/Light/ui/gimp-arrow-down-insenstive.png
3858
share/gimp/themes/Light/ui/gimp-arrow-down.png
3859
share/gimp/themes/Light/ui/gimp-arrow-left.png
3860
share/gimp/themes/Light/ui/gimp-arrow-right-dark.png
3861
share/gimp/themes/Light/ui/gimp-arrow-right-prelight.png
3862
share/gimp/themes/Light/ui/gimp-arrow-right.png
3863
share/gimp/themes/Light/ui/gimp-arrow-up.png
3864
share/gimp/themes/Light/ui/gimp-button-default.png
3865
share/gimp/themes/Light/ui/gimp-button-insensitive.png
3866
share/gimp/themes/Light/ui/gimp-button-normal.png
3867
share/gimp/themes/Light/ui/gimp-button-prelight.png
3868
share/gimp/themes/Light/ui/gimp-button-pressed.png
3869
share/gimp/themes/Light/ui/gimp-handle-h.png
3870
share/gimp/themes/Light/ui/gimp-handle-v.png
3871
share/gimp/themes/Light/ui/gimp-line-h.png
3872
share/gimp/themes/Light/ui/gimp-line-v.png
3873
share/gimp/themes/Light/ui/gimp-menu-line-h.png
3874
share/gimp/themes/Light/ui/gimp-tooltip-bg.png
3875
share/gimp/themes/Light/ui/list_header-pressed.png
3876
share/gimp/themes/Light/ui/list_header.png
3877
share/gimp/themes/Light/ui/menu-arrow-prelight.png
3878
share/gimp/themes/Light/ui/menu-arrow.png
3879
share/gimp/themes/Light/ui/menu.png
3880
share/gimp/themes/Light/ui/menubar.png
3881
share/gimp/themes/Light/ui/menuitem-prelight.png
3882
share/gimp/themes/Light/ui/menuitem.png
3883
share/gimp/themes/Light/ui/minus.png
3884
share/gimp/themes/Light/ui/notebook.png
3885
share/gimp/themes/Light/ui/null.png
3886
share/gimp/themes/Light/ui/option1.png
3887
share/gimp/themes/Light/ui/option2.png
3888
share/gimp/themes/Light/ui/option3.png
3889
share/gimp/themes/Light/ui/plus.png
3890
share/gimp/themes/Light/ui/progressbar-trough.png
3891
share/gimp/themes/Light/ui/progressbar.png
3892
share/gimp/themes/Light/ui/shadow-in-alt.png
3893
share/gimp/themes/Light/ui/shadow-in.png
3894
share/gimp/themes/Light/ui/shadow-null.png
3895
share/gimp/themes/Light/ui/shadow-out.png
3896
share/gimp/themes/Light/ui/slider-h.png
3897
share/gimp/themes/Light/ui/slider-v.png
3898
share/gimp/themes/Light/ui/spin-down-insensitive.png
3899
share/gimp/themes/Light/ui/spin-down-normal.png
3900
share/gimp/themes/Light/ui/spin-down-pressed.png
3901
share/gimp/themes/Light/ui/spin-fill-bg.png
3902
share/gimp/themes/Light/ui/spin-insensitive.png
3903
share/gimp/themes/Light/ui/spin-up-insensitive.png
3904
share/gimp/themes/Light/ui/spin-up-normal.png
3905
share/gimp/themes/Light/ui/spin-up-pressed.png
3906
share/gimp/themes/Light/ui/spin.png
3907
share/gimp/themes/Light/ui/toolbar.png
3908
share/gimp/themes/Light/ui/transparent.png
3909
share/gimp/themes/System/gtkrc
3910
share/gimp/tips/gimp-tips.xml
3911
share/gimp/tool-presets/Crop/16_10.gtp
3912
share/gimp/tool-presets/Crop/16_9.gtp
3913
share/gimp/tool-presets/Crop/3_2-Landscape.gtp
3914
share/gimp/tool-presets/Crop/3_2-Portrait.gtp
3915
share/gimp/tool-presets/Crop/4_3-Landscape.gtp
3916
share/gimp/tool-presets/Crop/4_3-Portrait.gtp
3917
share/gimp/tool-presets/Crop/Square.gtp
3918
share/gimp/tool-presets/FX/Crop-16-9.gtp
3919
share/gimp/tool-presets/FX/Crop-Composition.gtp
3920
share/gimp/tool-presets/FX/FX-Confetti.gtp
3921
share/gimp/tool-presets/FX/FX-Radial-Softlight.gtp
3922
share/gimp/tool-presets/FX/Fill-Paper.gtp
3923
share/gimp/tool-presets/FX/Glow-Lights.gtp
3924
share/gimp/tool-presets/FX/Smooth-Clone.gtp
3925
share/gimp/tool-presets/FX/Vignette.gtp
3926
share/gimp/tool-presets/Paint/Airbrush-Color-From-Gradient.gtp
3927
share/gimp/tool-presets/Paint/Airbrush.gtp
3928
share/gimp/tool-presets/Paint/Basic-Knife.gtp
3929
share/gimp/tool-presets/Paint/Basic-Round-Detail.gtp
3930
share/gimp/tool-presets/Paint/Basic-Round.gtp
3931
share/gimp/tool-presets/Paint/Bristles.gtp
3932
share/gimp/tool-presets/Paint/Eraser-Hard.gtp
3933
share/gimp/tool-presets/Paint/Noise.gtp
3934
share/gimp/tool-presets/Paint/Paintbrush-Color-From-Gradient.gtp
3935
share/gimp/tool-presets/Paint/Pencil-Color-From-Gradient.gtp
3936
share/gimp/tool-presets/Paint/Smudge-Rough.gtp
3937
share/gimp/tool-presets/Paint/Smudge-Soft.gtp
3938
share/gimp/tool-presets/Paint/Soft-Oil.gtp
3939
share/gimp/tool-presets/Paint/Splatters.gtp
3940
share/gimp/tool-presets/Paint/Structure.gtp
3941
share/gimp/tool-presets/Paint/Vegetal.gtp
3942
share/gimp/tool-presets/Selection/Circle-200px.gtp
3943
share/gimp/tool-presets/Selection/Feathered-Selection.gtp
3944
share/gimp/tool-presets/Sketch/Blue-Pen.gtp
3945
share/gimp/tool-presets/Sketch/Eraser-Soft.gtp
3946
share/gimp/tool-presets/Sketch/Ink-Smooth.gtp
3947
share/gimp/tool-presets/Sketch/Ink-Thin.gtp
3948
share/gimp/tool-presets/Sketch/Pencil-Soft.gtp
3949
share/gimp/tool-presets/Sketch/Pencil.gtp
3950
share/gimp/ui/plug-ins/plug-in-file-gif.ui
3951
share/gimp/ui/plug-ins/plug-in-file-png.ui
3952
share/gimp/ui/plug-ins/plug-in-file-raw.ui
3953
share/gimp/ui/plug-ins/plug-in-file-tiff.ui
3954
share/gimp/ui/plug-ins/plug-in-metadata-editor-calendar.ui
3955
share/gimp/ui/plug-ins/plug-in-metadata-editor.ui
3956
share/gimp/ui/plug-ins/plug-in-metadata-viewer.ui
3957
share/icons/hicolor/16x16/apps/gimp.png
3958
share/icons/hicolor/22x22/apps/gimp.png
3959
share/icons/hicolor/24x24/apps/gimp.png
3960
share/icons/hicolor/256x256/apps/gimp.png
3961
share/icons/hicolor/32x32/apps/gimp.png
3962
share/icons/hicolor/48x48/apps/gimp.png
3963
share/locale/am/LC_MESSAGES/gimp20.mo
3964
share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo
3965
share/locale/ar/LC_MESSAGES/gimp20-python.mo
3966
share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo
3967
share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo
3968
share/locale/ar/LC_MESSAGES/gimp20-tips.mo
3969
share/locale/ar/LC_MESSAGES/gimp20.mo
3970
share/locale/ast/LC_MESSAGES/gimp20.mo
3971
share/locale/az/LC_MESSAGES/gimp20-libgimp.mo
3972
share/locale/az/LC_MESSAGES/gimp20-python.mo
3973
share/locale/az/LC_MESSAGES/gimp20-script-fu.mo
3974
share/locale/az/LC_MESSAGES/gimp20.mo
3975
share/locale/be/LC_MESSAGES/gimp20-libgimp.mo
3976
share/locale/be/LC_MESSAGES/gimp20-python.mo
3977
share/locale/be/LC_MESSAGES/gimp20-script-fu.mo
3978
share/locale/be/LC_MESSAGES/gimp20-std-plug-ins.mo
3979
share/locale/be/LC_MESSAGES/gimp20-tips.mo
3980
share/locale/be/LC_MESSAGES/gimp20.mo
3981
share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo
3982
share/locale/bg/LC_MESSAGES/gimp20-python.mo
3983
share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo
3984
share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo
3985
share/locale/bg/LC_MESSAGES/gimp20-tips.mo
3986
share/locale/bg/LC_MESSAGES/gimp20.mo
3987
share/locale/br/LC_MESSAGES/gimp20-libgimp.mo
3988
share/locale/br/LC_MESSAGES/gimp20-python.mo
3989
share/locale/br/LC_MESSAGES/gimp20-script-fu.mo
3990
share/locale/br/LC_MESSAGES/gimp20-std-plug-ins.mo
3991
share/locale/br/LC_MESSAGES/gimp20-tips.mo
3992
share/locale/br/LC_MESSAGES/gimp20.mo
3993
share/locale/bs/LC_MESSAGES/gimp20-libgimp.mo
3994
share/locale/bs/LC_MESSAGES/gimp20-python.mo
3995
share/locale/bs/LC_MESSAGES/gimp20-script-fu.mo
3996
share/locale/bs/LC_MESSAGES/gimp20-std-plug-ins.mo
3997
share/locale/bs/LC_MESSAGES/gimp20-tips.mo
3998
share/locale/bs/LC_MESSAGES/gimp20.mo
3999
share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo
4000
share/locale/ca/LC_MESSAGES/gimp20-python.mo
4001
share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo
4002
share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.mo
4003
share/locale/ca/LC_MESSAGES/gimp20-tips.mo
4004
share/locale/ca/LC_MESSAGES/gimp20.mo
4005
share/locale/ca@valencia/LC_MESSAGES/gimp20-libgimp.mo
4006
share/locale/ca@valencia/LC_MESSAGES/gimp20-python.mo
4007
share/locale/ca@valencia/LC_MESSAGES/gimp20-script-fu.mo
4008
share/locale/ca@valencia/LC_MESSAGES/gimp20-std-plug-ins.mo
4009
share/locale/ca@valencia/LC_MESSAGES/gimp20-tips.mo
4010
share/locale/ca@valencia/LC_MESSAGES/gimp20.mo
4011
share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo
4012
share/locale/cs/LC_MESSAGES/gimp20-python.mo
4013
share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo
4014
share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo
4015
share/locale/cs/LC_MESSAGES/gimp20-tips.mo
4016
share/locale/cs/LC_MESSAGES/gimp20.mo
4017
share/locale/csb/LC_MESSAGES/gimp20.mo
4018
share/locale/da/LC_MESSAGES/gimp20-libgimp.mo
4019
share/locale/da/LC_MESSAGES/gimp20-python.mo
4020
share/locale/da/LC_MESSAGES/gimp20-script-fu.mo
4021
share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo
4022
share/locale/da/LC_MESSAGES/gimp20-tips.mo
4023
share/locale/da/LC_MESSAGES/gimp20.mo
4024
share/locale/de/LC_MESSAGES/gimp20-libgimp.mo
4025
share/locale/de/LC_MESSAGES/gimp20-python.mo
4026
share/locale/de/LC_MESSAGES/gimp20-script-fu.mo
4027
share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.mo
4028
share/locale/de/LC_MESSAGES/gimp20-tips.mo
4029
share/locale/de/LC_MESSAGES/gimp20.mo
4030
share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo
4031
share/locale/dz/LC_MESSAGES/gimp20-python.mo
4032
share/locale/dz/LC_MESSAGES/gimp20-script-fu.mo
4033
share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.mo
4034
share/locale/dz/LC_MESSAGES/gimp20-tips.mo
4035
share/locale/dz/LC_MESSAGES/gimp20.mo
4036
share/locale/el/LC_MESSAGES/gimp20-libgimp.mo
4037
share/locale/el/LC_MESSAGES/gimp20-python.mo
4038
share/locale/el/LC_MESSAGES/gimp20-script-fu.mo
4039
share/locale/el/LC_MESSAGES/gimp20-std-plug-ins.mo
4040
share/locale/el/LC_MESSAGES/gimp20-tips.mo
4041
share/locale/el/LC_MESSAGES/gimp20.mo
4042
share/locale/en_CA/LC_MESSAGES/gimp20-libgimp.mo
4043
share/locale/en_CA/LC_MESSAGES/gimp20-python.mo
4044
share/locale/en_CA/LC_MESSAGES/gimp20-script-fu.mo
4045
share/locale/en_CA/LC_MESSAGES/gimp20-std-plug-ins.mo
4046
share/locale/en_CA/LC_MESSAGES/gimp20-tips.mo
4047
share/locale/en_CA/LC_MESSAGES/gimp20.mo
4048
share/locale/en_GB/LC_MESSAGES/gimp20-libgimp.mo
4049
share/locale/en_GB/LC_MESSAGES/gimp20-python.mo
4050
share/locale/en_GB/LC_MESSAGES/gimp20-script-fu.mo
4051
share/locale/en_GB/LC_MESSAGES/gimp20-std-plug-ins.mo
4052
share/locale/en_GB/LC_MESSAGES/gimp20-tips.mo
4053
share/locale/en_GB/LC_MESSAGES/gimp20.mo
4054
share/locale/eo/LC_MESSAGES/gimp20-libgimp.mo
4055
share/locale/eo/LC_MESSAGES/gimp20-python.mo
4056
share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo
4057
share/locale/eo/LC_MESSAGES/gimp20-std-plug-ins.mo
4058
share/locale/eo/LC_MESSAGES/gimp20-tips.mo
4059
share/locale/eo/LC_MESSAGES/gimp20.mo
4060
share/locale/es/LC_MESSAGES/gimp20-libgimp.mo
4061
share/locale/es/LC_MESSAGES/gimp20-python.mo
4062
share/locale/es/LC_MESSAGES/gimp20-script-fu.mo
4063
share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo
4064
share/locale/es/LC_MESSAGES/gimp20-tips.mo
4065
share/locale/es/LC_MESSAGES/gimp20.mo
4066
share/locale/et/LC_MESSAGES/gimp20-libgimp.mo
4067
share/locale/et/LC_MESSAGES/gimp20-python.mo
4068
share/locale/et/LC_MESSAGES/gimp20-script-fu.mo
4069
share/locale/et/LC_MESSAGES/gimp20-std-plug-ins.mo
4070
share/locale/et/LC_MESSAGES/gimp20-tips.mo
4071
share/locale/et/LC_MESSAGES/gimp20.mo
4072
share/locale/eu/LC_MESSAGES/gimp20-libgimp.mo
4073
share/locale/eu/LC_MESSAGES/gimp20-python.mo
4074
share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo
4075
share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo
4076
share/locale/eu/LC_MESSAGES/gimp20-tips.mo
4077
share/locale/eu/LC_MESSAGES/gimp20.mo
4078
share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo
4079
share/locale/fa/LC_MESSAGES/gimp20-python.mo
4080
share/locale/fa/LC_MESSAGES/gimp20-script-fu.mo
4081
share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.mo
4082
share/locale/fa/LC_MESSAGES/gimp20-tips.mo
4083
share/locale/fa/LC_MESSAGES/gimp20.mo
4084
share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo
4085
share/locale/fi/LC_MESSAGES/gimp20-python.mo
4086
share/locale/fi/LC_MESSAGES/gimp20-script-fu.mo
4087
share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo
4088
share/locale/fi/LC_MESSAGES/gimp20-tips.mo
4089
share/locale/fi/LC_MESSAGES/gimp20.mo
4090
share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo
4091
share/locale/fr/LC_MESSAGES/gimp20-python.mo
4092
share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo
4093
share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo
4094
share/locale/fr/LC_MESSAGES/gimp20-tips.mo
4095
share/locale/fr/LC_MESSAGES/gimp20.mo
4096
share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo
4097
share/locale/ga/LC_MESSAGES/gimp20-python.mo
4098
share/locale/ga/LC_MESSAGES/gimp20-script-fu.mo
4099
share/locale/ga/LC_MESSAGES/gimp20-std-plug-ins.mo
4100
share/locale/ga/LC_MESSAGES/gimp20.mo
4101
share/locale/gd/LC_MESSAGES/gimp20.mo
4102
share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo
4103
share/locale/gl/LC_MESSAGES/gimp20-python.mo
4104
share/locale/gl/LC_MESSAGES/gimp20-script-fu.mo
4105
share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo
4106
share/locale/gl/LC_MESSAGES/gimp20-tips.mo
4107
share/locale/gl/LC_MESSAGES/gimp20.mo
4108
share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo
4109
share/locale/gu/LC_MESSAGES/gimp20-python.mo
4110
share/locale/gu/LC_MESSAGES/gimp20-script-fu.mo
4111
share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo
4112
share/locale/gu/LC_MESSAGES/gimp20-tips.mo
4113
share/locale/gu/LC_MESSAGES/gimp20.mo
4114
share/locale/he/LC_MESSAGES/gimp20-libgimp.mo
4115
share/locale/he/LC_MESSAGES/gimp20-script-fu.mo
4116
share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo
4117
share/locale/he/LC_MESSAGES/gimp20-tips.mo
4118
share/locale/he/LC_MESSAGES/gimp20.mo
4119
share/locale/hi/LC_MESSAGES/gimp20.mo
4120
share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo
4121
share/locale/hr/LC_MESSAGES/gimp20-python.mo
4122
share/locale/hr/LC_MESSAGES/gimp20-script-fu.mo
4123
share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo
4124
share/locale/hr/LC_MESSAGES/gimp20-tips.mo
4125
share/locale/hr/LC_MESSAGES/gimp20.mo
4126
share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo
4127
share/locale/hu/LC_MESSAGES/gimp20-python.mo
4128
share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo
4129
share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo
4130
share/locale/hu/LC_MESSAGES/gimp20-tips.mo
4131
share/locale/hu/LC_MESSAGES/gimp20.mo
4132
share/locale/id/LC_MESSAGES/gimp20-libgimp.mo
4133
share/locale/id/LC_MESSAGES/gimp20-python.mo
4134
share/locale/id/LC_MESSAGES/gimp20-script-fu.mo
4135
share/locale/id/LC_MESSAGES/gimp20-std-plug-ins.mo
4136
share/locale/id/LC_MESSAGES/gimp20-tips.mo
4137
share/locale/id/LC_MESSAGES/gimp20.mo
4138
share/locale/is/LC_MESSAGES/gimp20-libgimp.mo
4139
share/locale/is/LC_MESSAGES/gimp20-python.mo
4140
share/locale/is/LC_MESSAGES/gimp20-script-fu.mo
4141
share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo
4142
share/locale/is/LC_MESSAGES/gimp20-tips.mo
4143
share/locale/is/LC_MESSAGES/gimp20.mo
4144
share/locale/it/LC_MESSAGES/gimp20-libgimp.mo
4145
share/locale/it/LC_MESSAGES/gimp20-python.mo
4146
share/locale/it/LC_MESSAGES/gimp20-script-fu.mo
4147
share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo
4148
share/locale/it/LC_MESSAGES/gimp20-tips.mo
4149
share/locale/it/LC_MESSAGES/gimp20.mo
4150
share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo
4151
share/locale/ja/LC_MESSAGES/gimp20-python.mo
4152
share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo
4153
share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo
4154
share/locale/ja/LC_MESSAGES/gimp20-tips.mo
4155
share/locale/ja/LC_MESSAGES/gimp20.mo
4156
share/locale/ka/LC_MESSAGES/gimp20.mo
4157
share/locale/kk/LC_MESSAGES/gimp20-libgimp.mo
4158
share/locale/kk/LC_MESSAGES/gimp20.mo
4159
share/locale/km/LC_MESSAGES/gimp20-libgimp.mo
4160
share/locale/km/LC_MESSAGES/gimp20-python.mo
4161
share/locale/km/LC_MESSAGES/gimp20-script-fu.mo
4162
share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.mo
4163
share/locale/km/LC_MESSAGES/gimp20-tips.mo
4164
share/locale/km/LC_MESSAGES/gimp20.mo
4165
share/locale/kn/LC_MESSAGES/gimp20-std-plug-ins.mo
4166
share/locale/kn/LC_MESSAGES/gimp20.mo
4167
share/locale/ko/LC_MESSAGES/gimp20-libgimp.mo
4168
share/locale/ko/LC_MESSAGES/gimp20-python.mo
4169
share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo
4170
share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo
4171
share/locale/ko/LC_MESSAGES/gimp20-tips.mo
4172
share/locale/ko/LC_MESSAGES/gimp20.mo
4173
share/locale/ky/LC_MESSAGES/gimp20.mo
4174
share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo
4175
share/locale/lt/LC_MESSAGES/gimp20-python.mo
4176
share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo
4177
share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo
4178
share/locale/lt/LC_MESSAGES/gimp20-tips.mo
4179
share/locale/lt/LC_MESSAGES/gimp20.mo
4180
share/locale/lv/LC_MESSAGES/gimp20-libgimp.mo
4181
share/locale/lv/LC_MESSAGES/gimp20-python.mo
4182
share/locale/lv/LC_MESSAGES/gimp20-script-fu.mo
4183
share/locale/lv/LC_MESSAGES/gimp20-std-plug-ins.mo
4184
share/locale/lv/LC_MESSAGES/gimp20-tips.mo
4185
share/locale/lv/LC_MESSAGES/gimp20.mo
4186
share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo
4187
share/locale/mk/LC_MESSAGES/gimp20-python.mo
4188
share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo
4189
share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo
4190
share/locale/mk/LC_MESSAGES/gimp20-tips.mo
4191
share/locale/mk/LC_MESSAGES/gimp20.mo
4192
share/locale/ml/LC_MESSAGES/gimp20.mo
4193
share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo
4194
share/locale/ms/LC_MESSAGES/gimp20-python.mo
4195
share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo
4196
share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.mo
4197
share/locale/ms/LC_MESSAGES/gimp20-tips.mo
4198
share/locale/ms/LC_MESSAGES/gimp20.mo
4199
share/locale/my/LC_MESSAGES/gimp20-libgimp.mo
4200
share/locale/my/LC_MESSAGES/gimp20-python.mo
4201
share/locale/my/LC_MESSAGES/gimp20-script-fu.mo
4202
share/locale/my/LC_MESSAGES/gimp20-std-plug-ins.mo
4203
share/locale/my/LC_MESSAGES/gimp20-tips.mo
4204
share/locale/my/LC_MESSAGES/gimp20.mo
4205
share/locale/nb/LC_MESSAGES/gimp20-libgimp.mo
4206
share/locale/nb/LC_MESSAGES/gimp20-python.mo
4207
share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo
4208
share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.mo
4209
share/locale/nb/LC_MESSAGES/gimp20-tips.mo
4210
share/locale/nb/LC_MESSAGES/gimp20.mo
4211
share/locale/nds/LC_MESSAGES/gimp20.mo
4212
share/locale/ne/LC_MESSAGES/gimp20-libgimp.mo
4213
share/locale/ne/LC_MESSAGES/gimp20-python.mo
4214
share/locale/ne/LC_MESSAGES/gimp20-script-fu.mo
4215
share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo
4216
share/locale/ne/LC_MESSAGES/gimp20-tips.mo
4217
share/locale/ne/LC_MESSAGES/gimp20.mo
4218
share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo
4219
share/locale/nl/LC_MESSAGES/gimp20-python.mo
4220
share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo
4221
share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo
4222
share/locale/nl/LC_MESSAGES/gimp20-tips.mo
4223
share/locale/nl/LC_MESSAGES/gimp20.mo
4224
share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo
4225
share/locale/nn/LC_MESSAGES/gimp20-python.mo
4226
share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo
4227
share/locale/nn/LC_MESSAGES/gimp20-std-plug-ins.mo
4228
share/locale/nn/LC_MESSAGES/gimp20-tips.mo
4229
share/locale/nn/LC_MESSAGES/gimp20.mo
4230
share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo
4231
share/locale/oc/LC_MESSAGES/gimp20-python.mo
4232
share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo
4233
share/locale/oc/LC_MESSAGES/gimp20-std-plug-ins.mo
4234
share/locale/oc/LC_MESSAGES/gimp20-tips.mo
4235
share/locale/oc/LC_MESSAGES/gimp20.mo
4236
share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo
4237
share/locale/pa/LC_MESSAGES/gimp20-python.mo
4238
share/locale/pa/LC_MESSAGES/gimp20-script-fu.mo
4239
share/locale/pa/LC_MESSAGES/gimp20-std-plug-ins.mo
4240
share/locale/pa/LC_MESSAGES/gimp20-tips.mo
4241
share/locale/pa/LC_MESSAGES/gimp20.mo
4242
share/locale/pl/LC_MESSAGES/gimp20-libgimp.mo
4243
share/locale/pl/LC_MESSAGES/gimp20-python.mo
4244
share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo
4245
share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.mo
4246
share/locale/pl/LC_MESSAGES/gimp20-tips.mo
4247
share/locale/pl/LC_MESSAGES/gimp20.mo
4248
share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo
4249
share/locale/pt/LC_MESSAGES/gimp20-python.mo
4250
share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo
4251
share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo
4252
share/locale/pt/LC_MESSAGES/gimp20-tips.mo
4253
share/locale/pt/LC_MESSAGES/gimp20.mo
4254
share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo
4255
share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo
4256
share/locale/pt_BR/LC_MESSAGES/gimp20-script-fu.mo
4257
share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo
4258
share/locale/pt_BR/LC_MESSAGES/gimp20-tips.mo
4259
share/locale/pt_BR/LC_MESSAGES/gimp20.mo
4260
share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo
4261
share/locale/ro/LC_MESSAGES/gimp20-python.mo
4262
share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo
4263
share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo
4264
share/locale/ro/LC_MESSAGES/gimp20-tips.mo
4265
share/locale/ro/LC_MESSAGES/gimp20.mo
4266
share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo
4267
share/locale/ru/LC_MESSAGES/gimp20-python.mo
4268
share/locale/ru/LC_MESSAGES/gimp20-script-fu.mo
4269
share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo
4270
share/locale/ru/LC_MESSAGES/gimp20-tips.mo
4271
share/locale/ru/LC_MESSAGES/gimp20.mo
4272
share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo
4273
share/locale/rw/LC_MESSAGES/gimp20-python.mo
4274
share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo
4275
share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo
4276
share/locale/rw/LC_MESSAGES/gimp20-tips.mo
4277
share/locale/rw/LC_MESSAGES/gimp20.mo
4278
share/locale/si/LC_MESSAGES/gimp20.mo
4279
share/locale/sk/LC_MESSAGES/gimp20-libgimp.mo
4280
share/locale/sk/LC_MESSAGES/gimp20-python.mo
4281
share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo
4282
share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo
4283
share/locale/sk/LC_MESSAGES/gimp20-tips.mo
4284
share/locale/sk/LC_MESSAGES/gimp20.mo
4285
share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo
4286
share/locale/sl/LC_MESSAGES/gimp20-python.mo
4287
share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo
4288
share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo
4289
share/locale/sl/LC_MESSAGES/gimp20-tips.mo
4290
share/locale/sl/LC_MESSAGES/gimp20.mo
4291
share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo
4292
share/locale/sr/LC_MESSAGES/gimp20-python.mo
4293
share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo
4294
share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo
4295
share/locale/sr/LC_MESSAGES/gimp20-tips.mo
4296
share/locale/sr/LC_MESSAGES/gimp20.mo
4297
share/locale/sr@latin/LC_MESSAGES/gimp20-libgimp.mo
4298
share/locale/sr@latin/LC_MESSAGES/gimp20-python.mo
4299
share/locale/sr@latin/LC_MESSAGES/gimp20-script-fu.mo
4300
share/locale/sr@latin/LC_MESSAGES/gimp20-std-plug-ins.mo
4301
share/locale/sr@latin/LC_MESSAGES/gimp20-tips.mo
4302
share/locale/sr@latin/LC_MESSAGES/gimp20.mo
4303
share/locale/sv/LC_MESSAGES/gimp20-libgimp.mo
4304
share/locale/sv/LC_MESSAGES/gimp20-python.mo
4305
share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo
4306
share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.mo
4307
share/locale/sv/LC_MESSAGES/gimp20-tips.mo
4308
share/locale/sv/LC_MESSAGES/gimp20.mo
4309
share/locale/ta/LC_MESSAGES/gimp20-libgimp.mo
4310
share/locale/ta/LC_MESSAGES/gimp20-python.mo
4311
share/locale/ta/LC_MESSAGES/gimp20-script-fu.mo
4312
share/locale/ta/LC_MESSAGES/gimp20-tips.mo
4313
share/locale/ta/LC_MESSAGES/gimp20.mo
4314
share/locale/te/LC_MESSAGES/gimp20-libgimp.mo
4315
share/locale/te/LC_MESSAGES/gimp20-python.mo
4316
share/locale/te/LC_MESSAGES/gimp20-script-fu.mo
4317
share/locale/te/LC_MESSAGES/gimp20.mo
4318
share/locale/th/LC_MESSAGES/gimp20.mo
4319
share/locale/tr/LC_MESSAGES/gimp20-libgimp.mo
4320
share/locale/tr/LC_MESSAGES/gimp20-python.mo
4321
share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo
4322
share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo
4323
share/locale/tr/LC_MESSAGES/gimp20-tips.mo
4324
share/locale/tr/LC_MESSAGES/gimp20.mo
4325
share/locale/tt/LC_MESSAGES/gimp20.mo
4326
share/locale/uk/LC_MESSAGES/gimp20-libgimp.mo
4327
share/locale/uk/LC_MESSAGES/gimp20-python.mo
4328
share/locale/uk/LC_MESSAGES/gimp20-script-fu.mo
4329
share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo
4330
share/locale/uk/LC_MESSAGES/gimp20-tips.mo
4331
share/locale/uk/LC_MESSAGES/gimp20.mo
4332
share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo
4333
share/locale/vi/LC_MESSAGES/gimp20-python.mo
4334
share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo
4335
share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo
4336
share/locale/vi/LC_MESSAGES/gimp20-tips.mo
4337
share/locale/vi/LC_MESSAGES/gimp20.mo
4338
share/locale/xh/LC_MESSAGES/gimp20-libgimp.mo
4339
share/locale/xh/LC_MESSAGES/gimp20-python.mo
4340
share/locale/xh/LC_MESSAGES/gimp20-script-fu.mo
4341
share/locale/xh/LC_MESSAGES/gimp20-std-plug-ins.mo
4342
share/locale/xh/LC_MESSAGES/gimp20.mo
4343
share/locale/yi/LC_MESSAGES/gimp20-libgimp.mo
4344
share/locale/yi/LC_MESSAGES/gimp20-script-fu.mo
4345
share/locale/yi/LC_MESSAGES/gimp20-std-plug-ins.mo
4346
share/locale/yi/LC_MESSAGES/gimp20.mo
4347
share/locale/zh_CN/LC_MESSAGES/gimp20-libgimp.mo
4348
share/locale/zh_CN/LC_MESSAGES/gimp20-python.mo
4349
share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo
4350
share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo
4351
share/locale/zh_CN/LC_MESSAGES/gimp20-tips.mo
4352
share/locale/zh_CN/LC_MESSAGES/gimp20.mo
4353
share/locale/zh_HK/LC_MESSAGES/gimp20-libgimp.mo
4354
share/locale/zh_HK/LC_MESSAGES/gimp20-python.mo
4355
share/locale/zh_HK/LC_MESSAGES/gimp20-script-fu.mo
4356
share/locale/zh_HK/LC_MESSAGES/gimp20-std-plug-ins.mo
4357
share/locale/zh_HK/LC_MESSAGES/gimp20-tips.mo
4358
share/locale/zh_HK/LC_MESSAGES/gimp20.mo
4359
share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo
4360
share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo
4361
share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo
4362
share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo
4363
share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo
4364
share/locale/zh_TW/LC_MESSAGES/gimp20.mo
4365
share/appdata/gimp-data-extras.metainfo.xml
4366
share/appdata/org.gimp.GIMP.appdata.xml
4367
@dir share/gimp/fonts
4368
@postexec /sbin/ldconfig -m /usr/local/lib
4369
@postunexec /sbin/ldconfig -R
(-)graphics/gimp-devel/Makefile (+28 lines)
Line 0 Link Here
1
# Created by: erich@FreeBSD.org
2
# $FreeBSD$
3
4
PORTNAME=	gimp-devel
5
DISTVERSION?=	2.10.0
6
PORTREVISION?=	0
7
PORTEPOCH?=	0
8
CATEGORIES=	graphics gnome
9
10
CONFLICTS=	gimp
11
12
MAINTAINER=	gnome@FreeBSD.org
13
COMMENT=	The "meta-port" for The Gimp (development version)
14
15
RUN_DEPENDS=	gimp-2.10:graphics/gimp-app-devel
16
17
USES+=	metaport
18
19
OPTIONS_DEFINE=	PRINT # HELP
20
OPTIONS_DEFAULT=PRINT # HELP
21
PRINT_DESC=	Gutenprint (gimp-print) plugin
22
#HELP_DESC=	Gimp-Help (50+MB distfile)
23
24
#HELP_RUN_DEPENDS+=	en-gimp-help-html>=0:misc/gimp-help-devel-en
25
PRINT_RUN_DEPENDS+=	${LOCALBASE}/libexec/gimp/2.2/plug-ins/gutenprint:print/gimp-gutenprint-devel
26
PRINT_RUN_DEPENDS+=	gutenprint>0:print/gutenprint
27
28
.include <bsd.port.mk>
(-)graphics/gimp-devel/distinfo (+1 lines)
Line 0 Link Here
1
TIMESTAMP = 1524540841
(-)graphics/gimp-devel/pkg-descr (+21 lines)
Line 0 Link Here
1
The GIMP is designed to provide an intuitive graphical interface to a
2
variety of image editing operations. Here is a list of the GIMP's
3
major features:
4
5
 Image editing
6
 -------------
7
8
   *  Selection tools including rectangle, ellipse, free, fuzzy, bezier
9
      and intelligent.
10
   *  Transformation tools including rotate, scale, shear and flip.
11
   *  Painting tools including bucket, brush, airbrush, clone, convolve,
12
      blend and text.
13
   *  Effects filters (such as blur, edge detect).
14
   *  Channel & color operations (such as add, composite, decompose).
15
   *  Plug-ins which allow for the easy addition of new file formats and
16
      new effect filters.
17
   *  Multiple undo/redo.
18
19
This is "The Gimp" meta-port, see ports/graphics/gimp-app for more details
20
21
WWW: https://www.gimp.org/
(-)graphics/gimp-devel/pkg-message (+3 lines)
Line 0 Link Here
1
Only the english gimp manual is supplied with this port. But other
2
translations are available. Please use "pkg search gimp-help" or check
3
the graphics/gimp-help meta port.
(-)graphics/libmypaint/Makefile (+44 lines)
Line 0 Link Here
1
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	libmypaint
5
PORTVERSION=	1.3.0
6
PORTREVISION=	0
7
CATEGORIES=	graphics
8
MASTER_SITES=	https://github.com/mypaint/libmypaint/releases/download/${PORTVERSION:S/^/v/}/
9
10
MAINTAINER=	vedge@hypertriton.com
11
COMMENT=	Library for making brushstrokes
12
CONFLICTS=	mypaint
13
14
LICENSE=	ISCL
15
LICENSE_FILE_ISCL=${WRKSRC}/COPYING
16
17
LIB_DEPENDS=	libjson-c.so:devel/json-c
18
19
#CFLAGS+=	${CFLAGS_${CHOSEN_COMPILER_TYPE}}
20
#CFLAGS_gcc=	-std=c99
21
MAKE_ARGS=	prefix=${PREFIX} \
22
		enable_profiling=False \
23
24
USES=		gettext gmake libtool localbase pkgconfig tar:xz
25
26
GNU_CONFIGURE=	yes
27
USE_LDCONFIG=	yes
28
29
OPTIONS_DEFINE=		GEGL OPENMP
30
OPTIONS_DEFAULT=	GEGL
31
OPTIONS_SUB=		yes
32
33
GEGL_DESC=		Graph based image processing framework support
34
GEGL_LIB_DEPENDS=	libgegl-0.3.so:graphics/gegl3
35
GEGL_MAKE_ARGS=		enable_gegl=True
36
37
OPENMP_USES=		compiler:openmp
38
OPENMP_USES_OFF=	compiler # XXX ports/199603
39
OPENMP_MAKE_ARGS_OFF=	enable_openmp=False
40
41
post-install:
42
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmypaint*.so
43
44
.include <bsd.port.mk>
(-)graphics/libmypaint/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1524556189
2
SHA256 (libmypaint-1.3.0.tar.xz) = 6a07d9d57fea60f68d218a953ce91b168975a003db24de6ac01ad69dcc94a671
3
SIZE (libmypaint-1.3.0.tar.xz) = 438160
(-)graphics/libmypaint/pkg-descr (+4 lines)
Line 0 Link Here
1
libmypaint (aka "brushlib") is a library for making brushtrokes. It
2
is used by MyPaint, gimp and other projects.
3
4
WWW: https://github.com/mypaint/libmypaint
(-)graphics/libmypaint/pkg-plist (+48 lines)
Line 0 Link Here
1
include/libmypaint/mypaint-brush-settings-gen.h
2
include/libmypaint/mypaint-brush-settings.h
3
include/libmypaint/mypaint-brush.h
4
include/libmypaint/mypaint-config.h
5
include/libmypaint/mypaint-fixed-tiled-surface.h
6
include/libmypaint/mypaint-glib-compat.h
7
include/libmypaint/mypaint-mapping.h
8
include/libmypaint/mypaint-rectangle.h
9
include/libmypaint/mypaint-surface.h
10
include/libmypaint/mypaint-tiled-surface.h
11
lib/girepository-1.0/MyPaint-1.3.typelib
12
lib/libmypaint-1.3.so.0.0.0
13
lib/libmypaint-1.3.so.0
14
lib/libmypaint.so
15
libdata/pkgconfig/libmypaint.pc
16
share/gir-1.0/MyPaint-1.3.gir
17
share/locale/ar/LC_MESSAGES/libmypaint.mo
18
share/locale/ca/LC_MESSAGES/libmypaint.mo
19
share/locale/cs/LC_MESSAGES/libmypaint.mo
20
share/locale/da/LC_MESSAGES/libmypaint.mo
21
share/locale/de/LC_MESSAGES/libmypaint.mo
22
share/locale/en_CA/LC_MESSAGES/libmypaint.mo
23
share/locale/en_GB/LC_MESSAGES/libmypaint.mo
24
share/locale/es/LC_MESSAGES/libmypaint.mo
25
share/locale/es_ES/LC_MESSAGES/libmypaint.mo
26
share/locale/fa/LC_MESSAGES/libmypaint.mo
27
share/locale/fi/LC_MESSAGES/libmypaint.mo
28
share/locale/fr/LC_MESSAGES/libmypaint.mo
29
share/locale/he/LC_MESSAGES/libmypaint.mo
30
share/locale/hu/LC_MESSAGES/libmypaint.mo
31
share/locale/id/LC_MESSAGES/libmypaint.mo
32
share/locale/it/LC_MESSAGES/libmypaint.mo
33
share/locale/ja/LC_MESSAGES/libmypaint.mo
34
share/locale/ko/LC_MESSAGES/libmypaint.mo
35
share/locale/nb/LC_MESSAGES/libmypaint.mo
36
share/locale/nn_NO/LC_MESSAGES/libmypaint.mo
37
share/locale/pl/LC_MESSAGES/libmypaint.mo
38
share/locale/pt_BR/LC_MESSAGES/libmypaint.mo
39
share/locale/ro/LC_MESSAGES/libmypaint.mo
40
share/locale/ru/LC_MESSAGES/libmypaint.mo
41
share/locale/sc/LC_MESSAGES/libmypaint.mo
42
share/locale/sk/LC_MESSAGES/libmypaint.mo
43
share/locale/sl/LC_MESSAGES/libmypaint.mo
44
share/locale/sv/LC_MESSAGES/libmypaint.mo
45
share/locale/tr/LC_MESSAGES/libmypaint.mo
46
share/locale/uk/LC_MESSAGES/libmypaint.mo
47
share/locale/zh_CN/LC_MESSAGES/libmypaint.mo
48
share/locale/zh_TW/LC_MESSAGES/libmypaint.mo
(-)graphics/mypaint-brushes/Makefile (+25 lines)
Line 0 Link Here
1
# Created by: Julien Nadeau <vedge@hypertriton.com>
2
# $FreeBSD$
3
4
PORTNAME=	mypaint-brushes
5
PORTVERSION=	1.3.0
6
PORTREVISION=	0
7
CATEGORIES=	graphics
8
MASTER_SITES=	https://github.com/jehan/mypaint-brushes/archive/${PORTVERSION:S/^/v/}/
9
10
MAINTAINER=	vedge@hypertriton.com
11
COMMENT=	Standard brush collection for libmypaint
12
13
LICENSE=	CC0-1.0
14
LICENSE_FILE_CC0-1.0=${WRKSRC}/COPYING
15
16
USES=		autoreconf desktop-file-utils gmake libtool localbase pkgconfig
17
18
GNU_CONFIGURE=	yes
19
USE_LDCONFIG=	yes
20
21
post-install:
22
	${INSTALL_DATA} ${STAGEDIR}${PREFIX}/share/pkgconfig/mypaint-brushes-1.0.pc \
23
		${STAGEDIR}${PREFIX}/libdata/pkgconfig
24
25
.include <bsd.port.mk>
(-)graphics/mypaint-brushes/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1524559808
2
SHA256 (mypaint-brushes-1.3.0.tar.gz) = 704bb6420e65085acfd7a61d6050e96b0395c5eab078433f11406c355f16b214
3
SIZE (mypaint-brushes-1.3.0.tar.gz) = 2447093
(-)graphics/mypaint-brushes/pkg-descr (+4 lines)
Line 0 Link Here
1
Standard brush collection for MyPaint and other software using
2
graphics/libmypaint.
3
4
WWW: https://github.com/jehan/mypaint-brushes
(-)graphics/mypaint-brushes/pkg-plist (+358 lines)
Line 0 Link Here
1
share/mypaint-data/1.0/brushes/classic/blend+paint.myb
2
share/mypaint-data/1.0/brushes/classic/blend+paint_prev.png
3
share/mypaint-data/1.0/brushes/classic/blending_knife.myb
4
share/mypaint-data/1.0/brushes/classic/blending_knife_prev.png
5
share/mypaint-data/1.0/brushes/classic/blur.myb
6
share/mypaint-data/1.0/brushes/classic/blur_prev.png
7
share/mypaint-data/1.0/brushes/classic/brush.myb
8
share/mypaint-data/1.0/brushes/classic/brush_prev.png
9
share/mypaint-data/1.0/brushes/classic/bulk.myb
10
share/mypaint-data/1.0/brushes/classic/bulk_prev.png
11
share/mypaint-data/1.0/brushes/classic/calligraphy.myb
12
share/mypaint-data/1.0/brushes/classic/calligraphy_prev.png
13
share/mypaint-data/1.0/brushes/classic/charcoal.myb
14
share/mypaint-data/1.0/brushes/classic/charcoal_prev.png
15
share/mypaint-data/1.0/brushes/classic/coarse_bulk_1.myb
16
share/mypaint-data/1.0/brushes/classic/coarse_bulk_1_prev.png
17
share/mypaint-data/1.0/brushes/classic/coarse_bulk_2.myb
18
share/mypaint-data/1.0/brushes/classic/coarse_bulk_2_prev.png
19
share/mypaint-data/1.0/brushes/classic/coarse_bulk_3.myb
20
share/mypaint-data/1.0/brushes/classic/coarse_bulk_3_prev.png
21
share/mypaint-data/1.0/brushes/classic/dry_brush.myb
22
share/mypaint-data/1.0/brushes/classic/dry_brush_prev.png
23
share/mypaint-data/1.0/brushes/classic/imp_blending.myb
24
share/mypaint-data/1.0/brushes/classic/imp_blending_prev.png
25
share/mypaint-data/1.0/brushes/classic/imp_details.myb
26
share/mypaint-data/1.0/brushes/classic/imp_details_prev.png
27
share/mypaint-data/1.0/brushes/classic/impressionism.myb
28
share/mypaint-data/1.0/brushes/classic/impressionism_prev.png
29
share/mypaint-data/1.0/brushes/classic/ink_blot.myb
30
share/mypaint-data/1.0/brushes/classic/ink_blot_prev.png
31
share/mypaint-data/1.0/brushes/classic/ink_eraser.myb
32
share/mypaint-data/1.0/brushes/classic/ink_eraser_prev.png
33
share/mypaint-data/1.0/brushes/classic/kabura.myb
34
share/mypaint-data/1.0/brushes/classic/kabura_prev.png
35
share/mypaint-data/1.0/brushes/classic/knife.myb
36
share/mypaint-data/1.0/brushes/classic/knife_prev.png
37
share/mypaint-data/1.0/brushes/classic/long_grass.myb
38
share/mypaint-data/1.0/brushes/classic/long_grass_prev.png
39
share/mypaint-data/1.0/brushes/classic/marker_fat.myb
40
share/mypaint-data/1.0/brushes/classic/marker_fat_prev.png
41
share/mypaint-data/1.0/brushes/classic/marker_small.myb
42
share/mypaint-data/1.0/brushes/classic/marker_small_prev.png
43
share/mypaint-data/1.0/brushes/classic/modelling.myb
44
share/mypaint-data/1.0/brushes/classic/modelling2.myb
45
share/mypaint-data/1.0/brushes/classic/modelling2_prev.png
46
share/mypaint-data/1.0/brushes/classic/modelling_prev.png
47
share/mypaint-data/1.0/brushes/classic/pen.myb
48
share/mypaint-data/1.0/brushes/classic/pen_prev.png
49
share/mypaint-data/1.0/brushes/classic/pencil.myb
50
share/mypaint-data/1.0/brushes/classic/pencil_prev.png
51
share/mypaint-data/1.0/brushes/classic/pointy_ink.myb
52
share/mypaint-data/1.0/brushes/classic/pointy_ink_prev.png
53
share/mypaint-data/1.0/brushes/classic/puantilism.myb
54
share/mypaint-data/1.0/brushes/classic/puantilism2.myb
55
share/mypaint-data/1.0/brushes/classic/puantilism2_prev.png
56
share/mypaint-data/1.0/brushes/classic/puantilism_prev.png
57
share/mypaint-data/1.0/brushes/classic/rounded.myb
58
share/mypaint-data/1.0/brushes/classic/rounded_prev.png
59
share/mypaint-data/1.0/brushes/classic/short_grass.myb
60
share/mypaint-data/1.0/brushes/classic/short_grass_prev.png
61
share/mypaint-data/1.0/brushes/classic/slow_ink.myb
62
share/mypaint-data/1.0/brushes/classic/slow_ink_prev.png
63
share/mypaint-data/1.0/brushes/classic/smudge+paint.myb
64
share/mypaint-data/1.0/brushes/classic/smudge+paint_prev.png
65
share/mypaint-data/1.0/brushes/classic/smudge.myb
66
share/mypaint-data/1.0/brushes/classic/smudge_prev.png
67
share/mypaint-data/1.0/brushes/classic/textured_ink.myb
68
share/mypaint-data/1.0/brushes/classic/textured_ink_prev.png
69
share/mypaint-data/1.0/brushes/classic/wet_knife.myb
70
share/mypaint-data/1.0/brushes/classic/wet_knife_prev.png
71
share/mypaint-data/1.0/brushes/deevad/2B_pencil.myb
72
share/mypaint-data/1.0/brushes/deevad/2B_pencil_prev.png
73
share/mypaint-data/1.0/brushes/deevad/4H_pencil.myb
74
share/mypaint-data/1.0/brushes/deevad/4H_pencil_prev.png
75
share/mypaint-data/1.0/brushes/deevad/airbrush.myb
76
share/mypaint-data/1.0/brushes/deevad/airbrush_prev.png
77
share/mypaint-data/1.0/brushes/deevad/ballpen.myb
78
share/mypaint-data/1.0/brushes/deevad/ballpen_prev.png
79
share/mypaint-data/1.0/brushes/deevad/basic_digital_brush.myb
80
share/mypaint-data/1.0/brushes/deevad/basic_digital_brush_prev.png
81
share/mypaint-data/1.0/brushes/deevad/basic_digital_brush_smudging.myb
82
share/mypaint-data/1.0/brushes/deevad/basic_digital_brush_smudging_prev.png
83
share/mypaint-data/1.0/brushes/deevad/basic_digital_knife.myb
84
share/mypaint-data/1.0/brushes/deevad/basic_digital_knife_prev.png
85
share/mypaint-data/1.0/brushes/deevad/basic_digital_knife_smudging.myb
86
share/mypaint-data/1.0/brushes/deevad/basic_digital_knife_smudging_prev.png
87
share/mypaint-data/1.0/brushes/deevad/blending.myb
88
share/mypaint-data/1.0/brushes/deevad/blending_prev.png
89
share/mypaint-data/1.0/brushes/deevad/brush.myb
90
share/mypaint-data/1.0/brushes/deevad/brush_prev.png
91
share/mypaint-data/1.0/brushes/deevad/chalk.myb
92
share/mypaint-data/1.0/brushes/deevad/chalk_prev.png
93
share/mypaint-data/1.0/brushes/deevad/detail_brush_large.myb
94
share/mypaint-data/1.0/brushes/deevad/detail_brush_large_glazing.myb
95
share/mypaint-data/1.0/brushes/deevad/detail_brush_large_glazing_prev.png
96
share/mypaint-data/1.0/brushes/deevad/detail_brush_large_prev.png
97
share/mypaint-data/1.0/brushes/deevad/detail_brush_thin.myb
98
share/mypaint-data/1.0/brushes/deevad/detail_brush_thin_glazing.myb
99
share/mypaint-data/1.0/brushes/deevad/detail_brush_thin_glazing_prev.png
100
share/mypaint-data/1.0/brushes/deevad/detail_brush_thin_prev.png
101
share/mypaint-data/1.0/brushes/deevad/fill.myb
102
share/mypaint-data/1.0/brushes/deevad/fill_prev.png
103
share/mypaint-data/1.0/brushes/deevad/grainy_blending.myb
104
share/mypaint-data/1.0/brushes/deevad/grainy_blending_prev.png
105
share/mypaint-data/1.0/brushes/deevad/kneaded_eraser.myb
106
share/mypaint-data/1.0/brushes/deevad/kneaded_eraser_large.myb
107
share/mypaint-data/1.0/brushes/deevad/kneaded_eraser_large_prev.png
108
share/mypaint-data/1.0/brushes/deevad/kneaded_eraser_prev.png
109
share/mypaint-data/1.0/brushes/deevad/large_hard_eraser.myb
110
share/mypaint-data/1.0/brushes/deevad/large_hard_eraser_prev.png
111
share/mypaint-data/1.0/brushes/deevad/large_watercolor_fringe.myb
112
share/mypaint-data/1.0/brushes/deevad/large_watercolor_fringe_prev.png
113
share/mypaint-data/1.0/brushes/deevad/liner.myb
114
share/mypaint-data/1.0/brushes/deevad/liner_prev.png
115
share/mypaint-data/1.0/brushes/deevad/only_water_fringe.myb
116
share/mypaint-data/1.0/brushes/deevad/only_water_fringe_prev.png
117
share/mypaint-data/1.0/brushes/deevad/pen-note.myb
118
share/mypaint-data/1.0/brushes/deevad/pen-note_prev.png
119
share/mypaint-data/1.0/brushes/deevad/pen.myb
120
share/mypaint-data/1.0/brushes/deevad/pen_prev.png
121
share/mypaint-data/1.0/brushes/deevad/readme.txt
122
share/mypaint-data/1.0/brushes/deevad/rigger_brush.myb
123
share/mypaint-data/1.0/brushes/deevad/rigger_brush_prev.png
124
share/mypaint-data/1.0/brushes/deevad/rigger_brush_thin.myb
125
share/mypaint-data/1.0/brushes/deevad/rigger_brush_thin_prev.png
126
share/mypaint-data/1.0/brushes/deevad/rough.myb
127
share/mypaint-data/1.0/brushes/deevad/rough_prev.png
128
share/mypaint-data/1.0/brushes/deevad/soft-dip-pen.myb
129
share/mypaint-data/1.0/brushes/deevad/soft-dip-pen_prev.png
130
share/mypaint-data/1.0/brushes/deevad/sponge_smudging.myb
131
share/mypaint-data/1.0/brushes/deevad/sponge_smudging_prev.png
132
share/mypaint-data/1.0/brushes/deevad/spray.myb
133
share/mypaint-data/1.0/brushes/deevad/spray2.myb
134
share/mypaint-data/1.0/brushes/deevad/spray2_prev.png
135
share/mypaint-data/1.0/brushes/deevad/spray_prev.png
136
share/mypaint-data/1.0/brushes/deevad/thin_hard_eraser.myb
137
share/mypaint-data/1.0/brushes/deevad/thin_hard_eraser_prev.png
138
share/mypaint-data/1.0/brushes/deevad/thin_watercolor.myb
139
share/mypaint-data/1.0/brushes/deevad/thin_watercolor_prev.png
140
share/mypaint-data/1.0/brushes/deevad/watercolor_expressive.myb
141
share/mypaint-data/1.0/brushes/deevad/watercolor_expressive_prev.png
142
share/mypaint-data/1.0/brushes/deevad/watercolor_glazing.myb
143
share/mypaint-data/1.0/brushes/deevad/watercolor_glazing_prev.png
144
share/mypaint-data/1.0/brushes/experimental/1pixel.myb
145
share/mypaint-data/1.0/brushes/experimental/1pixel_prev.png
146
share/mypaint-data/1.0/brushes/experimental/DNA_brush.myb
147
share/mypaint-data/1.0/brushes/experimental/DNA_brush_prev.png
148
share/mypaint-data/1.0/brushes/experimental/basic.myb
149
share/mypaint-data/1.0/brushes/experimental/basic_prev.png
150
share/mypaint-data/1.0/brushes/experimental/bubble.myb
151
share/mypaint-data/1.0/brushes/experimental/bubble_prev.png
152
share/mypaint-data/1.0/brushes/experimental/fur.myb
153
share/mypaint-data/1.0/brushes/experimental/fur_prev.png
154
share/mypaint-data/1.0/brushes/experimental/glow.myb
155
share/mypaint-data/1.0/brushes/experimental/glow_prev.png
156
share/mypaint-data/1.0/brushes/experimental/hard_blot.myb
157
share/mypaint-data/1.0/brushes/experimental/hard_blot_prev.png
158
share/mypaint-data/1.0/brushes/experimental/hard_sting.myb
159
share/mypaint-data/1.0/brushes/experimental/hard_sting_prev.png
160
share/mypaint-data/1.0/brushes/experimental/irregular_ink.myb
161
share/mypaint-data/1.0/brushes/experimental/irregular_ink_prev.png
162
share/mypaint-data/1.0/brushes/experimental/leaves.myb
163
share/mypaint-data/1.0/brushes/experimental/leaves_prev.png
164
share/mypaint-data/1.0/brushes/experimental/particules_3.myb
165
share/mypaint-data/1.0/brushes/experimental/particules_3_prev.png
166
share/mypaint-data/1.0/brushes/experimental/particules_eraser.myb
167
share/mypaint-data/1.0/brushes/experimental/particules_eraser_prev.png
168
share/mypaint-data/1.0/brushes/experimental/pick_and_drag.myb
169
share/mypaint-data/1.0/brushes/experimental/pick_and_drag_prev.png
170
share/mypaint-data/1.0/brushes/experimental/pixel_hardink.myb
171
share/mypaint-data/1.0/brushes/experimental/pixel_hardink_prev.png
172
share/mypaint-data/1.0/brushes/experimental/pixelblocking.myb
173
share/mypaint-data/1.0/brushes/experimental/pixelblocking_prev.png
174
share/mypaint-data/1.0/brushes/experimental/sewing.myb
175
share/mypaint-data/1.0/brushes/experimental/sewing_prev.png
176
share/mypaint-data/1.0/brushes/experimental/small_blot.myb
177
share/mypaint-data/1.0/brushes/experimental/small_blot_prev.png
178
share/mypaint-data/1.0/brushes/experimental/soft.myb
179
share/mypaint-data/1.0/brushes/experimental/soft_irregular.myb
180
share/mypaint-data/1.0/brushes/experimental/soft_irregular_prev.png
181
share/mypaint-data/1.0/brushes/experimental/soft_prev.png
182
share/mypaint-data/1.0/brushes/experimental/spaced-blot.myb
183
share/mypaint-data/1.0/brushes/experimental/spaced-blot_prev.png
184
share/mypaint-data/1.0/brushes/experimental/speed_blot.myb
185
share/mypaint-data/1.0/brushes/experimental/speed_blot_prev.png
186
share/mypaint-data/1.0/brushes/experimental/subtle_pencil.myb
187
share/mypaint-data/1.0/brushes/experimental/subtle_pencil_prev.png
188
share/mypaint-data/1.0/brushes/experimental/track.myb
189
share/mypaint-data/1.0/brushes/experimental/track_prev.png
190
share/mypaint-data/1.0/brushes/kaerhon_v1/Airbrush_a.myb
191
share/mypaint-data/1.0/brushes/kaerhon_v1/Airbrush_a_prev.png
192
share/mypaint-data/1.0/brushes/kaerhon_v1/Dirty_Transparent_sk.myb
193
share/mypaint-data/1.0/brushes/kaerhon_v1/Dirty_Transparent_sk_prev.png
194
share/mypaint-data/1.0/brushes/kaerhon_v1/ReadMe.txt
195
share/mypaint-data/1.0/brushes/kaerhon_v1/Sketcher2_sk.myb
196
share/mypaint-data/1.0/brushes/kaerhon_v1/Sketcher2_sk_prev.png
197
share/mypaint-data/1.0/brushes/kaerhon_v1/Smear_sm.myb
198
share/mypaint-data/1.0/brushes/kaerhon_v1/Smear_sm_prev.png
199
share/mypaint-data/1.0/brushes/kaerhon_v1/airbruch_press_a.myb
200
share/mypaint-data/1.0/brushes/kaerhon_v1/airbruch_press_a_prev.png
201
share/mypaint-data/1.0/brushes/kaerhon_v1/airsmudge_a.myb
202
share/mypaint-data/1.0/brushes/kaerhon_v1/airsmudge_a_prev.png
203
share/mypaint-data/1.0/brushes/kaerhon_v1/airsmudgeultimate_sk.myb
204
share/mypaint-data/1.0/brushes/kaerhon_v1/airsmudgeultimate_sk_prev.png
205
share/mypaint-data/1.0/brushes/kaerhon_v1/classic_sk.myb
206
share/mypaint-data/1.0/brushes/kaerhon_v1/classic_sk_prev.png
207
share/mypaint-data/1.0/brushes/kaerhon_v1/classicroundblock_static_c.myb
208
share/mypaint-data/1.0/brushes/kaerhon_v1/classicroundblock_static_c_prev.png
209
share/mypaint-data/1.0/brushes/kaerhon_v1/extreme_round_l.myb
210
share/mypaint-data/1.0/brushes/kaerhon_v1/extreme_round_l_prev.png
211
share/mypaint-data/1.0/brushes/kaerhon_v1/fill_c.myb
212
share/mypaint-data/1.0/brushes/kaerhon_v1/fill_c_prev.png
213
share/mypaint-data/1.0/brushes/kaerhon_v1/flat_bar_l.myb
214
share/mypaint-data/1.0/brushes/kaerhon_v1/flat_bar_l_prev.png
215
share/mypaint-data/1.0/brushes/kaerhon_v1/ink-slowline_s.myb
216
share/mypaint-data/1.0/brushes/kaerhon_v1/ink-slowline_s_prev.png
217
share/mypaint-data/1.0/brushes/kaerhon_v1/ink_slow_s.myb
218
share/mypaint-data/1.0/brushes/kaerhon_v1/ink_slow_s_prev.png
219
share/mypaint-data/1.0/brushes/kaerhon_v1/inkster_l.myb
220
share/mypaint-data/1.0/brushes/kaerhon_v1/inkster_l_prev.png
221
share/mypaint-data/1.0/brushes/kaerhon_v1/paint_barrr_sm.myb
222
share/mypaint-data/1.0/brushes/kaerhon_v1/paint_barrr_sm_prev.png
223
share/mypaint-data/1.0/brushes/kaerhon_v1/paint_radius_2_sm.myb
224
share/mypaint-data/1.0/brushes/kaerhon_v1/paint_radius_2_sm_prev.png
225
share/mypaint-data/1.0/brushes/kaerhon_v1/paint_sm.myb
226
share/mypaint-data/1.0/brushes/kaerhon_v1/paint_sm_prev.png
227
share/mypaint-data/1.0/brushes/kaerhon_v1/smudge_ink(0.7)_sm.myb
228
share/mypaint-data/1.0/brushes/kaerhon_v1/smudge_ink(0.7)_sm_prev.png
229
share/mypaint-data/1.0/brushes/kaerhon_v1/wet_paint_sm.myb
230
share/mypaint-data/1.0/brushes/kaerhon_v1/wet_paint_sm_prev.png
231
share/mypaint-data/1.0/brushes/order.conf
232
share/mypaint-data/1.0/brushes/ramon/100%_Opaque.myb
233
share/mypaint-data/1.0/brushes/ramon/100%_Opaque_prev.png
234
share/mypaint-data/1.0/brushes/ramon/2B_pencil.myb
235
share/mypaint-data/1.0/brushes/ramon/2B_pencil_prev.png
236
share/mypaint-data/1.0/brushes/ramon/B-pencil.myb
237
share/mypaint-data/1.0/brushes/ramon/B-pencil_prev.png
238
share/mypaint-data/1.0/brushes/ramon/Beamlight.myb
239
share/mypaint-data/1.0/brushes/ramon/Beamlight_prev.png
240
share/mypaint-data/1.0/brushes/ramon/BigAirbrush.myb
241
share/mypaint-data/1.0/brushes/ramon/BigAirbrush_prev.png
242
share/mypaint-data/1.0/brushes/ramon/Blur_Fast.myb
243
share/mypaint-data/1.0/brushes/ramon/Blur_Fast_prev.png
244
share/mypaint-data/1.0/brushes/ramon/Classic_Paint.myb
245
share/mypaint-data/1.0/brushes/ramon/Classic_Paint_prev.png
246
share/mypaint-data/1.0/brushes/ramon/Clouds.myb
247
share/mypaint-data/1.0/brushes/ramon/Clouds_prev.png
248
share/mypaint-data/1.0/brushes/ramon/Delayed_.myb
249
share/mypaint-data/1.0/brushes/ramon/Delayed__prev.png
250
share/mypaint-data/1.0/brushes/ramon/Dirty_Noise.myb
251
share/mypaint-data/1.0/brushes/ramon/Dirty_Noise_prev.png
252
share/mypaint-data/1.0/brushes/ramon/Glow_Airbrush.myb
253
share/mypaint-data/1.0/brushes/ramon/Glow_Airbrush_prev.png
254
share/mypaint-data/1.0/brushes/ramon/Grain.myb
255
share/mypaint-data/1.0/brushes/ramon/Grain_prev.png
256
share/mypaint-data/1.0/brushes/ramon/Hard_Eraser.myb
257
share/mypaint-data/1.0/brushes/ramon/Hard_Eraser_prev.png
258
share/mypaint-data/1.0/brushes/ramon/Knife.myb
259
share/mypaint-data/1.0/brushes/ramon/Knife_prev.png
260
share/mypaint-data/1.0/brushes/ramon/Marker.myb
261
share/mypaint-data/1.0/brushes/ramon/Marker_prev.png
262
share/mypaint-data/1.0/brushes/ramon/P._Shade.myb
263
share/mypaint-data/1.0/brushes/ramon/P._Shade_prev.png
264
share/mypaint-data/1.0/brushes/ramon/Pastel_1.myb
265
share/mypaint-data/1.0/brushes/ramon/Pastel_1_prev.png
266
share/mypaint-data/1.0/brushes/ramon/Pen.myb
267
share/mypaint-data/1.0/brushes/ramon/PenBrush.myb
268
share/mypaint-data/1.0/brushes/ramon/PenBrush_prev.png
269
share/mypaint-data/1.0/brushes/ramon/Pen_prev.png
270
share/mypaint-data/1.0/brushes/ramon/RS_blendOP.myb
271
share/mypaint-data/1.0/brushes/ramon/RS_blendOP_prev.png
272
share/mypaint-data/1.0/brushes/ramon/Round.myb
273
share/mypaint-data/1.0/brushes/ramon/Round_Bl.myb
274
share/mypaint-data/1.0/brushes/ramon/Round_Bl_prev.png
275
share/mypaint-data/1.0/brushes/ramon/Round_prev.png
276
share/mypaint-data/1.0/brushes/ramon/Sketch_1.myb
277
share/mypaint-data/1.0/brushes/ramon/Sketch_1_prev.png
278
share/mypaint-data/1.0/brushes/ramon/Smear.myb
279
share/mypaint-data/1.0/brushes/ramon/Smear_prev.png
280
share/mypaint-data/1.0/brushes/ramon/Soft_Eraser.myb
281
share/mypaint-data/1.0/brushes/ramon/Soft_Eraser_prev.png
282
share/mypaint-data/1.0/brushes/ramon/Thin_Pen.myb
283
share/mypaint-data/1.0/brushes/ramon/Thin_Pen_prev.png
284
share/mypaint-data/1.0/brushes/ramon/Wet_Direction.myb
285
share/mypaint-data/1.0/brushes/ramon/Wet_Direction_prev.png
286
share/mypaint-data/1.0/brushes/ramon/wet_round.myb
287
share/mypaint-data/1.0/brushes/ramon/wet_round_prev.png
288
share/mypaint-data/1.0/brushes/tanda/acrylic-03-only-water.myb
289
share/mypaint-data/1.0/brushes/tanda/acrylic-03-only-water_prev.png
290
share/mypaint-data/1.0/brushes/tanda/acrylic-03-paint.myb
291
share/mypaint-data/1.0/brushes/tanda/acrylic-03-paint_prev.png
292
share/mypaint-data/1.0/brushes/tanda/acrylic-03-with-water.myb
293
share/mypaint-data/1.0/brushes/tanda/acrylic-03-with-water_prev.png
294
share/mypaint-data/1.0/brushes/tanda/acrylic-04-only-water.myb
295
share/mypaint-data/1.0/brushes/tanda/acrylic-04-only-water_prev.png
296
share/mypaint-data/1.0/brushes/tanda/acrylic-04-paint.myb
297
share/mypaint-data/1.0/brushes/tanda/acrylic-04-paint_prev.png
298
share/mypaint-data/1.0/brushes/tanda/acrylic-04-with-water.myb
299
share/mypaint-data/1.0/brushes/tanda/acrylic-04-with-water_prev.png
300
share/mypaint-data/1.0/brushes/tanda/acrylic-05-only-water.myb
301
share/mypaint-data/1.0/brushes/tanda/acrylic-05-only-water_prev.png
302
share/mypaint-data/1.0/brushes/tanda/acrylic-05-paint.myb
303
share/mypaint-data/1.0/brushes/tanda/acrylic-05-paint_prev.png
304
share/mypaint-data/1.0/brushes/tanda/acrylic-05-with-water.myb
305
share/mypaint-data/1.0/brushes/tanda/acrylic-05-with-water_prev.png
306
share/mypaint-data/1.0/brushes/tanda/charcoal-01.myb
307
share/mypaint-data/1.0/brushes/tanda/charcoal-01_prev.png
308
share/mypaint-data/1.0/brushes/tanda/charcoal-03.myb
309
share/mypaint-data/1.0/brushes/tanda/charcoal-03_prev.png
310
share/mypaint-data/1.0/brushes/tanda/charcoal-04.myb
311
share/mypaint-data/1.0/brushes/tanda/charcoal-04_prev.png
312
share/mypaint-data/1.0/brushes/tanda/charcoal-blur1.myb
313
share/mypaint-data/1.0/brushes/tanda/charcoal-blur1_prev.png
314
share/mypaint-data/1.0/brushes/tanda/marker-01.myb
315
share/mypaint-data/1.0/brushes/tanda/marker-01_prev.png
316
share/mypaint-data/1.0/brushes/tanda/marker-05.myb
317
share/mypaint-data/1.0/brushes/tanda/marker-05_prev.png
318
share/mypaint-data/1.0/brushes/tanda/oil-01-clean.myb
319
share/mypaint-data/1.0/brushes/tanda/oil-01-clean_prev.png
320
share/mypaint-data/1.0/brushes/tanda/oil-01-paint.myb
321
share/mypaint-data/1.0/brushes/tanda/oil-01-paint_prev.png
322
share/mypaint-data/1.0/brushes/tanda/oil-03-clean.myb
323
share/mypaint-data/1.0/brushes/tanda/oil-03-clean_prev.png
324
share/mypaint-data/1.0/brushes/tanda/oil-03-paint.myb
325
share/mypaint-data/1.0/brushes/tanda/oil-03-paint_prev.png
326
share/mypaint-data/1.0/brushes/tanda/oil-06-clean.myb
327
share/mypaint-data/1.0/brushes/tanda/oil-06-clean_prev.png
328
share/mypaint-data/1.0/brushes/tanda/oil-06-paint.myb
329
share/mypaint-data/1.0/brushes/tanda/oil-06-paint_prev.png
330
share/mypaint-data/1.0/brushes/tanda/oil-mop.myb
331
share/mypaint-data/1.0/brushes/tanda/oil-mop_prev.png
332
share/mypaint-data/1.0/brushes/tanda/pencil-2b.myb
333
share/mypaint-data/1.0/brushes/tanda/pencil-2b_prev.png
334
share/mypaint-data/1.0/brushes/tanda/pencil-8b.myb
335
share/mypaint-data/1.0/brushes/tanda/pencil-8b_prev.png
336
share/mypaint-data/1.0/brushes/tanda/splatter-02.myb
337
share/mypaint-data/1.0/brushes/tanda/splatter-02_prev.png
338
share/mypaint-data/1.0/brushes/tanda/splatter-04.myb
339
share/mypaint-data/1.0/brushes/tanda/splatter-04_prev.png
340
share/mypaint-data/1.0/brushes/tanda/texture-03.myb
341
share/mypaint-data/1.0/brushes/tanda/texture-03_prev.png
342
share/mypaint-data/1.0/brushes/tanda/texture-06.myb
343
share/mypaint-data/1.0/brushes/tanda/texture-06_prev.png
344
share/mypaint-data/1.0/brushes/tanda/texture-12.myb
345
share/mypaint-data/1.0/brushes/tanda/texture-12_prev.png
346
share/mypaint-data/1.0/brushes/tanda/water-01.myb
347
share/mypaint-data/1.0/brushes/tanda/water-01_prev.png
348
share/mypaint-data/1.0/brushes/tanda/water-02.myb
349
share/mypaint-data/1.0/brushes/tanda/water-02_prev.png
350
share/mypaint-data/1.0/brushes/tanda/water-05.myb
351
share/mypaint-data/1.0/brushes/tanda/water-05_prev.png
352
share/mypaint-data/1.0/brushes/tanda/water-06.myb
353
share/mypaint-data/1.0/brushes/tanda/water-06_prev.png
354
share/mypaint-data/1.0/brushes/tanda/watercolor-02-paint.myb
355
share/mypaint-data/1.0/brushes/tanda/watercolor-02-paint_prev.png
356
share/mypaint-data/1.0/brushes/tanda/watercolor-02-water.myb
357
share/mypaint-data/1.0/brushes/tanda/watercolor-02-water_prev.png
358
libdata/pkgconfig/mypaint-brushes-1.0.pc
(-)print/gimp-gutenprint-devel/Makefile (+16 lines)
Line 0 Link Here
1
# Created by: Michael Johnson <ahze@FreeBSD.org>
2
# $FreeBSD$
3
#    $MCom: ports/print/gimp-gutenprint/Makefile,v 1.5 2007/10/24 21:05:40 ahze Exp $
4
5
PORTREVISION=	0
6
PKGNAMEPREFIX=	gimp-
7
8
MAINTAINER=	cmt@burggraben.net
9
COMMENT=	Gimp print plug-in (development version)
10
11
MASTERDIR=	${.CURDIR}/../../print/gutenprint
12
13
GUT_SLAVE=	gimp-devel
14
PLIST=		${.CURDIR}/pkg-plist
15
16
.include "${MASTERDIR}/Makefile"
(-)print/gimp-gutenprint-devel/pkg-plist (+5 lines)
Line 0 Link Here
1
lib/libgutenprintui2.so
2
lib/libgutenprintui2.so.1
3
lib/libgutenprintui2.so.1.0.0
4
libdata/pkgconfig/gutenprintui2.pc
5
libexec/gimp/2.2/plug-ins/gutenprint
(-)print/gutenprint/Makefile (-1 / +10 lines)
Lines 39-44 Link Here
39
BUILD_WRKSRC=	${WRKSRC}/src/gimp2
39
BUILD_WRKSRC=	${WRKSRC}/src/gimp2
40
INSTALL_WRKSRC=	${WRKSRC}/src/gimp2
40
INSTALL_WRKSRC=	${WRKSRC}/src/gimp2
41
USE_GNOME+=	gtk20
41
USE_GNOME+=	gtk20
42
.elif ${GUT_SLAVE} == "gimp-devel"
43
USE_GNOME+=	cairo gdkpixbuf2
44
LIB_DEPENDS+=	libfontconfig.so:x11-fonts/fontconfig \
45
		libfreetype.so:print/freetype2 \
46
		libgimp-2.0.so:graphics/gimp-app-devel
47
CONFIGURE_ARGS+=--enable-libgutenprintui2 --with-gimp2
48
BUILD_WRKSRC=	${WRKSRC}/src/gimp2
49
INSTALL_WRKSRC=	${WRKSRC}/src/gimp2
50
USE_GNOME+=	gtk20
42
.endif
51
.endif
43
.endif
52
.endif
44
53
Lines 49-55 Link Here
49
		${WRKSRC}/src/gimp2/Makefile.in
58
		${WRKSRC}/src/gimp2/Makefile.in
50
59
51
post-install:
60
post-install:
52
.if defined(GUT_SLAVE) && ${GUT_SLAVE} == "gimp"
61
.if defined(GUT_SLAVE) && (${GUT_SLAVE} == "gimp" || ${GUT_SLAVE} == "gimp-devel")
53
	@(cd ${WRKSRC}/src/gutenprintui2 && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \
62
	@(cd ${WRKSRC}/src/gutenprintui2 && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \
54
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
63
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
55
.endif
64
.endif
(-)x11/babl/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	babl
4
PORTNAME=	babl
5
PORTVERSION=	0.1.44
5
PORTVERSION=	0.1.46
6
CATEGORIES=	x11
6
CATEGORIES=	x11
7
MASTER_SITES=	GIMP
7
MASTER_SITES=	GIMP
8
8
(-)x11/babl/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1522409966
1
TIMESTAMP = 1524541471
2
SHA256 (babl-0.1.44.tar.bz2) = f463fda0dec534c442234d1c374ea5d19abe0da942e11c9c5092dcc6b30cde7d
2
SHA256 (babl-0.1.46.tar.bz2) = bbc2403b1badf8014ec42200e65d7b1f46e68e627c33c6242fa31ac5dc869e5b
3
SIZE (babl-0.1.44.tar.bz2) = 653829
3
SIZE (babl-0.1.46.tar.bz2) = 653887
(-)x11/babl/pkg-plist (-3 / +5 lines)
Lines 3-16 Link Here
3
include/babl-0.1/babl/babl-types.h
3
include/babl-0.1/babl/babl-types.h
4
include/babl-0.1/babl/babl-version.h
4
include/babl-0.1/babl/babl-version.h
5
include/babl-0.1/babl/babl.h
5
include/babl-0.1/babl/babl.h
6
lib/babl-0.1/16bit.so
7
lib/babl-0.1/CIE.so
6
lib/babl-0.1/CIE.so
8
lib/babl-0.1/HCY.so
7
lib/babl-0.1/HCY.so
9
lib/babl-0.1/HSL.so
8
lib/babl-0.1/HSL.so
10
lib/babl-0.1/HSV.so
9
lib/babl-0.1/HSV.so
11
lib/babl-0.1/cairo.so
10
lib/babl-0.1/cairo.so
11
lib/babl-0.1/double.so
12
lib/babl-0.1/fast-float.so
12
lib/babl-0.1/fast-float.so
13
lib/babl-0.1/float-half.so
14
lib/babl-0.1/float.so
13
lib/babl-0.1/float.so
15
lib/babl-0.1/gegl-fixups.so
14
lib/babl-0.1/gegl-fixups.so
16
lib/babl-0.1/gggl-lies.so
15
lib/babl-0.1/gggl-lies.so
Lines 19-24 Link Here
19
lib/babl-0.1/gggl.so
18
lib/babl-0.1/gggl.so
20
lib/babl-0.1/gimp-8bit.so
19
lib/babl-0.1/gimp-8bit.so
21
lib/babl-0.1/grey.so
20
lib/babl-0.1/grey.so
21
lib/babl-0.1/half.so
22
lib/babl-0.1/naive-CMYK.so
22
lib/babl-0.1/naive-CMYK.so
23
lib/babl-0.1/simple.so
23
lib/babl-0.1/simple.so
24
lib/babl-0.1/sse-half.so
24
lib/babl-0.1/sse-half.so
Lines 27-34 Link Here
27
lib/babl-0.1/sse2-int8.so
27
lib/babl-0.1/sse2-int8.so
28
lib/babl-0.1/sse4-int8.so
28
lib/babl-0.1/sse4-int8.so
29
lib/babl-0.1/two-table.so
29
lib/babl-0.1/two-table.so
30
lib/babl-0.1/u16.so
31
lib/babl-0.1/u32.so
30
lib/babl-0.1/ycbcr.so
32
lib/babl-0.1/ycbcr.so
31
lib/libbabl-0.1.so
33
lib/libbabl-0.1.so
32
lib/libbabl-0.1.so.0
34
lib/libbabl-0.1.so.0
33
lib/libbabl-0.1.so.0.143.1
35
lib/libbabl-0.1.so.0.145.1
34
libdata/pkgconfig/babl.pc
36
libdata/pkgconfig/babl.pc
(-)x11-fonts/fontconfig/Makefile (-6 / +10 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	fontconfig
4
PORTNAME=	fontconfig
5
PORTVERSION=	2.12.1
5
PORTVERSION=	2.13.0
6
PORTREVISION?=	3
6
PORTREVISION?=	0
7
PORTEPOCH?=	1
7
PORTEPOCH?=	0
8
CATEGORIES=	x11-fonts
8
CATEGORIES=	x11-fonts
9
MASTER_SITES=	http://www.freedesktop.org/software/fontconfig/release/
9
MASTER_SITES=	http://www.freedesktop.org/software/fontconfig/release/
10
10
Lines 14-25 Link Here
14
LICENSE=	MIT
14
LICENSE=	MIT
15
LICENSE_FILE=	${WRKSRC}/COPYING
15
LICENSE_FILE=	${WRKSRC}/COPYING
16
16
17
USES=		tar:bzip2
17
USES=		gperf tar:bzip2
18
18
19
.if !defined(REFERENCE_PORT)
19
.if !defined(REFERENCE_PORT)
20
20
21
LIB_DEPENDS=	libfreetype.so:print/freetype2 \
21
LIB_DEPENDS=	libfreetype.so:print/freetype2 \
22
		libexpat.so:textproc/expat2
22
		libexpat.so:textproc/expat2 \
23
		libuuid.so:misc/e2fsprogs-libuuid
23
24
24
USES+=		cpe gmake libtool pathfix pkgconfig
25
USES+=		cpe gmake libtool pathfix pkgconfig
25
CPE_VENDOR=	fontconfig_project
26
CPE_VENDOR=	fontconfig_project
Lines 49-55 Link Here
49
PLIST_SUB=	PREFERRED_HINTING=${PREFERRED_HINTING}
50
PLIST_SUB=	PREFERRED_HINTING=${PREFERRED_HINTING}
50
PORTDOCS=	fontconfig-user.html fontconfig-user.pdf fontconfig-user.txt
51
PORTDOCS=	fontconfig-user.html fontconfig-user.pdf fontconfig-user.txt
51
52
52
OPTIONS_DEFINE=	DOCS NO_BITMAPS
53
OPTIONS_DEFINE=	DOCS NLS NO_BITMAPS
53
OPTIONS_DEFAULT=HINTING_SLIGHT
54
OPTIONS_DEFAULT=HINTING_SLIGHT
54
OPTIONS_SUB=	yes
55
OPTIONS_SUB=	yes
55
56
Lines 63-68 Link Here
63
HINTING_${opt}_VARS=	PREFERRED_HINTING=${opt:tl}
64
HINTING_${opt}_VARS=	PREFERRED_HINTING=${opt:tl}
64
.endfor
65
.endfor
65
66
67
NLS_CONFIGURE_ENABLE=	nls
68
NLS_USES=		gettext
69
66
post-patch-NO_BITMAPS-on:
70
post-patch-NO_BITMAPS-on:
67
	@${REINPLACE_CMD} -i '.bitmaps.bak' -e \
71
	@${REINPLACE_CMD} -i '.bitmaps.bak' -e \
68
		'/^CONF_LINKS =/s|$$|\${.newline}	70-no-bitmaps.conf \\|' \
72
		'/^CONF_LINKS =/s|$$|\${.newline}	70-no-bitmaps.conf \\|' \
(-)x11-fonts/fontconfig/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1470376167
1
TIMESTAMP = 1524548163
2
SHA256 (fontconfig-2.12.1.tar.bz2) = b449a3e10c47e1d1c7a6ec6e2016cca73d3bd68fbbd4f0ae5cc6b573f7d6c7f3
2
SHA256 (fontconfig-2.13.0.tar.bz2) = 91dde8492155b7f34bb95079e79be92f1df353fcc682c19be90762fd3e12eeb9
3
SIZE (fontconfig-2.12.1.tar.bz2) = 1608901
3
SIZE (fontconfig-2.13.0.tar.bz2) = 1700500
(-)x11-fonts/fontconfig/files/patch-src_fclang.c (-5 / +6 lines)
Lines 1-6 Link Here
1
--- src/fclang.c.orig	2014-01-20 08:14:20 UTC
1
--- src/fclang.c.orig	2018-04-24 02:37:01.324201000 -0300
2
+++ src/fclang.c
2
+++ src/fclang.c	2018-04-24 02:39:30.814504000 -0300
3
@@ -183,6 +183,7 @@ FcLangNormalize (const FcChar8 *lang)
3
@@ -183,6 +183,7 @@
4
 {
4
 {
5
     FcChar8 *result = NULL, *s, *orig;
5
     FcChar8 *result = NULL, *s, *orig;
6
     char *territory, *encoding, *modifier;
6
     char *territory, *encoding, *modifier;
Lines 8-14 Link Here
8
     size_t llen, tlen = 0, mlen = 0;
8
     size_t llen, tlen = 0, mlen = 0;
9
 
9
 
10
     if (!lang || !*lang)
10
     if (!lang || !*lang)
11
@@ -241,26 +242,32 @@ FcLangNormalize (const FcChar8 *lang)
11
@@ -246,27 +247,33 @@
12
 	    modifier = encoding;
12
 	    modifier = encoding;
13
 	}
13
 	}
14
     }
14
     }
Lines 39-45 Link Here
39
+		 s, lang);
39
+		 s, lang);
40
 	goto bail0;
40
 	goto bail0;
41
     }
41
     }
42
     if (territory && (tlen < 2 || tlen > 3))
42
     if (territory && (tlen < 2 || tlen > 3) &&
43
 	!(territory[0] == 'z' && tlen < 5))
43
     {
44
     {
44
-	fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid region tag\n",
45
-	fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid region tag\n",
45
-		 lang);
46
-		 lang);
(-)x11-fonts/fontconfig/pkg-plist (-3 / +7 lines)
Lines 24-35 Link Here
24
etc/fonts/conf.avail/20-unhint-small-vera.conf
24
etc/fonts/conf.avail/20-unhint-small-vera.conf
25
etc/fonts/conf.avail/25-unhint-nonlatin.conf
25
etc/fonts/conf.avail/25-unhint-nonlatin.conf
26
etc/fonts/conf.avail/30-metric-aliases.conf
26
etc/fonts/conf.avail/30-metric-aliases.conf
27
etc/fonts/conf.avail/30-urw-aliases.conf
28
etc/fonts/conf.avail/40-nonlatin.conf
27
etc/fonts/conf.avail/40-nonlatin.conf
28
etc/fonts/conf.avail/45-generic.conf
29
etc/fonts/conf.avail/45-latin.conf
29
etc/fonts/conf.avail/45-latin.conf
30
etc/fonts/conf.avail/49-sansserif.conf
30
etc/fonts/conf.avail/49-sansserif.conf
31
etc/fonts/conf.avail/50-user.conf
31
etc/fonts/conf.avail/50-user.conf
32
etc/fonts/conf.avail/51-local.conf
32
etc/fonts/conf.avail/51-local.conf
33
etc/fonts/conf.avail/60-generic.conf
33
etc/fonts/conf.avail/60-latin.conf
34
etc/fonts/conf.avail/60-latin.conf
34
etc/fonts/conf.avail/65-fonts-persian.conf
35
etc/fonts/conf.avail/65-fonts-persian.conf
35
etc/fonts/conf.avail/65-khmer.conf
36
etc/fonts/conf.avail/65-khmer.conf
Lines 43-54 Link Here
43
etc/fonts/conf.d/10-scale-bitmap-fonts.conf
44
etc/fonts/conf.d/10-scale-bitmap-fonts.conf
44
etc/fonts/conf.d/20-unhint-small-vera.conf
45
etc/fonts/conf.d/20-unhint-small-vera.conf
45
etc/fonts/conf.d/30-metric-aliases.conf
46
etc/fonts/conf.d/30-metric-aliases.conf
46
etc/fonts/conf.d/30-urw-aliases.conf
47
etc/fonts/conf.d/40-nonlatin.conf
47
etc/fonts/conf.d/40-nonlatin.conf
48
etc/fonts/conf.d/45-generic.conf
48
etc/fonts/conf.d/45-latin.conf
49
etc/fonts/conf.d/45-latin.conf
49
etc/fonts/conf.d/49-sansserif.conf
50
etc/fonts/conf.d/49-sansserif.conf
50
etc/fonts/conf.d/50-user.conf
51
etc/fonts/conf.d/50-user.conf
51
etc/fonts/conf.d/51-local.conf
52
etc/fonts/conf.d/51-local.conf
53
etc/fonts/conf.d/60-generic.conf
52
etc/fonts/conf.d/60-latin.conf
54
etc/fonts/conf.d/60-latin.conf
53
etc/fonts/conf.d/65-fonts-persian.conf
55
etc/fonts/conf.d/65-fonts-persian.conf
54
etc/fonts/conf.d/65-nonlatin.conf
56
etc/fonts/conf.d/65-nonlatin.conf
Lines 65-71 Link Here
65
lib/libfontconfig.a
67
lib/libfontconfig.a
66
lib/libfontconfig.so
68
lib/libfontconfig.so
67
lib/libfontconfig.so.1
69
lib/libfontconfig.so.1
68
lib/libfontconfig.so.1.9.2
70
lib/libfontconfig.so.1.11.1
69
libdata/pkgconfig/fontconfig.pc
71
libdata/pkgconfig/fontconfig.pc
70
man/man1/fc-cache.1.gz
72
man/man1/fc-cache.1.gz
71
man/man1/fc-cat.1.gz
73
man/man1/fc-cat.1.gz
Lines 76-79 Link Here
76
man/man1/fc-scan.1.gz
78
man/man1/fc-scan.1.gz
77
man/man1/fc-validate.1.gz
79
man/man1/fc-validate.1.gz
78
man/man5/fonts-conf.5.gz
80
man/man5/fonts-conf.5.gz
81
share/gettext/its/fontconfig.its
82
share/gettext/its/fontconfig.loc
79
@dir /var/db/fontconfig
83
@dir /var/db/fontconfig

Return to bug 227769