View | Details | Raw Unified | Return to bug 175223
Collapse All | Expand All

(-)mypaint/Makefile (-6 / +8 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	mypaint
8
PORTNAME=	mypaint
9
PORTVERSION=	1.0.0
9
PORTVERSION=	1.1.0
10
PORTREVISION=	1
11
CATEGORIES=	graphics
10
CATEGORIES=	graphics
12
MASTER_SITES=	http://download.gna.org/mypaint/ \
11
MASTER_SITES=	http://download.gna.org/mypaint/ \
13
		http://mirror.amdmi3.ru/distfiles/
12
		http://mirror.amdmi3.ru/distfiles/
Lines 16-22 Link Here
16
COMMENT=	Fast painting/scribbling program
15
COMMENT=	Fast painting/scribbling program
17
16
18
RUN_DEPENDS=	${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy \
17
RUN_DEPENDS=	${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy \
18
		${PYTHON_SITELIBDIR}/cairo:${PORTSDIR}/graphics/py-cairo \
19
		${PYTHON_PKGNAMEPREFIX}protobuf>0:${PORTSDIR}/devel/py-protobuf
19
		${PYTHON_PKGNAMEPREFIX}protobuf>0:${PORTSDIR}/devel/py-protobuf
20
LIB_DEPENDS=	json:${PORTSDIR}/devel/json-c \
21
		lcms2:${PORTSDIR}/graphics/lcms2
20
BUILD_DEPENDS:=	${RUN_DEPENDS} \
22
BUILD_DEPENDS:=	${RUN_DEPENDS} \
21
		swig:${PORTSDIR}/devel/swig13 \
23
		swig:${PORTSDIR}/devel/swig13 \
22
		protoc:${PORTSDIR}/devel/protobuf
24
		protoc:${PORTSDIR}/devel/protobuf
Lines 31-39 Link Here
31
33
32
SUB_FILES=	pkg-install
34
SUB_FILES=	pkg-install
33
35
34
post-install:
36
post-patch:
35
# scons won't install icons if ${PREFIX}/share/icons already exists
37
	${REINPLACE_CMD} -e 's,<malloc.h>,<stdlib.h>,' \
36
	cd ${WRKSRC}/desktop && ${COPYTREE_SHARE} 'icons' ${PREFIX}/share
38
		${WRKSRC}/brushlib/operationqueue.c \
37
	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
39
		${WRKSRC}/brushlib/fifo.c
38
40
39
.include <bsd.port.mk>
41
.include <bsd.port.mk>
(-)mypaint/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (mypaint-1.0.0.tar.bz2) = ced440ec0307e29bfe4f612604fe27ec9bfaea3f4f9c8019ffaa50ef12dc7131
1
SHA256 (mypaint-1.1.0.tar.bz2) = 780d57e50dd90afd586873bc5120261930ea4c309d4d0958020916932122e838
2
SIZE (mypaint-1.0.0.tar.bz2) = 36748957
2
SIZE (mypaint-1.1.0.tar.bz2) = 37416388
(-)mypaint/files/patch-SConstruct (-14 / +18 lines)
Lines 1-20 Link Here
1
--- SConstruct.orig	2011-11-23 00:27:03.000000000 +0400
1
--- SConstruct.orig	2012-12-31 19:03:38.000000000 +0200
2
+++ SConstruct	2011-11-24 18:10:25.000000000 +0400
2
+++ SConstruct	2013-01-11 20:45:33.000000000 +0200
3
@@ -30,7 +30,7 @@
3
@@ -39,7 +39,7 @@
4
 opts.Add(PathVariable('prefix', 'autotools-style installation prefix', default_prefix, validator=PathVariable.PathIsDirCreate))
4
 
5
 tools = ['default', 'textfile']
5
 
6
 
6
 opts.Add(BoolVariable('debug', 'enable HEAVY_DEBUG and disable optimizations', False))
7
-env = Environment(ENV=os.environ, options=opts, tools=tools)
7
-env = Environment(ENV=os.environ, options=opts)
8
+env = Environment(ENV=os.environ, options=opts, tools=tools, **dict((k, v.split()) for k, v in ARGUMENTS.iteritems()))
8
+env = Environment(ENV=os.environ, options=opts, **dict((k, v.split()) for k, v in ARGUMENTS.iteritems()))
9
 print('building for %r (use scons python_binary=xxx to change)' % env['python_binary'])
10
 print('using %r (use scons python_config=xxx to change)' % env['python_config'])
9
 if sys.platform == "win32":
11
 if sys.platform == "win32":
10
     # remove this mingw if trying VisualStudio
12
@@ -47,9 +47,9 @@
11
     env = Environment(tools=['mingw'], ENV=os.environ, options=opts)
13
     env = Environment(tools=tools + ['mingw'], ENV=os.environ, options=opts)
12
@@ -39,7 +39,7 @@
14
 opts.Update(env)
13
 env.ParseConfig('pkg-config --cflags --libs glib-2.0')
14
 env.ParseConfig('pkg-config --cflags --libs libpng')
15
 
15
 
16
-env.Append(CXXFLAGS=' -Wall -Wno-sign-compare -Wno-write-strings')
16
-env.Append(CXXFLAGS=' -Wall -Wno-sign-compare -Wno-write-strings')
17
-env.Append(CCFLAGS='-Wall')
18
-env.Append(CFLAGS='-std=c99')
17
+env.Append(CXXFLAGS=['-Wall', '-Wno-sign-compare', '-Wno-write-strings'])
19
+env.Append(CXXFLAGS=['-Wall', '-Wno-sign-compare', '-Wno-write-strings'])
20
+env.Append(CCFLAGS=['-Wall'])
21
+env.Append(CFLAGS=['-std=c99'])
18
 
22
 
19
 # Get the numpy include path (for numpy/arrayobject.h).
23
 # Define strdup() in string.h under glibc >= 2.10 (POSIX.1-2008)
20
 numpy_path = numpy.get_include()
24
 env.Append(CFLAGS='-D_POSIX_C_SOURCE=200809L')
(-)mypaint/files/patch-brushlib-tests-SConscript (+11 lines)
Line 0 Link Here
1
--- brushlib/tests/SConscript.orig	2013-01-11 22:01:11.000000000 +0200
2
+++ brushlib/tests/SConscript	2013-01-11 22:01:13.000000000 +0200
3
@@ -13,7 +13,7 @@
4
 tests_sources = [fn for fn in os.listdir("./") if is_test(fn) and is_csource(fn)]
5
 testlib_sources = [fn for fn in os.listdir("./") if not is_test(fn) and is_csource(fn)]
6
 
7
-testlib_env.Append(LIBS=['mypaint'])
8
+testlib_env.Append(LIBS=['intl', 'mypaint'])
9
 testlib_env.Append(CPPPATH=['../'], LIBPATH=['../..'])
10
 
11
 if testlib_env['enable_gperftools']:
(-)mypaint/pkg-plist (-80 / +375 lines)
Lines 1-106 Link Here
1
bin/mypaint
1
bin/mypaint
2
include/libmypaint/glib/mypaint-brush.h
3
include/libmypaint/mypaint-brush-settings-gen.h
4
include/libmypaint/mypaint-brush-settings.h
5
include/libmypaint/mypaint-brush.h
6
include/libmypaint/mypaint-config.h
7
include/libmypaint/mypaint-fixed-tiled-surface.h
8
include/libmypaint/mypaint-glib-compat.h
9
include/libmypaint/mypaint-surface.h
10
include/libmypaint/mypaint-tiled-surface.h
11
lib/libmypaint.a
2
lib/mypaint/_mypaintlib.so
12
lib/mypaint/_mypaintlib.so
13
lib/pkgconfig/libmypaint.pc
3
share/applications/mypaint.desktop
14
share/applications/mypaint.desktop
4
share/icons/hicolor/16x16/actions/brush-blend-mode-eraser.png
15
share/icons/hicolor/16x16/actions/brush-blend-mode-eraser.png
5
share/icons/hicolor/16x16/actions/brush-blend-mode-normal.png
16
share/icons/hicolor/16x16/actions/brush-blend-mode-normal.png
6
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-alpha-lock.png
17
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-alpha-lock.png
18
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-colorize.png
7
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-eraser.png
19
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-eraser.png
8
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-normal.png
20
share/icons/hicolor/16x16/actions/mypaint-brush-blend-mode-normal.png
9
share/icons/hicolor/16x16/actions/mypaint-brush-blend-modes.png
21
share/icons/hicolor/16x16/actions/mypaint-brush-blend-modes.png
10
share/icons/hicolor/16x16/actions/mypaint-brush-mods-active.png
22
share/icons/hicolor/16x16/actions/mypaint-brush-mods-active.png
11
share/icons/hicolor/16x16/actions/mypaint-brush-mods-inactive.png
23
share/icons/hicolor/16x16/actions/mypaint-brush-mods-inactive.png
24
share/icons/hicolor/16x16/actions/mypaint-frame.png
25
share/icons/hicolor/16x16/actions/mypaint-layer-duplicate.png
26
share/icons/hicolor/16x16/actions/mypaint-line-mode-ellipse.png
27
share/icons/hicolor/16x16/actions/mypaint-line-mode-freehand.png
28
share/icons/hicolor/16x16/actions/mypaint-line-mode-sequence.png
29
share/icons/hicolor/16x16/actions/mypaint-line-mode-straight.png
30
share/icons/hicolor/16x16/actions/mypaint-line-mode.png
31
share/icons/hicolor/16x16/actions/mypaint-move.png
32
share/icons/hicolor/16x16/actions/mypaint-symmetry.png
12
share/icons/hicolor/16x16/actions/mypaint-tool-brush.png
33
share/icons/hicolor/16x16/actions/mypaint-tool-brush.png
34
share/icons/hicolor/16x16/actions/mypaint-tool-color-rgb.png
13
share/icons/hicolor/16x16/actions/mypaint-tool-color-triangle.png
35
share/icons/hicolor/16x16/actions/mypaint-tool-color-triangle.png
36
share/icons/hicolor/16x16/actions/mypaint-tool-component-sliders.png
37
share/icons/hicolor/16x16/actions/mypaint-tool-hcywheel.png
38
share/icons/hicolor/16x16/actions/mypaint-tool-hsvcube.png
39
share/icons/hicolor/16x16/actions/mypaint-tool-hsvwheel.png
14
share/icons/hicolor/16x16/actions/mypaint-tool-hue-wheel.png
40
share/icons/hicolor/16x16/actions/mypaint-tool-hue-wheel.png
15
share/icons/hicolor/16x16/actions/mypaint-tool-layers.png
41
share/icons/hicolor/16x16/actions/mypaint-tool-layers.png
42
share/icons/hicolor/16x16/actions/mypaint-tool-move-layer.png
43
share/icons/hicolor/16x16/actions/mypaint-tool-paint-color.png
16
share/icons/hicolor/16x16/actions/mypaint-tool-scratchpad.png
44
share/icons/hicolor/16x16/actions/mypaint-tool-scratchpad.png
45
share/icons/hicolor/16x16/actions/mypaint-view-100.png
46
share/icons/hicolor/16x16/actions/mypaint-view-fit.png
47
share/icons/hicolor/16x16/actions/mypaint-view-mirror-horizontal.png
48
share/icons/hicolor/16x16/actions/mypaint-view-mirror-vertical.png
49
share/icons/hicolor/16x16/actions/mypaint-view-pan.png
50
share/icons/hicolor/16x16/actions/mypaint-view-rotate-anticlockwise.png
51
share/icons/hicolor/16x16/actions/mypaint-view-rotate-clockwise.png
52
share/icons/hicolor/16x16/actions/mypaint-view-rotate.png
53
share/icons/hicolor/16x16/actions/mypaint-view-zoom-less.png
54
share/icons/hicolor/16x16/actions/mypaint-view-zoom-more.png
55
share/icons/hicolor/16x16/actions/mypaint-view-zoom.png
17
share/icons/hicolor/16x16/apps/mypaint.png
56
share/icons/hicolor/16x16/apps/mypaint.png
18
share/icons/hicolor/22x22/actions/brush-blend-mode-eraser.png
57
share/icons/hicolor/22x22/actions/brush-blend-mode-eraser.png
19
share/icons/hicolor/22x22/actions/brush-blend-mode-normal.png
58
share/icons/hicolor/22x22/actions/brush-blend-mode-normal.png
20
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-alpha-lock.png
59
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-alpha-lock.png
60
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-colorize.png
21
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-eraser.png
61
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-eraser.png
22
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-normal.png
62
share/icons/hicolor/22x22/actions/mypaint-brush-blend-mode-normal.png
23
share/icons/hicolor/22x22/actions/mypaint-brush-blend-modes.png
63
share/icons/hicolor/22x22/actions/mypaint-brush-blend-modes.png
24
share/icons/hicolor/22x22/actions/mypaint-brush-mods-active.png
64
share/icons/hicolor/22x22/actions/mypaint-brush-mods-active.png
25
share/icons/hicolor/22x22/actions/mypaint-brush-mods-inactive.png
65
share/icons/hicolor/22x22/actions/mypaint-brush-mods-inactive.png
66
share/icons/hicolor/22x22/actions/mypaint-frame.png
67
share/icons/hicolor/22x22/actions/mypaint-line-mode-ellipse.png
68
share/icons/hicolor/22x22/actions/mypaint-line-mode-freehand.png
69
share/icons/hicolor/22x22/actions/mypaint-line-mode-sequence.png
70
share/icons/hicolor/22x22/actions/mypaint-line-mode-straight.png
71
share/icons/hicolor/22x22/actions/mypaint-line-mode.png
72
share/icons/hicolor/22x22/actions/mypaint-move.png
73
share/icons/hicolor/22x22/actions/mypaint-symmetry.png
26
share/icons/hicolor/22x22/actions/mypaint-tool-brush.png
74
share/icons/hicolor/22x22/actions/mypaint-tool-brush.png
75
share/icons/hicolor/22x22/actions/mypaint-tool-color-rgb.png
27
share/icons/hicolor/22x22/actions/mypaint-tool-color-triangle.png
76
share/icons/hicolor/22x22/actions/mypaint-tool-color-triangle.png
77
share/icons/hicolor/22x22/actions/mypaint-tool-component-sliders.png
78
share/icons/hicolor/22x22/actions/mypaint-tool-hcywheel.png
79
share/icons/hicolor/22x22/actions/mypaint-tool-hsvcube.png
80
share/icons/hicolor/22x22/actions/mypaint-tool-hsvwheel.png
28
share/icons/hicolor/22x22/actions/mypaint-tool-hue-wheel.png
81
share/icons/hicolor/22x22/actions/mypaint-tool-hue-wheel.png
29
share/icons/hicolor/22x22/actions/mypaint-tool-layers.png
82
share/icons/hicolor/22x22/actions/mypaint-tool-layers.png
83
share/icons/hicolor/22x22/actions/mypaint-tool-move-layer.png
84
share/icons/hicolor/22x22/actions/mypaint-tool-paint-color.png
30
share/icons/hicolor/22x22/actions/mypaint-tool-scratchpad.png
85
share/icons/hicolor/22x22/actions/mypaint-tool-scratchpad.png
86
share/icons/hicolor/22x22/actions/mypaint-view-100.png
87
share/icons/hicolor/22x22/actions/mypaint-view-fit.png
88
share/icons/hicolor/22x22/actions/mypaint-view-mirror-horizontal.png
89
share/icons/hicolor/22x22/actions/mypaint-view-mirror-vertical.png
90
share/icons/hicolor/22x22/actions/mypaint-view-pan.png
91
share/icons/hicolor/22x22/actions/mypaint-view-rotate-anticlockwise.png
92
share/icons/hicolor/22x22/actions/mypaint-view-rotate-clockwise.png
93
share/icons/hicolor/22x22/actions/mypaint-view-rotate.png
94
share/icons/hicolor/22x22/actions/mypaint-view-zoom-less.png
95
share/icons/hicolor/22x22/actions/mypaint-view-zoom-more.png
96
share/icons/hicolor/22x22/actions/mypaint-view-zoom.png
31
share/icons/hicolor/22x22/apps/mypaint.png
97
share/icons/hicolor/22x22/apps/mypaint.png
32
share/icons/hicolor/24x24/actions/brush-blend-mode-eraser.png
98
share/icons/hicolor/24x24/actions/brush-blend-mode-eraser.png
33
share/icons/hicolor/24x24/actions/brush-blend-mode-normal.png
99
share/icons/hicolor/24x24/actions/brush-blend-mode-normal.png
34
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-alpha-lock.png
100
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-alpha-lock.png
101
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-colorize.png
35
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-eraser.png
102
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-eraser.png
36
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-normal.png
103
share/icons/hicolor/24x24/actions/mypaint-brush-blend-mode-normal.png
37
share/icons/hicolor/24x24/actions/mypaint-brush-blend-modes.png
104
share/icons/hicolor/24x24/actions/mypaint-brush-blend-modes.png
38
share/icons/hicolor/24x24/actions/mypaint-brush-mods-active.png
105
share/icons/hicolor/24x24/actions/mypaint-brush-mods-active.png
39
share/icons/hicolor/24x24/actions/mypaint-brush-mods-inactive.png
106
share/icons/hicolor/24x24/actions/mypaint-brush-mods-inactive.png
107
share/icons/hicolor/24x24/actions/mypaint-frame.png
108
share/icons/hicolor/24x24/actions/mypaint-line-mode-ellipse.png
109
share/icons/hicolor/24x24/actions/mypaint-line-mode-freehand.png
110
share/icons/hicolor/24x24/actions/mypaint-line-mode-sequence.png
111
share/icons/hicolor/24x24/actions/mypaint-line-mode-straight.png
112
share/icons/hicolor/24x24/actions/mypaint-line-mode.png
113
share/icons/hicolor/24x24/actions/mypaint-move.png
114
share/icons/hicolor/24x24/actions/mypaint-symmetry.png
40
share/icons/hicolor/24x24/actions/mypaint-tool-brush.png
115
share/icons/hicolor/24x24/actions/mypaint-tool-brush.png
116
share/icons/hicolor/24x24/actions/mypaint-tool-color-rgb.png
41
share/icons/hicolor/24x24/actions/mypaint-tool-color-triangle.png
117
share/icons/hicolor/24x24/actions/mypaint-tool-color-triangle.png
118
share/icons/hicolor/24x24/actions/mypaint-tool-component-sliders.png
119
share/icons/hicolor/24x24/actions/mypaint-tool-hcywheel.png
120
share/icons/hicolor/24x24/actions/mypaint-tool-hsvcube.png
121
share/icons/hicolor/24x24/actions/mypaint-tool-hsvwheel.png
42
share/icons/hicolor/24x24/actions/mypaint-tool-hue-wheel.png
122
share/icons/hicolor/24x24/actions/mypaint-tool-hue-wheel.png
43
share/icons/hicolor/24x24/actions/mypaint-tool-layers.png
123
share/icons/hicolor/24x24/actions/mypaint-tool-layers.png
124
share/icons/hicolor/24x24/actions/mypaint-tool-move-layer.png
125
share/icons/hicolor/24x24/actions/mypaint-tool-paint-color.png
44
share/icons/hicolor/24x24/actions/mypaint-tool-scratchpad.png
126
share/icons/hicolor/24x24/actions/mypaint-tool-scratchpad.png
127
share/icons/hicolor/24x24/actions/mypaint-view-100.png
128
share/icons/hicolor/24x24/actions/mypaint-view-fit.png
129
share/icons/hicolor/24x24/actions/mypaint-view-mirror-horizontal.png
130
share/icons/hicolor/24x24/actions/mypaint-view-mirror-vertical.png
131
share/icons/hicolor/24x24/actions/mypaint-view-pan.png
132
share/icons/hicolor/24x24/actions/mypaint-view-rotate-anticlockwise.png
133
share/icons/hicolor/24x24/actions/mypaint-view-rotate-clockwise.png
134
share/icons/hicolor/24x24/actions/mypaint-view-rotate.png
135
share/icons/hicolor/24x24/actions/mypaint-view-zoom-less.png
136
share/icons/hicolor/24x24/actions/mypaint-view-zoom-more.png
137
share/icons/hicolor/24x24/actions/mypaint-view-zoom.png
45
share/icons/hicolor/24x24/apps/mypaint.png
138
share/icons/hicolor/24x24/apps/mypaint.png
46
share/icons/hicolor/32x32/actions/brush-blend-mode-eraser.png
139
share/icons/hicolor/32x32/actions/brush-blend-mode-eraser.png
47
share/icons/hicolor/32x32/actions/brush-blend-mode-normal.png
140
share/icons/hicolor/32x32/actions/brush-blend-mode-normal.png
48
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-alpha-lock.png
141
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-alpha-lock.png
142
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-colorize.png
49
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-eraser.png
143
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-eraser.png
50
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-normal.png
144
share/icons/hicolor/32x32/actions/mypaint-brush-blend-mode-normal.png
51
share/icons/hicolor/32x32/actions/mypaint-brush-blend-modes.png
145
share/icons/hicolor/32x32/actions/mypaint-brush-blend-modes.png
52
share/icons/hicolor/32x32/actions/mypaint-brush-mods-active.png
146
share/icons/hicolor/32x32/actions/mypaint-brush-mods-active.png
53
share/icons/hicolor/32x32/actions/mypaint-brush-mods-inactive.png
147
share/icons/hicolor/32x32/actions/mypaint-brush-mods-inactive.png
148
share/icons/hicolor/32x32/actions/mypaint-frame.png
149
share/icons/hicolor/32x32/actions/mypaint-line-mode-ellipse.png
150
share/icons/hicolor/32x32/actions/mypaint-line-mode-freehand.png
151
share/icons/hicolor/32x32/actions/mypaint-line-mode-sequence.png
152
share/icons/hicolor/32x32/actions/mypaint-line-mode-straight.png
153
share/icons/hicolor/32x32/actions/mypaint-line-mode.png
154
share/icons/hicolor/32x32/actions/mypaint-move.png
155
share/icons/hicolor/32x32/actions/mypaint-symmetry.png
54
share/icons/hicolor/32x32/actions/mypaint-tool-brush.png
156
share/icons/hicolor/32x32/actions/mypaint-tool-brush.png
157
share/icons/hicolor/32x32/actions/mypaint-tool-color-rgb.png
55
share/icons/hicolor/32x32/actions/mypaint-tool-color-triangle.png
158
share/icons/hicolor/32x32/actions/mypaint-tool-color-triangle.png
159
share/icons/hicolor/32x32/actions/mypaint-tool-component-sliders.png
160
share/icons/hicolor/32x32/actions/mypaint-tool-hcywheel.png
161
share/icons/hicolor/32x32/actions/mypaint-tool-hsvcube.png
162
share/icons/hicolor/32x32/actions/mypaint-tool-hsvwheel.png
56
share/icons/hicolor/32x32/actions/mypaint-tool-hue-wheel.png
163
share/icons/hicolor/32x32/actions/mypaint-tool-hue-wheel.png
57
share/icons/hicolor/32x32/actions/mypaint-tool-layers.png
164
share/icons/hicolor/32x32/actions/mypaint-tool-layers.png
165
share/icons/hicolor/32x32/actions/mypaint-tool-move-layer.png
166
share/icons/hicolor/32x32/actions/mypaint-tool-paint-color.png
58
share/icons/hicolor/32x32/actions/mypaint-tool-scratchpad.png
167
share/icons/hicolor/32x32/actions/mypaint-tool-scratchpad.png
168
share/icons/hicolor/32x32/actions/mypaint-view-100.png
169
share/icons/hicolor/32x32/actions/mypaint-view-fit.png
170
share/icons/hicolor/32x32/actions/mypaint-view-mirror-horizontal.png
171
share/icons/hicolor/32x32/actions/mypaint-view-mirror-vertical.png
172
share/icons/hicolor/32x32/actions/mypaint-view-pan.png
173
share/icons/hicolor/32x32/actions/mypaint-view-rotate-anticlockwise.png
174
share/icons/hicolor/32x32/actions/mypaint-view-rotate-clockwise.png
175
share/icons/hicolor/32x32/actions/mypaint-view-rotate.png
176
share/icons/hicolor/32x32/actions/mypaint-view-zoom-less.png
177
share/icons/hicolor/32x32/actions/mypaint-view-zoom-more.png
178
share/icons/hicolor/32x32/actions/mypaint-view-zoom.png
59
share/icons/hicolor/32x32/apps/mypaint.png
179
share/icons/hicolor/32x32/apps/mypaint.png
60
share/icons/hicolor/48x48/actions/brush-blend-mode-normal.png
180
share/icons/hicolor/48x48/actions/brush-blend-mode-normal.png
61
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-alpha-lock.png
181
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-alpha-lock.png
182
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-colorize.png
62
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-eraser.png
183
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-eraser.png
63
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-normal.png
184
share/icons/hicolor/48x48/actions/mypaint-brush-blend-mode-normal.png
64
share/icons/hicolor/48x48/actions/mypaint-brush-blend-modes.png
185
share/icons/hicolor/48x48/actions/mypaint-brush-blend-modes.png
65
share/icons/hicolor/48x48/actions/mypaint-brush-mods-active.png
186
share/icons/hicolor/48x48/actions/mypaint-brush-mods-active.png
66
share/icons/hicolor/48x48/actions/mypaint-brush-mods-inactive.png
187
share/icons/hicolor/48x48/actions/mypaint-brush-mods-inactive.png
188
share/icons/hicolor/48x48/actions/mypaint-frame.png
189
share/icons/hicolor/48x48/actions/mypaint-line-mode-ellipse.png
190
share/icons/hicolor/48x48/actions/mypaint-line-mode-freehand.png
191
share/icons/hicolor/48x48/actions/mypaint-line-mode-sequence.png
192
share/icons/hicolor/48x48/actions/mypaint-line-mode-straight.png
193
share/icons/hicolor/48x48/actions/mypaint-line-mode.png
194
share/icons/hicolor/48x48/actions/mypaint-move.png
195
share/icons/hicolor/48x48/actions/mypaint-symmetry.png
67
share/icons/hicolor/48x48/actions/mypaint-tool-brush.png
196
share/icons/hicolor/48x48/actions/mypaint-tool-brush.png
197
share/icons/hicolor/48x48/actions/mypaint-tool-color-rgb.png
68
share/icons/hicolor/48x48/actions/mypaint-tool-color-triangle.png
198
share/icons/hicolor/48x48/actions/mypaint-tool-color-triangle.png
199
share/icons/hicolor/48x48/actions/mypaint-tool-component-sliders.png
200
share/icons/hicolor/48x48/actions/mypaint-tool-hcywheel.png
201
share/icons/hicolor/48x48/actions/mypaint-tool-hsvcube.png
202
share/icons/hicolor/48x48/actions/mypaint-tool-hsvwheel.png
69
share/icons/hicolor/48x48/actions/mypaint-tool-hue-wheel.png
203
share/icons/hicolor/48x48/actions/mypaint-tool-hue-wheel.png
70
share/icons/hicolor/48x48/actions/mypaint-tool-layers.png
204
share/icons/hicolor/48x48/actions/mypaint-tool-layers.png
205
share/icons/hicolor/48x48/actions/mypaint-tool-move-layer.png
206
share/icons/hicolor/48x48/actions/mypaint-tool-paint-color.png
71
share/icons/hicolor/48x48/actions/mypaint-tool-scratchpad.png
207
share/icons/hicolor/48x48/actions/mypaint-tool-scratchpad.png
208
share/icons/hicolor/48x48/actions/mypaint-view-100.png
209
share/icons/hicolor/48x48/actions/mypaint-view-fit.png
210
share/icons/hicolor/48x48/actions/mypaint-view-mirror-horizontal.png
211
share/icons/hicolor/48x48/actions/mypaint-view-mirror-vertical.png
212
share/icons/hicolor/48x48/actions/mypaint-view-pan.png
213
share/icons/hicolor/48x48/actions/mypaint-view-rotate-anticlockwise.png
214
share/icons/hicolor/48x48/actions/mypaint-view-rotate-clockwise.png
215
share/icons/hicolor/48x48/actions/mypaint-view-rotate.png
216
share/icons/hicolor/48x48/actions/mypaint-view-zoom-less.png
217
share/icons/hicolor/48x48/actions/mypaint-view-zoom-more.png
218
share/icons/hicolor/48x48/actions/mypaint-view-zoom.png
72
share/icons/hicolor/48x48/apps/mypaint.png
219
share/icons/hicolor/48x48/apps/mypaint.png
73
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-alpha-lock.svg
220
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-alpha-lock.svg
221
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-colorize.svg
74
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-eraser.svg
222
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-eraser.svg
75
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-normal.svg
223
share/icons/hicolor/scalable/actions/mypaint-brush-blend-mode-normal.svg
76
share/icons/hicolor/scalable/actions/mypaint-brush-blend-modes.svg
224
share/icons/hicolor/scalable/actions/mypaint-brush-blend-modes.svg
77
share/icons/hicolor/scalable/actions/mypaint-brush-mods-active.svg
225
share/icons/hicolor/scalable/actions/mypaint-brush-mods-active.svg
78
share/icons/hicolor/scalable/actions/mypaint-brush-mods-inactive.svg
226
share/icons/hicolor/scalable/actions/mypaint-brush-mods-inactive.svg
227
share/icons/hicolor/scalable/actions/mypaint-frame.svg
228
share/icons/hicolor/scalable/actions/mypaint-line-mode-ellipse.svg
229
share/icons/hicolor/scalable/actions/mypaint-line-mode-freehand.svg
230
share/icons/hicolor/scalable/actions/mypaint-line-mode-sequence.svg
231
share/icons/hicolor/scalable/actions/mypaint-line-mode-straight.svg
232
share/icons/hicolor/scalable/actions/mypaint-line-mode.svg
233
share/icons/hicolor/scalable/actions/mypaint-move.svg
234
share/icons/hicolor/scalable/actions/mypaint-symmetry.svg
79
share/icons/hicolor/scalable/actions/mypaint-tool-brush.svg
235
share/icons/hicolor/scalable/actions/mypaint-tool-brush.svg
236
share/icons/hicolor/scalable/actions/mypaint-tool-color-rgb.svg
80
share/icons/hicolor/scalable/actions/mypaint-tool-color-triangle.svg
237
share/icons/hicolor/scalable/actions/mypaint-tool-color-triangle.svg
238
share/icons/hicolor/scalable/actions/mypaint-tool-component-sliders.svg
239
share/icons/hicolor/scalable/actions/mypaint-tool-hcywheel.svg
240
share/icons/hicolor/scalable/actions/mypaint-tool-hsvcube.svg
241
share/icons/hicolor/scalable/actions/mypaint-tool-hsvwheel.svg
81
share/icons/hicolor/scalable/actions/mypaint-tool-hue-wheel.svg
242
share/icons/hicolor/scalable/actions/mypaint-tool-hue-wheel.svg
82
share/icons/hicolor/scalable/actions/mypaint-tool-layers.svg
243
share/icons/hicolor/scalable/actions/mypaint-tool-layers.svg
244
share/icons/hicolor/scalable/actions/mypaint-tool-move-layer.svg
245
share/icons/hicolor/scalable/actions/mypaint-tool-paint-color.svg
83
share/icons/hicolor/scalable/actions/mypaint-tool-scratchpad.svg
246
share/icons/hicolor/scalable/actions/mypaint-tool-scratchpad.svg
247
share/icons/hicolor/scalable/actions/mypaint-view-100.svg
248
share/icons/hicolor/scalable/actions/mypaint-view-fit.svg
249
share/icons/hicolor/scalable/actions/mypaint-view-mirror-horizontal.svg
250
share/icons/hicolor/scalable/actions/mypaint-view-mirror-vertical.svg
251
share/icons/hicolor/scalable/actions/mypaint-view-pan.svg
252
share/icons/hicolor/scalable/actions/mypaint-view-rotate-anticlockwise.svg
253
share/icons/hicolor/scalable/actions/mypaint-view-rotate-clockwise.svg
254
share/icons/hicolor/scalable/actions/mypaint-view-rotate.svg
255
share/icons/hicolor/scalable/actions/mypaint-view-zoom-less.svg
256
share/icons/hicolor/scalable/actions/mypaint-view-zoom-more.svg
257
share/icons/hicolor/scalable/actions/mypaint-view-zoom.svg
84
share/icons/hicolor/scalable/apps/mypaint.svg
258
share/icons/hicolor/scalable/apps/mypaint.svg
259
share/locale/cs/LC_MESSAGES/libmypaint.mo
85
share/locale/cs/LC_MESSAGES/mypaint.mo
260
share/locale/cs/LC_MESSAGES/mypaint.mo
261
share/locale/de/LC_MESSAGES/libmypaint.mo
86
share/locale/de/LC_MESSAGES/mypaint.mo
262
share/locale/de/LC_MESSAGES/mypaint.mo
263
share/locale/en_CA/LC_MESSAGES/libmypaint.mo
87
share/locale/en_CA/LC_MESSAGES/mypaint.mo
264
share/locale/en_CA/LC_MESSAGES/mypaint.mo
265
share/locale/en_GB/LC_MESSAGES/mypaint.mo
266
share/locale/es/LC_MESSAGES/libmypaint.mo
88
share/locale/es/LC_MESSAGES/mypaint.mo
267
share/locale/es/LC_MESSAGES/mypaint.mo
268
share/locale/fr/LC_MESSAGES/libmypaint.mo
89
share/locale/fr/LC_MESSAGES/mypaint.mo
269
share/locale/fr/LC_MESSAGES/mypaint.mo
270
share/locale/hu/LC_MESSAGES/libmypaint.mo
90
share/locale/hu/LC_MESSAGES/mypaint.mo
271
share/locale/hu/LC_MESSAGES/mypaint.mo
272
share/locale/id/LC_MESSAGES/libmypaint.mo
91
share/locale/id/LC_MESSAGES/mypaint.mo
273
share/locale/id/LC_MESSAGES/mypaint.mo
274
share/locale/it/LC_MESSAGES/libmypaint.mo
92
share/locale/it/LC_MESSAGES/mypaint.mo
275
share/locale/it/LC_MESSAGES/mypaint.mo
276
share/locale/ja/LC_MESSAGES/libmypaint.mo
93
share/locale/ja/LC_MESSAGES/mypaint.mo
277
share/locale/ja/LC_MESSAGES/mypaint.mo
278
share/locale/ko/LC_MESSAGES/libmypaint.mo
94
share/locale/ko/LC_MESSAGES/mypaint.mo
279
share/locale/ko/LC_MESSAGES/mypaint.mo
280
share/locale/nb/LC_MESSAGES/libmypaint.mo
95
share/locale/nb/LC_MESSAGES/mypaint.mo
281
share/locale/nb/LC_MESSAGES/mypaint.mo
282
share/locale/nn_NO/LC_MESSAGES/libmypaint.mo
96
share/locale/nn_NO/LC_MESSAGES/mypaint.mo
283
share/locale/nn_NO/LC_MESSAGES/mypaint.mo
284
share/locale/pl/LC_MESSAGES/libmypaint.mo
97
share/locale/pl/LC_MESSAGES/mypaint.mo
285
share/locale/pl/LC_MESSAGES/mypaint.mo
286
share/locale/pt_BR/LC_MESSAGES/libmypaint.mo
98
share/locale/pt_BR/LC_MESSAGES/mypaint.mo
287
share/locale/pt_BR/LC_MESSAGES/mypaint.mo
288
share/locale/ro/LC_MESSAGES/libmypaint.mo
289
share/locale/ro/LC_MESSAGES/mypaint.mo
290
share/locale/ru/LC_MESSAGES/libmypaint.mo
99
share/locale/ru/LC_MESSAGES/mypaint.mo
291
share/locale/ru/LC_MESSAGES/mypaint.mo
292
share/locale/sl/LC_MESSAGES/libmypaint.mo
100
share/locale/sl/LC_MESSAGES/mypaint.mo
293
share/locale/sl/LC_MESSAGES/mypaint.mo
294
share/locale/sv/LC_MESSAGES/libmypaint.mo
101
share/locale/sv/LC_MESSAGES/mypaint.mo
295
share/locale/sv/LC_MESSAGES/mypaint.mo
296
share/locale/uk/LC_MESSAGES/libmypaint.mo
102
share/locale/uk/LC_MESSAGES/mypaint.mo
297
share/locale/uk/LC_MESSAGES/mypaint.mo
298
share/locale/zh_CN/LC_MESSAGES/libmypaint.mo
103
share/locale/zh_CN/LC_MESSAGES/mypaint.mo
299
share/locale/zh_CN/LC_MESSAGES/mypaint.mo
300
share/locale/zh_TW/LC_MESSAGES/libmypaint.mo
104
share/locale/zh_TW/LC_MESSAGES/mypaint.mo
301
share/locale/zh_TW/LC_MESSAGES/mypaint.mo
105
%%DATADIR%%/backgrounds/01_white.png
302
%%DATADIR%%/backgrounds/01_white.png
106
%%DATADIR%%/backgrounds/02_black.png
303
%%DATADIR%%/backgrounds/02_black.png
Lines 209-215 Link Here
209
%%DATADIR%%/backgrounds/ramon/readme_papers.txt
406
%%DATADIR%%/backgrounds/ramon/readme_papers.txt
210
%%DATADIR%%/backgrounds/squares2.png
407
%%DATADIR%%/backgrounds/squares2.png
211
%%DATADIR%%/backgrounds/squares2_blue.png
408
%%DATADIR%%/backgrounds/squares2_blue.png
212
%%DATADIR%%/brushes/FX_blender_prev
409
%%DATADIR%%/brushes/FX_blender_prev.png
213
%%DATADIR%%/brushes/classic/blend+paint.myb
410
%%DATADIR%%/brushes/classic/blend+paint.myb
214
%%DATADIR%%/brushes/classic/blend+paint_prev.png
411
%%DATADIR%%/brushes/classic/blend+paint_prev.png
215
%%DATADIR%%/brushes/classic/blending_knife.myb
412
%%DATADIR%%/brushes/classic/blending_knife.myb
Lines 280-358 Link Here
280
%%DATADIR%%/brushes/classic/textured_ink_prev.png
477
%%DATADIR%%/brushes/classic/textured_ink_prev.png
281
%%DATADIR%%/brushes/classic/wet_knife.myb
478
%%DATADIR%%/brushes/classic/wet_knife.myb
282
%%DATADIR%%/brushes/classic/wet_knife_prev.png
479
%%DATADIR%%/brushes/classic/wet_knife_prev.png
283
%%DATADIR%%/brushes/deevad/2B.myb
480
%%DATADIR%%/brushes/deevad/2B_pencil.myb
284
%%DATADIR%%/brushes/deevad/2B_prev.png
481
%%DATADIR%%/brushes/deevad/2B_pencil_prev.png
285
%%DATADIR%%/brushes/deevad/4H.myb
482
%%DATADIR%%/brushes/deevad/4H_pencil.myb
286
%%DATADIR%%/brushes/deevad/4H_prev.png
483
%%DATADIR%%/brushes/deevad/4H_pencil_prev.png
287
%%DATADIR%%/brushes/deevad/airbrush.myb
484
%%DATADIR%%/brushes/deevad/airbrush.myb
288
%%DATADIR%%/brushes/deevad/airbrush_prev.png
485
%%DATADIR%%/brushes/deevad/airbrush_prev.png
289
%%DATADIR%%/brushes/deevad/artpen.myb
290
%%DATADIR%%/brushes/deevad/artpen_prev.png
291
%%DATADIR%%/brushes/deevad/ballpen.myb
486
%%DATADIR%%/brushes/deevad/ballpen.myb
292
%%DATADIR%%/brushes/deevad/ballpen_prev.png
487
%%DATADIR%%/brushes/deevad/ballpen_prev.png
488
%%DATADIR%%/brushes/deevad/basic_digital_brush.myb
489
%%DATADIR%%/brushes/deevad/basic_digital_brush_prev.png
490
%%DATADIR%%/brushes/deevad/basic_digital_brush_smudging.myb
491
%%DATADIR%%/brushes/deevad/basic_digital_brush_smudging_prev.png
492
%%DATADIR%%/brushes/deevad/basic_digital_knife.myb
493
%%DATADIR%%/brushes/deevad/basic_digital_knife_prev.png
494
%%DATADIR%%/brushes/deevad/basic_digital_knife_smudging.myb
495
%%DATADIR%%/brushes/deevad/basic_digital_knife_smudging_prev.png
293
%%DATADIR%%/brushes/deevad/blending.myb
496
%%DATADIR%%/brushes/deevad/blending.myb
294
%%DATADIR%%/brushes/deevad/blending2.myb
295
%%DATADIR%%/brushes/deevad/blending2_prev.png
296
%%DATADIR%%/brushes/deevad/blending_prev.png
497
%%DATADIR%%/brushes/deevad/blending_prev.png
297
%%DATADIR%%/brushes/deevad/brush.myb
498
%%DATADIR%%/brushes/deevad/brush.myb
298
%%DATADIR%%/brushes/deevad/brush_prev.png
499
%%DATADIR%%/brushes/deevad/brush_prev.png
299
%%DATADIR%%/brushes/deevad/chalk.myb
500
%%DATADIR%%/brushes/deevad/chalk.myb
300
%%DATADIR%%/brushes/deevad/chalk_prev.png
501
%%DATADIR%%/brushes/deevad/chalk_prev.png
301
%%DATADIR%%/brushes/deevad/charcoal.myb
502
%%DATADIR%%/brushes/deevad/detail_brush_large.myb
302
%%DATADIR%%/brushes/deevad/charcoal_prev.png
503
%%DATADIR%%/brushes/deevad/detail_brush_large_glazing.myb
303
%%DATADIR%%/brushes/deevad/detail1.myb
504
%%DATADIR%%/brushes/deevad/detail_brush_large_glazing_prev.png
304
%%DATADIR%%/brushes/deevad/detail1_prev.png
505
%%DATADIR%%/brushes/deevad/detail_brush_large_prev.png
305
%%DATADIR%%/brushes/deevad/detail2.myb
506
%%DATADIR%%/brushes/deevad/detail_brush_thin.myb
306
%%DATADIR%%/brushes/deevad/detail2_prev.png
507
%%DATADIR%%/brushes/deevad/detail_brush_thin_glazing.myb
307
%%DATADIR%%/brushes/deevad/detail3.myb
508
%%DATADIR%%/brushes/deevad/detail_brush_thin_glazing_prev.png
308
%%DATADIR%%/brushes/deevad/detail3_prev.png
509
%%DATADIR%%/brushes/deevad/detail_brush_thin_prev.png
309
%%DATADIR%%/brushes/deevad/detail4.myb
310
%%DATADIR%%/brushes/deevad/detail4_prev.png
311
%%DATADIR%%/brushes/deevad/digital.myb
312
%%DATADIR%%/brushes/deevad/digital_prev.png
313
%%DATADIR%%/brushes/deevad/fill.myb
510
%%DATADIR%%/brushes/deevad/fill.myb
314
%%DATADIR%%/brushes/deevad/fill_prev.png
511
%%DATADIR%%/brushes/deevad/fill_prev.png
315
%%DATADIR%%/brushes/deevad/gpen.myb
512
%%DATADIR%%/brushes/deevad/grainy_blending.myb
316
%%DATADIR%%/brushes/deevad/gpen_prev.png
513
%%DATADIR%%/brushes/deevad/grainy_blending_prev.png
317
%%DATADIR%%/brushes/deevad/hard.myb
514
%%DATADIR%%/brushes/deevad/kneaded_eraser.myb
318
%%DATADIR%%/brushes/deevad/hard_prev.png
515
%%DATADIR%%/brushes/deevad/kneaded_eraser_large.myb
319
%%DATADIR%%/brushes/deevad/kneaded.myb
516
%%DATADIR%%/brushes/deevad/kneaded_eraser_large_prev.png
320
%%DATADIR%%/brushes/deevad/kneaded2.myb
517
%%DATADIR%%/brushes/deevad/kneaded_eraser_prev.png
321
%%DATADIR%%/brushes/deevad/kneaded2_prev.png
518
%%DATADIR%%/brushes/deevad/large_hard_eraser.myb
322
%%DATADIR%%/brushes/deevad/kneaded_prev.png
519
%%DATADIR%%/brushes/deevad/large_hard_eraser_prev.png
323
%%DATADIR%%/brushes/deevad/knife.myb
520
%%DATADIR%%/brushes/deevad/large_watercolor_fringe.myb
324
%%DATADIR%%/brushes/deevad/knife_prev.png
521
%%DATADIR%%/brushes/deevad/large_watercolor_fringe_prev.png
325
%%DATADIR%%/brushes/deevad/marker.myb
522
%%DATADIR%%/brushes/deevad/liner.myb
326
%%DATADIR%%/brushes/deevad/marker_prev.png
523
%%DATADIR%%/brushes/deevad/liner_prev.png
327
%%DATADIR%%/brushes/deevad/mixbrush.myb
524
%%DATADIR%%/brushes/deevad/only_water_fringe.myb
328
%%DATADIR%%/brushes/deevad/mixbrush_prev.png
525
%%DATADIR%%/brushes/deevad/only_water_fringe_prev.png
329
%%DATADIR%%/brushes/deevad/mixknife.myb
526
%%DATADIR%%/brushes/deevad/pen-note.myb
330
%%DATADIR%%/brushes/deevad/mixknife_prev.png
527
%%DATADIR%%/brushes/deevad/pen-note_prev.png
331
%%DATADIR%%/brushes/deevad/mop.myb
332
%%DATADIR%%/brushes/deevad/mop_prev.png
333
%%DATADIR%%/brushes/deevad/pen.myb
528
%%DATADIR%%/brushes/deevad/pen.myb
334
%%DATADIR%%/brushes/deevad/pen_prev.png
529
%%DATADIR%%/brushes/deevad/pen_prev.png
335
%%DATADIR%%/brushes/deevad/readme.txt
530
%%DATADIR%%/brushes/deevad/readme.txt
336
%%DATADIR%%/brushes/deevad/rigger.myb
531
%%DATADIR%%/brushes/deevad/rigger_brush.myb
337
%%DATADIR%%/brushes/deevad/rigger2.myb
532
%%DATADIR%%/brushes/deevad/rigger_brush_prev.png
338
%%DATADIR%%/brushes/deevad/rigger2_prev.png
533
%%DATADIR%%/brushes/deevad/rigger_brush_thin.myb
339
%%DATADIR%%/brushes/deevad/rigger_prev.png
534
%%DATADIR%%/brushes/deevad/rigger_brush_thin_prev.png
340
%%DATADIR%%/brushes/deevad/sketch.myb
535
%%DATADIR%%/brushes/deevad/rough.myb
341
%%DATADIR%%/brushes/deevad/sketch_prev.png
536
%%DATADIR%%/brushes/deevad/rough_prev.png
342
%%DATADIR%%/brushes/deevad/sponge.myb
537
%%DATADIR%%/brushes/deevad/soft-dip-pen.myb
343
%%DATADIR%%/brushes/deevad/sponge_prev.png
538
%%DATADIR%%/brushes/deevad/soft-dip-pen_prev.png
539
%%DATADIR%%/brushes/deevad/sponge_smudging.myb
540
%%DATADIR%%/brushes/deevad/sponge_smudging_prev.png
344
%%DATADIR%%/brushes/deevad/spray.myb
541
%%DATADIR%%/brushes/deevad/spray.myb
345
%%DATADIR%%/brushes/deevad/spray2.myb
542
%%DATADIR%%/brushes/deevad/spray2.myb
346
%%DATADIR%%/brushes/deevad/spray2_prev.png
543
%%DATADIR%%/brushes/deevad/spray2_prev.png
347
%%DATADIR%%/brushes/deevad/spray_prev.png
544
%%DATADIR%%/brushes/deevad/spray_prev.png
348
%%DATADIR%%/brushes/deevad/stick.myb
545
%%DATADIR%%/brushes/deevad/thin_hard_eraser.myb
349
%%DATADIR%%/brushes/deevad/stick_prev.png
546
%%DATADIR%%/brushes/deevad/thin_hard_eraser_prev.png
350
%%DATADIR%%/brushes/deevad/water1.myb
547
%%DATADIR%%/brushes/deevad/thin_watercolor.myb
351
%%DATADIR%%/brushes/deevad/water1_prev.png
548
%%DATADIR%%/brushes/deevad/thin_watercolor_prev.png
352
%%DATADIR%%/brushes/deevad/water2.myb
549
%%DATADIR%%/brushes/deevad/watercolor_expressive.myb
353
%%DATADIR%%/brushes/deevad/water2_prev.png
550
%%DATADIR%%/brushes/deevad/watercolor_expressive_prev.png
354
%%DATADIR%%/brushes/deevad/water3.myb
551
%%DATADIR%%/brushes/deevad/watercolor_glazing.myb
355
%%DATADIR%%/brushes/deevad/water3_prev.png
552
%%DATADIR%%/brushes/deevad/watercolor_glazing_prev.png
356
%%DATADIR%%/brushes/experimental/1pixel.myb
553
%%DATADIR%%/brushes/experimental/1pixel.myb
357
%%DATADIR%%/brushes/experimental/1pixel_prev.png
554
%%DATADIR%%/brushes/experimental/1pixel_prev.png
358
%%DATADIR%%/brushes/experimental/DNA_brush.myb
555
%%DATADIR%%/brushes/experimental/DNA_brush.myb
Lines 529-534 Link Here
529
%%DATADIR%%/brushes/tanda/watercolor-02-water.myb
726
%%DATADIR%%/brushes/tanda/watercolor-02-water.myb
530
%%DATADIR%%/brushes/tanda/watercolor-02-water_prev.png
727
%%DATADIR%%/brushes/tanda/watercolor-02-water_prev.png
531
%%DATADIR%%/brushlib/__init__.py
728
%%DATADIR%%/brushlib/__init__.py
729
%%DATADIR%%/brushlib/brushsettings.json
532
%%DATADIR%%/brushlib/brushsettings.py
730
%%DATADIR%%/brushlib/brushsettings.py
533
%%DATADIR%%/brushlib/generate.py
731
%%DATADIR%%/brushlib/generate.py
534
%%DATADIR%%/gui/__init__.py
732
%%DATADIR%%/gui/__init__.py
Lines 539-548 Link Here
539
%%DATADIR%%/gui/brushmodifier.py
737
%%DATADIR%%/gui/brushmodifier.py
540
%%DATADIR%%/gui/brushselectionwindow.py
738
%%DATADIR%%/gui/brushselectionwindow.py
541
%%DATADIR%%/gui/brushsettingswindow.py
739
%%DATADIR%%/gui/brushsettingswindow.py
542
%%DATADIR%%/gui/colorhistory.py
740
%%DATADIR%%/gui/buttonmap.py
741
%%DATADIR%%/gui/canvasevent.py
543
%%DATADIR%%/gui/colorpicker.py
742
%%DATADIR%%/gui/colorpicker.py
544
%%DATADIR%%/gui/colorsamplerwindow.py
743
%%DATADIR%%/gui/colors/__init__.py
744
%%DATADIR%%/gui/colors/adjbases.py
745
%%DATADIR%%/gui/colors/bases.py
746
%%DATADIR%%/gui/colors/combined.py
747
%%DATADIR%%/gui/colors/geom.py
748
%%DATADIR%%/gui/colors/hcywheel.py
749
%%DATADIR%%/gui/colors/hsvcube.py
750
%%DATADIR%%/gui/colors/hsvtriangle.py
751
%%DATADIR%%/gui/colors/hsvwheel.py
752
%%DATADIR%%/gui/colors/palette.py
753
%%DATADIR%%/gui/colors/paletteview.py
754
%%DATADIR%%/gui/colors/picker.py
755
%%DATADIR%%/gui/colors/sliders.py
756
%%DATADIR%%/gui/colors/uicolor.py
757
%%DATADIR%%/gui/colors/uimisc.py
758
%%DATADIR%%/gui/colors/util.py
545
%%DATADIR%%/gui/colorselectionwindow.py
759
%%DATADIR%%/gui/colorselectionwindow.py
760
%%DATADIR%%/gui/colorwindow.py
546
%%DATADIR%%/gui/cursor.py
761
%%DATADIR%%/gui/cursor.py
547
%%DATADIR%%/gui/curve.py
762
%%DATADIR%%/gui/curve.py
548
%%DATADIR%%/gui/dialogs.py
763
%%DATADIR%%/gui/dialogs.py
Lines 555-580 Link Here
555
%%DATADIR%%/gui/functionwindow.py
770
%%DATADIR%%/gui/functionwindow.py
556
%%DATADIR%%/gui/gtkexcepthook.py
771
%%DATADIR%%/gui/gtkexcepthook.py
557
%%DATADIR%%/gui/historypopup.py
772
%%DATADIR%%/gui/historypopup.py
558
%%DATADIR%%/gui/hsvcompat.py
559
%%DATADIR%%/gui/inputtestwindow.py
773
%%DATADIR%%/gui/inputtestwindow.py
560
%%DATADIR%%/gui/keyboard.py
774
%%DATADIR%%/gui/keyboard.py
561
%%DATADIR%%/gui/layerswindow.py
775
%%DATADIR%%/gui/layerswindow.py
562
%%DATADIR%%/gui/layout.py
776
%%DATADIR%%/gui/layout.py
777
%%DATADIR%%/gui/linemode.py
563
%%DATADIR%%/gui/main.py
778
%%DATADIR%%/gui/main.py
564
%%DATADIR%%/gui/menu.xml
779
%%DATADIR%%/gui/menu.xml
780
%%DATADIR%%/gui/mypaint.xml
781
%%DATADIR%%/gui/overlays.py
565
%%DATADIR%%/gui/pixbuflist.py
782
%%DATADIR%%/gui/pixbuflist.py
566
%%DATADIR%%/gui/preferenceswindow.py
783
%%DATADIR%%/gui/preferenceswindow.py
784
%%DATADIR%%/gui/pygtkcompat.py
567
%%DATADIR%%/gui/scratchwindow.py
785
%%DATADIR%%/gui/scratchwindow.py
568
%%DATADIR%%/gui/spinbox.py
786
%%DATADIR%%/gui/spinbox.py
569
%%DATADIR%%/gui/stategroup.py
787
%%DATADIR%%/gui/stategroup.py
570
%%DATADIR%%/gui/stock.py
788
%%DATADIR%%/gui/symmetry.py
571
%%DATADIR%%/gui/tileddrawwidget.py
789
%%DATADIR%%/gui/tileddrawwidget.py
572
%%DATADIR%%/gui/toolbar-blendmodes.xml
790
%%DATADIR%%/gui/toolbar-blendmodes.xml
573
%%DATADIR%%/gui/toolbar-edit.xml
791
%%DATADIR%%/gui/toolbar-edit.xml
574
%%DATADIR%%/gui/toolbar-file.xml
792
%%DATADIR%%/gui/toolbar-file.xml
793
%%DATADIR%%/gui/toolbar-linemodes.xml
575
%%DATADIR%%/gui/toolbar-scrap.xml
794
%%DATADIR%%/gui/toolbar-scrap.xml
576
%%DATADIR%%/gui/toolbar-subwindows.xml
795
%%DATADIR%%/gui/toolbar-subwindows.xml
577
%%DATADIR%%/gui/toolbar-view.xml
796
%%DATADIR%%/gui/toolbar-view-manips.xml
797
%%DATADIR%%/gui/toolbar-view-modes.xml
798
%%DATADIR%%/gui/toolbar-view-resets.xml
578
%%DATADIR%%/gui/toolbar.py
799
%%DATADIR%%/gui/toolbar.py
579
%%DATADIR%%/gui/toolbar.xml
800
%%DATADIR%%/gui/toolbar.xml
580
%%DATADIR%%/gui/widgets.py
801
%%DATADIR%%/gui/widgets.py
Lines 582-587 Link Here
582
%%DATADIR%%/lib/__init__.py
803
%%DATADIR%%/lib/__init__.py
583
%%DATADIR%%/lib/backgroundsurface.py
804
%%DATADIR%%/lib/backgroundsurface.py
584
%%DATADIR%%/lib/brush.py
805
%%DATADIR%%/lib/brush.py
806
%%DATADIR%%/lib/brushes_migrate_json.py
585
%%DATADIR%%/lib/command.py
807
%%DATADIR%%/lib/command.py
586
%%DATADIR%%/lib/document.py
808
%%DATADIR%%/lib/document.py
587
%%DATADIR%%/lib/helpers.py
809
%%DATADIR%%/lib/helpers.py
Lines 593-628 Link Here
593
%%DATADIR%%/lib/stroke.py
815
%%DATADIR%%/lib/stroke.py
594
%%DATADIR%%/lib/strokemap.py
816
%%DATADIR%%/lib/strokemap.py
595
%%DATADIR%%/lib/tiledsurface.py
817
%%DATADIR%%/lib/tiledsurface.py
818
%%DATADIR%%/palettes/All_color_choice.gpl
819
%%DATADIR%%/palettes/Browns_And_Yellows.gpl
820
%%DATADIR%%/palettes/Classic_4.gpl
821
%%DATADIR%%/palettes/Cool_Colors.gpl
822
%%DATADIR%%/palettes/Creative_Commons.gpl
823
%%DATADIR%%/palettes/GIMP_Default.gpl
824
%%DATADIR%%/palettes/Gnome_Palette.gpl
825
%%DATADIR%%/palettes/Greys16.gpl
826
%%DATADIR%%/palettes/Muted.gpl
827
%%DATADIR%%/palettes/MyPaint_Default.gpl
828
%%DATADIR%%/palettes/Pastels.gpl
829
%%DATADIR%%/palettes/Reds_And_Purples.gpl
830
%%DATADIR%%/palettes/Tango_Palette.gpl
831
%%DATADIR%%/palettes/Ubuntu.gpl
832
%%DATADIR%%/palettes/Visibone.gpl
833
%%DATADIR%%/palettes/Visibone_2.gpl
834
%%DATADIR%%/palettes/Warm_Colors.gpl
835
%%DATADIR%%/palettes/Watercolor.gpl
836
%%DATADIR%%/palettes/Zenburn.gpl
837
%%DATADIR%%/pixmaps/crosshair_closed.png
838
%%DATADIR%%/pixmaps/cursor_arrow.png
839
%%DATADIR%%/pixmaps/cursor_arrow_forbidden.png
596
%%DATADIR%%/pixmaps/cursor_color_picker.png
840
%%DATADIR%%/pixmaps/cursor_color_picker.png
841
%%DATADIR%%/pixmaps/cursor_crosshair_open.png
842
%%DATADIR%%/pixmaps/cursor_crosshair_precise_open.png
843
%%DATADIR%%/pixmaps/cursor_forbidden_everywhere.png
844
%%DATADIR%%/pixmaps/cursor_hand_closed.png
845
%%DATADIR%%/pixmaps/cursor_hand_open.png
846
%%DATADIR%%/pixmaps/cursor_move_n_s.png
847
%%DATADIR%%/pixmaps/cursor_move_ne_sw.png
848
%%DATADIR%%/pixmaps/cursor_move_nw_se.png
849
%%DATADIR%%/pixmaps/cursor_move_w_e.png
850
%%DATADIR%%/pixmaps/cursor_pencil.png
597
%%DATADIR%%/pixmaps/eye_closed.png
851
%%DATADIR%%/pixmaps/eye_closed.png
598
%%DATADIR%%/pixmaps/eye_open.png
852
%%DATADIR%%/pixmaps/eye_open.png
599
%%DATADIR%%/pixmaps/layer_duplicate.png
853
%%DATADIR%%/pixmaps/layer_duplicate.png
854
%%DATADIR%%/pixmaps/layers.png
600
%%DATADIR%%/pixmaps/lock_closed.png
855
%%DATADIR%%/pixmaps/lock_closed.png
601
%%DATADIR%%/pixmaps/lock_open.png
856
%%DATADIR%%/pixmaps/lock_open.png
602
%%DATADIR%%/pixmaps/mypaint_logo.png
857
%%DATADIR%%/pixmaps/mypaint_logo.png
603
%%DATADIR%%/pixmaps/plus.png
858
%%DATADIR%%/pixmaps/plus.png
604
%%DATADIR%%/pixmaps/tool_brushSelectionWindow.png
859
@dirrmtry share/locale/zh_TW/LC_MESSAGES
605
%%DATADIR%%/pixmaps/tool_colorSamplerWindow.png
860
@dirrmtry share/locale/zh_TW
606
%%DATADIR%%/pixmaps/tool_colorSelectionWindow.png
861
@dirrmtry share/locale/zh_CN/LC_MESSAGES
607
%%DATADIR%%/pixmaps/tool_layersWindow.png
862
@dirrmtry share/locale/zh_CN
608
%%DATADIR%%/pixmaps/tool_scratchWindow.png
863
@dirrmtry share/locale/uk/LC_MESSAGES
609
%%DATADIR%%/pixmaps/tool_scratchpadWindow.png
864
@dirrmtry share/locale/uk
610
@dirrm %%DATADIR%%/pixmaps
865
@dirrmtry share/locale/sv/LC_MESSAGES
611
@dirrm %%DATADIR%%/lib
866
@dirrmtry share/locale/sv
612
@dirrm %%DATADIR%%/gui
867
@dirrmtry share/locale/sl/LC_MESSAGES
613
@dirrm %%DATADIR%%/brushlib
868
@dirrmtry share/locale/sl
614
@dirrm %%DATADIR%%/brushes/tanda
869
@dirrmtry share/locale/ru/LC_MESSAGES
615
@dirrm %%DATADIR%%/brushes/ramon
870
@dirrmtry share/locale/ru
616
@dirrm %%DATADIR%%/brushes/experimental
871
@dirrmtry share/locale/ro/LC_MESSAGES
617
@dirrm %%DATADIR%%/brushes/deevad
872
@dirrmtry share/locale/ro
618
@dirrm %%DATADIR%%/brushes/classic
873
@dirrmtry share/locale/pt_BR/LC_MESSAGES
619
@dirrm %%DATADIR%%/brushes
874
@dirrmtry share/locale/pt_BR
620
@dirrm %%DATADIR%%/backgrounds/ramon
875
@dirrmtry share/locale/pl/LC_MESSAGES
621
@dirrm %%DATADIR%%/backgrounds/mrmamurk
876
@dirrmtry share/locale/pl
622
@dirrm %%DATADIR%%/backgrounds
623
@dirrm %%DATADIR%%
624
@dirrmtry share/locale/nn_NO/LC_MESSAGES
877
@dirrmtry share/locale/nn_NO/LC_MESSAGES
625
@dirrmtry share/locale/nn_NO
878
@dirrmtry share/locale/nn_NO
879
@dirrmtry share/locale/nb/LC_MESSAGES
880
@dirrmtry share/locale/nb
881
@dirrmtry share/locale/ko/LC_MESSAGES
882
@dirrmtry share/locale/ko
883
@dirrmtry share/locale/ja/LC_MESSAGES
884
@dirrmtry share/locale/ja
885
@dirrmtry share/locale/it/LC_MESSAGES
886
@dirrmtry share/locale/it
887
@dirrmtry share/locale/id/LC_MESSAGES
888
@dirrmtry share/locale/id
889
@dirrmtry share/locale/hu/LC_MESSAGES
890
@dirrmtry share/locale/hu
891
@dirrmtry share/locale/fr/LC_MESSAGES
892
@dirrmtry share/locale/fr
893
@dirrmtry share/locale/es/LC_MESSAGES
894
@dirrmtry share/locale/es
895
@dirrmtry share/locale/en_GB/LC_MESSAGES
896
@dirrmtry share/locale/en_GB
897
@dirrmtry share/locale/en_CA/LC_MESSAGES
898
@dirrmtry share/locale/en_CA
899
@dirrmtry share/locale/de/LC_MESSAGES
900
@dirrmtry share/locale/de
901
@dirrmtry share/locale/cs/LC_MESSAGES
902
@dirrmtry share/locale/cs
626
@dirrmtry share/icons/hicolor/scalable/apps
903
@dirrmtry share/icons/hicolor/scalable/apps
627
@dirrmtry share/icons/hicolor/scalable/actions
904
@dirrmtry share/icons/hicolor/scalable/actions
628
@dirrmtry share/icons/hicolor/scalable
905
@dirrmtry share/icons/hicolor/scalable
Lines 645-647 Link Here
645
@dirrmtry share/icons
922
@dirrmtry share/icons
646
@dirrmtry share/applications
923
@dirrmtry share/applications
647
@dirrm lib/mypaint
924
@dirrm lib/mypaint
925
@dirrm include/libmypaint/glib
926
@dirrm include/libmypaint
927
@dirrm %%DATADIR%%/pixmaps
928
@dirrm %%DATADIR%%/palettes
929
@dirrm %%DATADIR%%/lib
930
@dirrm %%DATADIR%%/gui/colors
931
@dirrm %%DATADIR%%/gui
932
@dirrm %%DATADIR%%/brushlib
933
@dirrm %%DATADIR%%/brushes/tanda
934
@dirrm %%DATADIR%%/brushes/ramon
935
@dirrm %%DATADIR%%/brushes/experimental
936
@dirrm %%DATADIR%%/brushes/deevad
937
@dirrm %%DATADIR%%/brushes/classic
938
@dirrm %%DATADIR%%/brushes
939
@dirrm %%DATADIR%%/backgrounds/ramon
940
@dirrm %%DATADIR%%/backgrounds/mrmamurk
941
@dirrm %%DATADIR%%/backgrounds
942
@dirrm %%DATADIR%%

Return to bug 175223