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

(-)deskutils/mirall/Makefile (-25 / +14 lines)
Lines 2-14 Link Here
2
# $FreeBSD: head/deskutils/mirall/Makefile 378231 2015-02-01 09:13:05Z madpilot $
2
# $FreeBSD: head/deskutils/mirall/Makefile 378231 2015-02-01 09:13:05Z madpilot $
3
3
4
PORTNAME=	mirall
4
PORTNAME=	mirall
5
PORTVERSION=	1.6.3
5
PORTVERSION=	1.7.1
6
PORTREVISION=	1
7
CATEGORIES=	deskutils
6
CATEGORIES=	deskutils
8
MASTER_SITES=	http://download.owncloud.com/desktop/stable/
7
MASTER_SITES=	http://download.owncloud.com/desktop/stable/
9
8
10
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	The ownCloud Desktop Syncing Client
10
COMMENT=	Qt based sync client for OwnCloud
12
11
13
LICENSE=	GPLv2
12
LICENSE=	GPLv2
14
13
Lines 16-56 Link Here
16
		libqtkeychain.so:${PORTSDIR}/security/qtkeychain \
15
		libqtkeychain.so:${PORTSDIR}/security/qtkeychain \
17
		libneon.so:${PORTSDIR}/www/neon
16
		libneon.so:${PORTSDIR}/www/neon
18
17
19
USES=		cmake:outsource compiler:c++11-lang gmake pkgconfig tar:bzip2
18
USES=		cmake:outsource compiler:c++11-lib gmake pkgconfig tar:bzip2
20
USE_QT4=	corelib dbus gui network qtestlib webkit xml \
19
USE_QT4=	corelib dbus gui qtestlib webkit xml \
21
		linguist_build moc_build qmake_build rcc_build uic_build \
20
		linguist_build moc_build qmake_build rcc_build uic_build \
22
		sql-sqlite3_run
21
		sql-sqlite3_run
23
USE_SQLITE=	3
22
USE_SQLITE=	3
24
CMAKE_ENV=	INOTIFY_LIB="${LOCALBASE}/lib"
23
CMAKE_ARGS=	-DBUILD_WITH_QT4:BOOL=ON \
25
CMAKE_ARGS=	-DCMAKE_INSTALL_MANDIR:STRING=${MANPREFIX}/man/ \
24
		-DCMAKE_INSTALL_MANDIR:STRING=man \
26
		-DBUILD_WITH_QT4:BOOL=ON
25
		-DWITH_STACK_PROTECTOR:BOOL=OFF
27
USE_LDCONFIG=	yes
26
USE_LDCONFIG=	yes
28
INSTALLS_ICONS=	yes
27
INSTALLS_ICONS=	yes
29
28
30
OPTIONS_DEFINE=	DOCS
29
CFLAGS+=	-I${LOCALBASE}/include
30
LDFLAGS+=	-L${LOCALBASE}/lib
31
31
32
DOCS_BUILD_DEPENDS=	sphinx-build:${PORTSDIR}/textproc/py-sphinx
32
OPTIONS_DEFINE=		DOCS
33
DOCS_USE=		TEX=dvipsk:build,latex:build
34
DOCS_CMAKE_ON=		WITH_DOC=true
35
DOCS_ALL_TARGET=	all doc-html doc-pdf
36
33
37
.include <bsd.port.options.mk>
34
DOCS_BUILD_DEPENDS=	sphinx-build:${PORTSDIR}/textproc/py-sphinx
35
DOCS_USE=		tex=dvipsk:build,latex:build
36
DOCS_CMAKE_ON=		-DWITH_DOC:BOOL=ON
38
37
39
post-patch:
38
post-patch:
40
	@${REINPLACE_CMD} -e \
39
	@${REINPLACE_CMD} -e \
41
		's|.lst |.lst.sample |' ${WRKSRC}/CMakeLists.txt
40
		's|.lst |.lst.sample |' ${WRKSRC}/CMakeLists.txt
42
41
43
post-build:
42
pre-configure:
44
	@(cd ${WRKSRC} && ${CP} -f sync-exclude.lst sync-exclude.lst.sample)
43
	@(cd ${WRKSRC} && ${CP} -f sync-exclude.lst sync-exclude.lst.sample)
45
44
46
post-install:
47
.if ${PORT_OPTIONS:MDOCS}
48
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
49
	(cd ${INSTALL_WRKSRC}/doc/latex && ${INSTALL_DATA} *.pdf \
50
		${STAGEDIR}${DOCSDIR})
51
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
52
	@(cd ${INSTALL_WRKSRC}/doc/html/unthemed && ${COPYTREE_SHARE} . \
53
		${STAGEDIR}${DOCSDIR}/html)
54
.endif
55
56
.include <bsd.port.mk>
45
.include <bsd.port.mk>
(-)deskutils/mirall/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (mirall-1.6.3.tar.bz2) = 89e4488881a53956cdedab21d05eb61b2c00bb31a20286b72836e39a3126204b
1
SHA256 (mirall-1.7.1.tar.bz2) = ce1bc5784eb42d3f510c6d012d0ad86eefbab99f54f4e8653f546d2c4fda2f59
2
SIZE (mirall-1.6.3.tar.bz2) = 8635406
2
SIZE (mirall-1.7.1.tar.bz2) = 12668153
(-)deskutils/mirall/files/patch-src__CMakeLists.txt (-10 lines)
Lines 1-10 Link Here
1
--- src/CMakeLists.txt.orig
2
+++ src/CMakeLists.txt
3
@@ -131,6 +131,7 @@
4
 
5
 IF( NOT WIN32 AND NOT APPLE )
6
     set(libsync_SRCS ${libsync_SRCS} mirall/folderwatcher_linux.cpp)
7
+    link_directories($ENV{INOTIFY_LIB})
8
 ENDIF()
9
 IF( WIN32 )
10
     set(libsync_SRCS ${libsync_SRCS} mirall/folderwatcher_win.cpp)
(-)deskutils/mirall/files/patch-src__mirall__accountsettings.cpp (+12 lines)
Line 0 Link Here
1
--- src/mirall/accountsettings.cpp.orig
2
+++ src/mirall/accountsettings.cpp
3
@@ -29,7 +29,8 @@
4
 #include "selectivesyncdialog.h"
5
 #include "creds/abstractcredentials.h"
6
 
7
-#include <math.h>
8
+#include <climits>
9
+#include <cmath>
10
 
11
 #include <QDebug>
12
 #include <QDesktopServices>
(-)deskutils/mirall/files/patch-src__mirall__filesystem.cpp (-10 lines)
Lines 1-10 Link Here
1
--- src/mirall/filesystem.cpp.orig
2
+++ src/mirall/filesystem.cpp
3
@@ -12,6 +12,7 @@
4
  */
5
 
6
 #include "filesystem.h"
7
+#include <sys/time.h>
8
 #include <QFile>
9
 #include <QDebug>
10
 
(-)deskutils/mirall/files/patch-src__mirall__owncloudgui.cpp (+11 lines)
Line 0 Link Here
1
--- src/mirall/owncloudgui.cpp.orig
2
+++ src/mirall/owncloudgui.cpp
3
@@ -31,6 +31,8 @@
4
 #include "openfilemanager.h"
5
 #include "creds/abstractcredentials.h"
6
 
7
+#include <climits>
8
+
9
 #include <QDesktopServices>
10
 #include <QMessageBox>
11
 #include <QSignalMapper>
(-)deskutils/mirall/pkg-plist (-96 / +75 lines)
Lines 5-13 Link Here
5
include/owncloudsync/creds/abstractcredentials.h
5
include/owncloudsync/creds/abstractcredentials.h
6
include/owncloudsync/creds/httpcredentials.h
6
include/owncloudsync/creds/httpcredentials.h
7
include/owncloudsync/mirall/account.h
7
include/owncloudsync/mirall/account.h
8
include/owncloudsync/mirall/folder.h
9
include/owncloudsync/mirall/folderman.h
10
include/owncloudsync/mirall/folderwatcher.h
11
include/owncloudsync/mirall/mirallconfigfile.h
8
include/owncloudsync/mirall/mirallconfigfile.h
12
include/owncloudsync/mirall/networkjobs.h
9
include/owncloudsync/mirall/networkjobs.h
13
include/owncloudsync/mirall/progressdispatcher.h
10
include/owncloudsync/mirall/progressdispatcher.h
Lines 18-117 Link Here
18
lib/libhttpbf.a
15
lib/libhttpbf.a
19
lib/libowncloudsync.so
16
lib/libowncloudsync.so
20
lib/libowncloudsync.so.0
17
lib/libowncloudsync.so.0
21
lib/libowncloudsync.so.1.6.3
18
lib/libowncloudsync.so.1.7.1
22
lib/owncloud/libocsync.so
19
lib/owncloud/libocsync.so
23
lib/owncloud/libocsync.so.0
20
lib/owncloud/libocsync.so.0
24
lib/owncloud/libocsync.so.0.2.1
21
lib/owncloud/libocsync.so.0.2.1
22
%%PORTDOCS%%man/man1/owncloud.1.gz
23
%%PORTDOCS%%man/man1/owncloudcmd.1.gz
25
share/applications/owncloud.desktop
24
share/applications/owncloud.desktop
26
%%PORTDOCS%%%%DOCSDIR%%/html/.buildinfo
27
%%PORTDOCS%%%%DOCSDIR%%/html/_images/client_setup_wizard_components.png
28
%%PORTDOCS%%%%DOCSDIR%%/html/_images/client_setup_wizard_install_finish.png
29
%%PORTDOCS%%%%DOCSDIR%%/html/_images/client_setup_wizard_install_progress.png
30
%%PORTDOCS%%%%DOCSDIR%%/html/_images/client_setup_wizard_location.png
31
%%PORTDOCS%%%%DOCSDIR%%/html/_images/client_setup_wizard_main.png
32
%%PORTDOCS%%%%DOCSDIR%%/html/_images/folderwizard_local.png
33
%%PORTDOCS%%%%DOCSDIR%%/html/_images/folderwizard_remote.png
34
%%PORTDOCS%%%%DOCSDIR%%/html/_images/icon.png
35
%%PORTDOCS%%%%DOCSDIR%%/html/_images/ignored_files_editor.png
36
%%PORTDOCS%%%%DOCSDIR%%/html/_images/log_output_window.png
37
%%PORTDOCS%%%%DOCSDIR%%/html/_images/menu.png
38
%%PORTDOCS%%%%DOCSDIR%%/html/_images/oc_client_download_options.png
39
%%PORTDOCS%%%%DOCSDIR%%/html/_images/oc_client_windows_download.png
40
%%PORTDOCS%%%%DOCSDIR%%/html/_images/oc_website.png
41
%%PORTDOCS%%%%DOCSDIR%%/html/_images/save_log_file.png
42
%%PORTDOCS%%%%DOCSDIR%%/html/_images/security_warning_windows.png
43
%%PORTDOCS%%%%DOCSDIR%%/html/_images/settings_account.png
44
%%PORTDOCS%%%%DOCSDIR%%/html/_images/settings_activity.png
45
%%PORTDOCS%%%%DOCSDIR%%/html/_images/settings_general.png
46
%%PORTDOCS%%%%DOCSDIR%%/html/_images/settings_network.png
47
%%PORTDOCS%%%%DOCSDIR%%/html/_images/wizard_overview.png
48
%%PORTDOCS%%%%DOCSDIR%%/html/_images/wizard_url.png
49
%%PORTDOCS%%%%DOCSDIR%%/html/_images/wizard_user.png
50
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/accountsetup.txt
51
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/advancedusage.txt
52
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/architecture.txt
53
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/autoupdate.txt
54
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/building.txt
55
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/conffile.txt
56
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/faq.txt
57
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/glossary.txt
58
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/index.txt
59
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/installing-linux.txt
60
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/installing-macosx.txt
61
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/installing-windows.txt
62
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/installing.txt
63
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/introduction.txt
64
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/navigating.txt
65
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/options.txt
66
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/owncloud.1.txt
67
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/owncloudcmd.1.txt
68
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/owncloudcmd.txt
69
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/troubleshooting.txt
70
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/visualtour.txt
71
%%PORTDOCS%%%%DOCSDIR%%/html/_static/ajax-loader.gif
72
%%PORTDOCS%%%%DOCSDIR%%/html/_static/basic.css
73
%%PORTDOCS%%%%DOCSDIR%%/html/_static/comment-bright.png
74
%%PORTDOCS%%%%DOCSDIR%%/html/_static/comment-close.png
75
%%PORTDOCS%%%%DOCSDIR%%/html/_static/comment.png
76
%%PORTDOCS%%%%DOCSDIR%%/html/_static/default.css
77
%%PORTDOCS%%%%DOCSDIR%%/html/_static/doctools.js
78
%%PORTDOCS%%%%DOCSDIR%%/html/_static/down-pressed.png
79
%%PORTDOCS%%%%DOCSDIR%%/html/_static/down.png
80
%%PORTDOCS%%%%DOCSDIR%%/html/_static/file.png
81
%%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery.js
82
%%PORTDOCS%%%%DOCSDIR%%/html/_static/minus.png
83
%%PORTDOCS%%%%DOCSDIR%%/html/_static/plus.png
84
%%PORTDOCS%%%%DOCSDIR%%/html/_static/pygments.css
85
%%PORTDOCS%%%%DOCSDIR%%/html/_static/searchtools.js
86
%%PORTDOCS%%%%DOCSDIR%%/html/_static/sidebar.js
87
%%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore.js
88
%%PORTDOCS%%%%DOCSDIR%%/html/_static/up-pressed.png
89
%%PORTDOCS%%%%DOCSDIR%%/html/_static/up.png
90
%%PORTDOCS%%%%DOCSDIR%%/html/_static/websupport.js
91
%%PORTDOCS%%%%DOCSDIR%%/html/accountsetup.html
92
%%PORTDOCS%%%%DOCSDIR%%/html/advancedusage.html
93
%%PORTDOCS%%%%DOCSDIR%%/html/architecture.html
94
%%PORTDOCS%%%%DOCSDIR%%/html/autoupdate.html
95
%%PORTDOCS%%%%DOCSDIR%%/html/building.html
96
%%PORTDOCS%%%%DOCSDIR%%/html/conffile.html
97
%%PORTDOCS%%%%DOCSDIR%%/html/faq.html
98
%%PORTDOCS%%%%DOCSDIR%%/html/genindex.html
99
%%PORTDOCS%%%%DOCSDIR%%/html/glossary.html
100
%%PORTDOCS%%%%DOCSDIR%%/html/index.html
101
%%PORTDOCS%%%%DOCSDIR%%/html/installing-linux.html
102
%%PORTDOCS%%%%DOCSDIR%%/html/installing-macosx.html
103
%%PORTDOCS%%%%DOCSDIR%%/html/installing-windows.html
104
%%PORTDOCS%%%%DOCSDIR%%/html/installing.html
105
%%PORTDOCS%%%%DOCSDIR%%/html/introduction.html
106
%%PORTDOCS%%%%DOCSDIR%%/html/navigating.html
107
%%PORTDOCS%%%%DOCSDIR%%/html/objects.inv
108
%%PORTDOCS%%%%DOCSDIR%%/html/options.html
109
%%PORTDOCS%%%%DOCSDIR%%/html/owncloud.1.html
110
%%PORTDOCS%%%%DOCSDIR%%/html/owncloudcmd.1.html
111
%%PORTDOCS%%%%DOCSDIR%%/html/owncloudcmd.html
112
%%PORTDOCS%%%%DOCSDIR%%/html/search.html
113
%%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js
114
%%PORTDOCS%%%%DOCSDIR%%/html/troubleshooting.html
115
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/.buildinfo
25
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/.buildinfo
116
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_components.png
26
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_components.png
117
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_install_finish.png
27
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_install_finish.png
Lines 120-125 Link Here
120
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_main.png
30
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_main.png
121
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_local.png
31
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_local.png
122
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_remote.png
32
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_remote.png
33
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-error.png
34
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-information.png
35
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-offline.png
36
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-paused.png
37
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-syncing.png
123
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon.png
38
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon.png
124
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ignored_files_editor.png
39
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ignored_files_editor.png
125
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/log_output_window.png
40
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/log_output_window.png
Lines 202-212 Link Here
202
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/searchindex.js
117
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/searchindex.js
203
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/troubleshooting.html
118
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/troubleshooting.html
204
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/visualtour.html
119
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/visualtour.html
205
%%PORTDOCS%%%%DOCSDIR%%/html/visualtour.html
206
%%PORTDOCS%%%%DOCSDIR%%/latex/Makefile
120
%%PORTDOCS%%%%DOCSDIR%%/latex/Makefile
207
%%PORTDOCS%%%%DOCSDIR%%/latex/fncychap.sty
121
%%PORTDOCS%%%%DOCSDIR%%/latex/fncychap.sty
122
%%PORTDOCS%%%%DOCSDIR%%/latex/folderwizard_local.png
208
%%PORTDOCS%%%%DOCSDIR%%/latex/folderwizard_remote.png
123
%%PORTDOCS%%%%DOCSDIR%%/latex/folderwizard_remote.png
124
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-error.png
125
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-information.png
126
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-offline.png
127
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-paused.png
128
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-syncing.png
209
%%PORTDOCS%%%%DOCSDIR%%/latex/icon.png
129
%%PORTDOCS%%%%DOCSDIR%%/latex/icon.png
130
%%PORTDOCS%%%%DOCSDIR%%/latex/ignored_files_editor.png
210
%%PORTDOCS%%%%DOCSDIR%%/latex/log_output_window.png
131
%%PORTDOCS%%%%DOCSDIR%%/latex/log_output_window.png
211
%%PORTDOCS%%%%DOCSDIR%%/latex/logo-blue.pdf
132
%%PORTDOCS%%%%DOCSDIR%%/latex/logo-blue.pdf
212
%%PORTDOCS%%%%DOCSDIR%%/latex/menu.png
133
%%PORTDOCS%%%%DOCSDIR%%/latex/menu.png
Lines 222-227 Link Here
222
%%PORTDOCS%%%%DOCSDIR%%/latex/python.ist
143
%%PORTDOCS%%%%DOCSDIR%%/latex/python.ist
223
%%PORTDOCS%%%%DOCSDIR%%/latex/save_log_file.png
144
%%PORTDOCS%%%%DOCSDIR%%/latex/save_log_file.png
224
%%PORTDOCS%%%%DOCSDIR%%/latex/settings_account.png
145
%%PORTDOCS%%%%DOCSDIR%%/latex/settings_account.png
146
%%PORTDOCS%%%%DOCSDIR%%/latex/settings_activity.png
147
%%PORTDOCS%%%%DOCSDIR%%/latex/settings_general.png
148
%%PORTDOCS%%%%DOCSDIR%%/latex/settings_network.png
225
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinx.sty
149
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinx.sty
226
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhowto.cls
150
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhowto.cls
227
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmanual.cls
151
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmanual.cls
Lines 229-241 Link Here
229
%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_overview.png
153
%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_overview.png
230
%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_url.png
154
%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_url.png
231
%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_user.png
155
%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_user.png
232
%%PORTDOCS%%%%DOCSDIR%%/logo-blue.pdf
156
share/icons/hicolor/128x128/apps/ownCloud_error.png
233
%%PORTDOCS%%%%DOCSDIR%%/ownCloudClientManual.pdf
157
share/icons/hicolor/128x128/apps/ownCloud_error_shared.png
158
share/icons/hicolor/128x128/apps/ownCloud_ok.png
159
share/icons/hicolor/128x128/apps/ownCloud_ok_shared.png
160
share/icons/hicolor/128x128/apps/ownCloud_sync.png
161
share/icons/hicolor/128x128/apps/ownCloud_sync_shared.png
162
share/icons/hicolor/128x128/apps/ownCloud_warn.png
163
share/icons/hicolor/128x128/apps/ownCloud_warn_shared.png
234
share/icons/hicolor/128x128/apps/owncloud.png
164
share/icons/hicolor/128x128/apps/owncloud.png
165
share/icons/hicolor/16x16/apps/ownCloud_error.png
166
share/icons/hicolor/16x16/apps/ownCloud_error_shared.png
167
share/icons/hicolor/16x16/apps/ownCloud_ok.png
168
share/icons/hicolor/16x16/apps/ownCloud_ok_shared.png
169
share/icons/hicolor/16x16/apps/ownCloud_sync.png
170
share/icons/hicolor/16x16/apps/ownCloud_sync_shared.png
171
share/icons/hicolor/16x16/apps/ownCloud_warn.png
172
share/icons/hicolor/16x16/apps/ownCloud_warn_shared.png
235
share/icons/hicolor/22x22/apps/owncloud.png
173
share/icons/hicolor/22x22/apps/owncloud.png
174
share/icons/hicolor/256x256/apps/ownCloud_error.png
175
share/icons/hicolor/256x256/apps/ownCloud_error_shared.png
176
share/icons/hicolor/256x256/apps/ownCloud_ok.png
177
share/icons/hicolor/256x256/apps/ownCloud_ok_shared.png
178
share/icons/hicolor/256x256/apps/ownCloud_sync.png
179
share/icons/hicolor/256x256/apps/ownCloud_sync_shared.png
180
share/icons/hicolor/256x256/apps/ownCloud_warn.png
181
share/icons/hicolor/256x256/apps/ownCloud_warn_shared.png
182
share/icons/hicolor/32x32/apps/ownCloud_error.png
183
share/icons/hicolor/32x32/apps/ownCloud_error_shared.png
184
share/icons/hicolor/32x32/apps/ownCloud_ok.png
185
share/icons/hicolor/32x32/apps/ownCloud_ok_shared.png
186
share/icons/hicolor/32x32/apps/ownCloud_sync.png
187
share/icons/hicolor/32x32/apps/ownCloud_sync_shared.png
188
share/icons/hicolor/32x32/apps/ownCloud_warn.png
189
share/icons/hicolor/32x32/apps/ownCloud_warn_shared.png
236
share/icons/hicolor/32x32/apps/owncloud.png
190
share/icons/hicolor/32x32/apps/owncloud.png
191
share/icons/hicolor/48x48/apps/ownCloud_error.png
192
share/icons/hicolor/48x48/apps/ownCloud_error_shared.png
193
share/icons/hicolor/48x48/apps/ownCloud_ok.png
194
share/icons/hicolor/48x48/apps/ownCloud_ok_shared.png
195
share/icons/hicolor/48x48/apps/ownCloud_sync.png
196
share/icons/hicolor/48x48/apps/ownCloud_sync_shared.png
197
share/icons/hicolor/48x48/apps/ownCloud_warn.png
198
share/icons/hicolor/48x48/apps/ownCloud_warn_shared.png
237
share/icons/hicolor/48x48/apps/owncloud.png
199
share/icons/hicolor/48x48/apps/owncloud.png
200
share/icons/hicolor/64x64/apps/ownCloud_error.png
201
share/icons/hicolor/64x64/apps/ownCloud_error_shared.png
202
share/icons/hicolor/64x64/apps/ownCloud_ok.png
203
share/icons/hicolor/64x64/apps/ownCloud_ok_shared.png
204
share/icons/hicolor/64x64/apps/ownCloud_sync.png
205
share/icons/hicolor/64x64/apps/ownCloud_sync_shared.png
206
share/icons/hicolor/64x64/apps/ownCloud_warn.png
207
share/icons/hicolor/64x64/apps/ownCloud_warn_shared.png
238
share/icons/hicolor/64x64/apps/owncloud.png
208
share/icons/hicolor/64x64/apps/owncloud.png
209
share/icons/hicolor/72x72/apps/ownCloud_error.png
210
share/icons/hicolor/72x72/apps/ownCloud_error_shared.png
211
share/icons/hicolor/72x72/apps/ownCloud_ok.png
212
share/icons/hicolor/72x72/apps/ownCloud_ok_shared.png
213
share/icons/hicolor/72x72/apps/ownCloud_sync.png
214
share/icons/hicolor/72x72/apps/ownCloud_sync_shared.png
215
share/icons/hicolor/72x72/apps/ownCloud_warn.png
216
share/icons/hicolor/72x72/apps/ownCloud_warn_shared.png
217
share/nautilus-python/extensions/syncstate.py
239
share/owncloud/i18n/mirall_TW.qm
218
share/owncloud/i18n/mirall_TW.qm
240
share/owncloud/i18n/mirall_ca.qm
219
share/owncloud/i18n/mirall_ca.qm
241
share/owncloud/i18n/mirall_cs.qm
220
share/owncloud/i18n/mirall_cs.qm

Return to bug 197419