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

(-)Makefile (-3 / +8 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	owncloudclient
4
PORTNAME=	owncloudclient
5
PORTVERSION=	2.3.4
5
PORTVERSION=	2.4.0
6
PORTREVISION=	1
7
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
8
CATEGORIES=	deskutils
7
CATEGORIES=	deskutils
9
8
Lines 39-49 Link Here
39
38
40
PLIST_SUB=	VERSION=${PORTVERSION}
39
PLIST_SUB=	VERSION=${PORTVERSION}
41
40
41
.include <bsd.port.pre.mk>
42
42
post-patch:
43
post-patch:
43
	@${REINPLACE_CMD} -e \
44
	@${REINPLACE_CMD} -e \
44
		's|.lst |.lst.sample |' ${WRKSRC}/CMakeLists.txt
45
		's|.lst |.lst.sample |' ${WRKSRC}/CMakeLists.txt
46
.if ${OSVERSION} < 1100101
47
	@${REINPLACE_CMD} -e 's/ -fstack-protector-strong//' \
48
		${WRKSRC}/src/CMakeLists.txt
49
.endif
45
50
46
pre-configure:
51
pre-configure:
47
	@(cd ${WRKSRC} && ${CP} -f sync-exclude.lst sync-exclude.lst.sample)
52
	@(cd ${WRKSRC} && ${CP} -f sync-exclude.lst sync-exclude.lst.sample)
48
53
49
.include <bsd.port.mk>
54
.include <bsd.port.post.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1512670982
1
TIMESTAMP = 1517213252
2
SHA256 (owncloud-client-v2.3.4_GH0.tar.gz) = 17dd5bb7afb996ee155b8fe68a4fd4b75a8d46563226da470c4e598d6f990bc6
2
SHA256 (owncloud-client-v2.4.0_GH0.tar.gz) = e4abdd33f24e21f15df53f2e8de90d123f974c519259a8c9d86d22c8e4103b86
3
SIZE (owncloud-client-v2.3.4_GH0.tar.gz) = 14482919
3
SIZE (owncloud-client-v2.4.0_GH0.tar.gz) = 14732065
(-)files/patch-doc_CMakeLists.txt (-7 / +14 lines)
Lines 1-11 Link Here
1
--- doc/CMakeLists.txt.orig	2015-03-16 14:28:58 UTC
1
--- doc/CMakeLists.txt.orig	2017-12-20 15:03:02 UTC
2
+++ doc/CMakeLists.txt
2
+++ doc/CMakeLists.txt
3
@@ -12,6 +12,8 @@ if(SPHINX_FOUND)
3
@@ -11,7 +11,7 @@ if(SPHINX_FOUND)
4
     # assets
4
     # assets
5
     set(LATEX_LOGO          "${CMAKE_CURRENT_SOURCE_DIR}/logo-blue.pdf")
5
     set(LATEX_LOGO          "${CMAKE_CURRENT_SOURCE_DIR}/logo-blue.pdf")
6
 
6
 
7
+    set(CMAKE_INSTALL_DOCDIR "${CMAKE_INSTALL_DATAROOTDIR}/doc/owncloudclient")
7
-    set(APPLICATION_DOC_DIR "${CMAKE_INSTALL_DOCDIR}/${PACKAGE}")
8
+
8
+    set(APPLICATION_DOC_DIR "${CMAKE_INSTALL_DATAROOTDIR}/doc/owncloudclient")
9
     install(DIRECTORY ${SPHINX_HTML_DIR} DESTINATION ${CMAKE_INSTALL_DOCDIR} OPTIONAL)
9
     install(DIRECTORY ${SPHINX_HTML_DIR} DESTINATION ${APPLICATION_DOC_DIR} OPTIONAL)
10
     install(DIRECTORY ${SPHINX_MAN_DIR} DESTINATION ${CMAKE_INSTALL_MANDIR} OPTIONAL)
10
     install(DIRECTORY ${SPHINX_PDF_DIR} DESTINATION ${APPLICATION_DOC_DIR} OPTIONAL)
11
     install(DIRECTORY ${SPHINX_PDF_DIR} DESTINATION ${CMAKE_INSTALL_DOCDIR} OPTIONAL)
11
     install(DIRECTORY ${SPHINX_QCH_DIR} DESTINATION ${APPLICATION_DOC_DIR} OPTIONAL)
12
@@ -84,4 +84,4 @@ if(SPHINX_FOUND)
13
                                        ${SPHINX_HTMLHELP_DIR} )
14
     add_custom_target( doc-chm pushd ${SPHINX_HTMLHELP_DIR}; ${MSHTML_COMPILER} *.hhp; popd
15
 				   DEPENDS doc-chm-sphinx )
16
-endif(SPHINX_FOUND)
17
\ No newline at end of file
18
+endif(SPHINX_FOUND)
(-)files/patch-man_CMakeLists.txt (+15 lines)
Line 0 Link Here
1
--- man/CMakeLists.txt.orig	2017-12-20 15:03:02 UTC
2
+++ man/CMakeLists.txt
3
@@ -3,6 +3,12 @@ if(SPHINX_FOUND)
4
     # Sphinx cache with pickled ReST documents
5
     set(SPHINX_CACHE_DIR "${CMAKE_CURRENT_BINARY_DIR}/_doctrees")
6
 
7
+    if(WITH_DOC)
8
+       add_custom_target(man ALL DEPENDS doc-man COMMENT "Building manual pages...")
9
+    else(WITH_DOC)
10
+       add_custom_target(man DEPENDS doc-maan COMMENT "Building manual pages...")
11
+    endif(WITH_DOC)
12
+
13
     # HTML output directory
14
     set(SPHINX_MAN_DIR      "${CMAKE_CURRENT_BINARY_DIR}/man1")
15
     install(DIRECTORY ${SPHINX_MAN_DIR} DESTINATION ${CMAKE_INSTALL_MANDIR} OPTIONAL)
(-)files/patch-src_gui_accountsettings.cpp (-4 / +4 lines)
Lines 1-12 Link Here
1
--- src/gui/accountsettings.cpp.orig	2016-05-12 07:59:12 UTC
1
--- src/gui/accountsettings.cpp.orig	2017-12-20 15:03:02 UTC
2
+++ src/gui/accountsettings.cpp
2
+++ src/gui/accountsettings.cpp
3
@@ -31,7 +31,8 @@
3
@@ -34,7 +34,8 @@
4
 #include "creds/abstractcredentials.h"
5
 #include "tooltipupdater.h"
4
 #include "tooltipupdater.h"
5
 #include "filesystem.h"
6
 
6
 
7
-#include <math.h>
7
-#include <math.h>
8
+#include <climits>
8
+#include <climits>
9
+#include <cmath>
9
+#include <cmath>
10
 
10
 
11
 #include <QDebug>
12
 #include <QDesktopServices>
11
 #include <QDesktopServices>
12
 #include <QDir>
(-)files/patch-src_gui_generalsettings.cpp (-4 / +4 lines)
Lines 1-14 Link Here
1
--- src/gui/generalsettings.cpp.orig	2016-05-12 07:59:12 UTC
1
--- src/gui/generalsettings.cpp.orig	2017-12-20 15:03:02 UTC
2
+++ src/gui/generalsettings.cpp
2
+++ src/gui/generalsettings.cpp
3
@@ -124,6 +124,7 @@
3
@@ -117,6 +117,7 @@ void GeneralSettings::loadMiscSettings()
4
 
4
 
5
 void GeneralSettings::slotUpdateInfo()
5
 void GeneralSettings::slotUpdateInfo()
6
 {
6
 {
7
+#if 0
7
+#if 0
8
     // Note: the sparkle-updater is not an OCUpdater
8
     // Note: the sparkle-updater is not an OCUpdater
9
     OCUpdater *updater = qobject_cast<OCUpdater*>(Updater::instance());
9
     OCUpdater *updater = qobject_cast<OCUpdater *>(Updater::instance());
10
     if (ConfigFile().skipUpdateCheck()) {
10
     if (ConfigFile().skipUpdateCheck()) {
11
@@ -140,6 +141,7 @@
11
@@ -133,6 +134,7 @@ void GeneralSettings::slotUpdateInfo()
12
         // can't have those infos from sparkle currently
12
         // can't have those infos from sparkle currently
13
         _ui->updatesGroupBox->setVisible(false);
13
         _ui->updatesGroupBox->setVisible(false);
14
     }
14
     }
(-)files/patch-src_gui_owncloudgui.cpp (-3 / +3 lines)
Lines 1-7 Link Here
1
--- src/gui/owncloudgui.cpp.orig	2016-05-12 07:59:12 UTC
1
--- src/gui/owncloudgui.cpp.orig	2017-12-20 15:03:02 UTC
2
+++ src/gui/owncloudgui.cpp
2
+++ src/gui/owncloudgui.cpp
3
@@ -34,6 +34,8 @@
3
@@ -35,6 +35,8 @@
4
 #include "accountmanager.h"
4
 #include "common/syncjournalfilerecord.h"
5
 #include "creds/abstractcredentials.h"
5
 #include "creds/abstractcredentials.h"
6
 
6
 
7
+#include <climits>
7
+#include <climits>
(-)files/patch-src_libsync_configfile.cpp (-5 / +5 lines)
Lines 1-8 Link Here
1
--- src/libsync/configfile.cpp.orig	2016-05-12 07:59:12 UTC
1
--- src/libsync/configfile.cpp.orig	2017-12-20 15:03:02 UTC
2
+++ src/libsync/configfile.cpp
2
+++ src/libsync/configfile.cpp
3
@@ -415,11 +415,22 @@ bool ConfigFile::skipUpdateCheck( const 
3
@@ -448,11 +448,22 @@ bool ConfigFile::skipUpdateCheck(const QString &connec
4
     QString con( connection );
4
     if (connection.isEmpty())
5
     if( connection.isEmpty() ) con = defaultConnection();
5
         con = defaultConnection();
6
 
6
 
7
+#if 0
7
+#if 0
8
     QVariant fallback = getValue(QLatin1String(skipUpdateCheckC), con, false);
8
     QVariant fallback = getValue(QLatin1String(skipUpdateCheckC), con, false);
Lines 22-25 Link Here
22
+#endif
22
+#endif
23
 }
23
 }
24
 
24
 
25
 void ConfigFile::setSkipUpdateCheck( bool skip, const QString& connection )
25
 void ConfigFile::setSkipUpdateCheck(bool skip, const QString &connection)
(-)files/patch-src_libsync_syncjournaldb.h (-11 lines)
Lines 1-11 Link Here
1
--- src/libsync/syncjournaldb.h.orig	2015-03-16 14:28:58 UTC
2
+++ src/libsync/syncjournaldb.h
3
@@ -19,6 +19,8 @@
4
 #include <QDateTime>
5
 #include <QHash>
6
 
7
+#include <ctime>
8
+
9
 #include "utility.h"
10
 #include "ownsql.h"
11
 
(-)files/patch-src_libsync_syncjournalfilerecord.h (-10 lines)
Lines 1-10 Link Here
1
--- src/libsync/syncjournalfilerecord.h.orig	2015-03-16 14:28:58 UTC
2
+++ src/libsync/syncjournalfilerecord.h
3
@@ -14,6 +14,7 @@
4
 #ifndef SYNCJOURNALFILERECORD_H
5
 #define SYNCJOURNALFILERECORD_H
6
 
7
+#include <time.h>
8
 #include <QString>
9
 #include <QDateTime>
10
 
(-)pkg-plist (-11 / +20 lines)
Lines 9-15 Link Here
9
include/owncloudsync/mirall/progressdispatcher.h
9
include/owncloudsync/mirall/progressdispatcher.h
10
include/owncloudsync/mirall/syncengine.h
10
include/owncloudsync/mirall/syncengine.h
11
include/owncloudsync/mirall/syncfileitem.h
11
include/owncloudsync/mirall/syncfileitem.h
12
include/owncloudsync/mirall/syncjournaldb.h
13
include/owncloudsync/mirall/syncresult.h
12
include/owncloudsync/mirall/syncresult.h
14
lib/libowncloudsync.so
13
lib/libowncloudsync.so
15
lib/libowncloudsync.so.0
14
lib/libowncloudsync.so.0
Lines 29-34 Link Here
29
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-7.png
28
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-7.png
30
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-8.png
29
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-8.png
31
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-9.png
30
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-9.png
31
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-activity.png
32
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client12.png
32
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client12.png
33
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client6.png
33
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client6.png
34
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_local.png
34
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_local.png
Lines 43-48 Link Here
43
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/log_output_window.png
43
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/log_output_window.png
44
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/mac-share.png
44
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/mac-share.png
45
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/menu.png
45
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/menu.png
46
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ownCloud-remove_existing_connection.png
47
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ownCloud-remove_existing_connection_confirmation_dialog.png
48
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ownCloud-replacement_connection_wizard.png
46
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/save_log_file.png
49
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/save_log_file.png
47
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_account.png
50
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_account.png
48
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_activity.png
51
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_activity.png
Lines 50-60 Link Here
50
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_network.png
53
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_network.png
51
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/share-1.png
54
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/share-1.png
52
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/share-2.png
55
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/share-2.png
56
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/testing-checksums.png
53
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/advancedusage.rst.txt
57
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/advancedusage.rst.txt
54
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/architecture.rst.txt
58
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/architecture.rst.txt
55
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/autoupdate.rst.txt
59
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/autoupdate.rst.txt
56
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/building.rst.txt
60
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/building.rst.txt
57
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/conffile.rst.txt
61
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/conffile.rst.txt
62
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/envvars.rst.txt
58
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/faq.rst.txt
63
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/faq.rst.txt
59
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/glossary.rst.txt
64
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/glossary.rst.txt
60
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/index.rst.txt
65
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/index.rst.txt
Lines 63-70 Link Here
63
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/lowdiskspace.rst.txt
68
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/lowdiskspace.rst.txt
64
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/navigating.rst.txt
69
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/navigating.rst.txt
65
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/options.rst.txt
70
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/options.rst.txt
66
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloud.1.rst.txt
67
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloudcmd.1.rst.txt
68
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloudcmd.rst.txt
71
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloudcmd.rst.txt
69
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/troubleshooting.rst.txt
72
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/troubleshooting.rst.txt
70
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/visualtour.rst.txt
73
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/visualtour.rst.txt
Lines 96-101 Link Here
96
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/autoupdate.html
99
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/autoupdate.html
97
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/building.html
100
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/building.html
98
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/conffile.html
101
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/conffile.html
102
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/envvars.html
99
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/faq.html
103
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/faq.html
100
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/genindex.html
104
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/genindex.html
101
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/glossary.html
105
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/glossary.html
Lines 106-113 Link Here
106
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/navigating.html
110
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/navigating.html
107
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/objects.inv
111
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/objects.inv
108
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/options.html
112
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/options.html
109
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloud.1.html
110
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloudcmd.1.html
111
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloudcmd.html
113
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloudcmd.html
112
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/search.html
114
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/search.html
113
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/searchindex.js
115
%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/searchindex.js
Lines 121-128 Link Here
121
%%PORTDOCS%%%%DOCSDIR%%/latex/client-7.png
123
%%PORTDOCS%%%%DOCSDIR%%/latex/client-7.png
122
%%PORTDOCS%%%%DOCSDIR%%/latex/client-8.png
124
%%PORTDOCS%%%%DOCSDIR%%/latex/client-8.png
123
%%PORTDOCS%%%%DOCSDIR%%/latex/client-9.png
125
%%PORTDOCS%%%%DOCSDIR%%/latex/client-9.png
126
%%PORTDOCS%%%%DOCSDIR%%/latex/client-activity.png
124
%%PORTDOCS%%%%DOCSDIR%%/latex/client12.png
127
%%PORTDOCS%%%%DOCSDIR%%/latex/client12.png
125
%%PORTDOCS%%%%DOCSDIR%%/latex/client6.png
128
%%PORTDOCS%%%%DOCSDIR%%/latex/client6.png
129
%%PORTDOCS%%%%DOCSDIR%%/latex/footnotehyper-sphinx.sty
126
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-error.png
130
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-error.png
127
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-information.png
131
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-information.png
128
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-offline.png
132
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-offline.png
Lines 130-147 Link Here
130
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-syncing.png
134
%%PORTDOCS%%%%DOCSDIR%%/latex/icon-syncing.png
131
%%PORTDOCS%%%%DOCSDIR%%/latex/icon.png
135
%%PORTDOCS%%%%DOCSDIR%%/latex/icon.png
132
%%PORTDOCS%%%%DOCSDIR%%/latex/ignored_files_editor.png
136
%%PORTDOCS%%%%DOCSDIR%%/latex/ignored_files_editor.png
137
%%PORTDOCS%%%%DOCSDIR%%/latex/latexmkjarc
138
%%PORTDOCS%%%%DOCSDIR%%/latex/latexmkrc
133
%%PORTDOCS%%%%DOCSDIR%%/latex/log_output_window.png
139
%%PORTDOCS%%%%DOCSDIR%%/latex/log_output_window.png
134
%%PORTDOCS%%%%DOCSDIR%%/latex/logo-blue.pdf
140
%%PORTDOCS%%%%DOCSDIR%%/latex/logo-blue.pdf
135
%%PORTDOCS%%%%DOCSDIR%%/latex/mac-share.png
141
%%PORTDOCS%%%%DOCSDIR%%/latex/mac-share.png
136
%%PORTDOCS%%%%DOCSDIR%%/latex/menu.png
142
%%PORTDOCS%%%%DOCSDIR%%/latex/menu.png
137
%%PORTDOCS%%%%DOCSDIR%%/latex/footnotehyper-sphinx.sty
143
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloud-remove_existing_connection.png
138
%%PORTDOCS%%%%DOCSDIR%%/latex/latexmkjarc
144
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloud-remove_existing_connection_confirmation_dialog.png
139
%%PORTDOCS%%%%DOCSDIR%%/latex/latexmkrc
145
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloud-replacement_connection_wizard.png
146
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.aux
140
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.fdb_latexmk
147
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.fdb_latexmk
141
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.fls
148
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.fls
142
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhighlight.sty
143
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmulticell.sty
144
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.aux
145
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.idx
149
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.idx
146
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.ilg
150
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.ilg
147
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.ind
151
%%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.ind
Lines 156-163 Link Here
156
%%PORTDOCS%%%%DOCSDIR%%/latex/share-1.png
160
%%PORTDOCS%%%%DOCSDIR%%/latex/share-1.png
157
%%PORTDOCS%%%%DOCSDIR%%/latex/share-2.png
161
%%PORTDOCS%%%%DOCSDIR%%/latex/share-2.png
158
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinx.sty
162
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinx.sty
163
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhighlight.sty
159
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhowto.cls
164
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhowto.cls
160
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmanual.cls
165
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmanual.cls
166
%%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmulticell.sty
167
%%PORTDOCS%%%%DOCSDIR%%/latex/testing-checksums.png
168
share/icons/hicolor/1024x1024/apps/owncloud.png
161
share/icons/hicolor/128x128/apps/ownCloud_error.png
169
share/icons/hicolor/128x128/apps/ownCloud_error.png
162
share/icons/hicolor/128x128/apps/ownCloud_error_shared.png
170
share/icons/hicolor/128x128/apps/ownCloud_error_shared.png
163
share/icons/hicolor/128x128/apps/ownCloud_ok.png
171
share/icons/hicolor/128x128/apps/ownCloud_ok.png
Lines 175-180 Link Here
175
share/icons/hicolor/16x16/apps/ownCloud_sync_shared.png
183
share/icons/hicolor/16x16/apps/ownCloud_sync_shared.png
176
share/icons/hicolor/16x16/apps/ownCloud_warn.png
184
share/icons/hicolor/16x16/apps/ownCloud_warn.png
177
share/icons/hicolor/16x16/apps/ownCloud_warn_shared.png
185
share/icons/hicolor/16x16/apps/ownCloud_warn_shared.png
186
share/icons/hicolor/16x16/apps/owncloud.png
178
share/icons/hicolor/22x22/apps/owncloud.png
187
share/icons/hicolor/22x22/apps/owncloud.png
179
share/icons/hicolor/256x256/apps/ownCloud_error.png
188
share/icons/hicolor/256x256/apps/ownCloud_error.png
180
share/icons/hicolor/256x256/apps/ownCloud_error_shared.png
189
share/icons/hicolor/256x256/apps/ownCloud_error_shared.png

Return to bug 225583