Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Apr 2015 00:25:26 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r383185 - in head: . deskutils deskutils/mirall deskutils/owncloudclient deskutils/owncloudclient/files
Message-ID:  <201504040025.t340PQq1082963@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: madpilot
Date: Sat Apr  4 00:25:25 2015
New Revision: 383185
URL: https://svnweb.freebsd.org/changeset/ports/383185

Log:
  - Move deskutils/mirall to deskutils/owncloudclient due to upstream rename
  - Update to 1.8.0

Added:
  head/deskutils/owncloudclient/
     - copied from r383180, head/deskutils/mirall/
  head/deskutils/owncloudclient/files/patch-doc_CMakeLists.txt   (contents, props changed)
  head/deskutils/owncloudclient/files/patch-src_gui_accountsettings.cpp
     - copied, changed from r383180, head/deskutils/mirall/files/patch-src__mirall__accountsettings.cpp
  head/deskutils/owncloudclient/files/patch-src_gui_generalsettings.cpp
     - copied, changed from r383114, head/deskutils/mirall/files/patch-src__mirall__generalsettings.cpp
  head/deskutils/owncloudclient/files/patch-src_gui_owncloudgui.cpp
     - copied, changed from r383114, head/deskutils/mirall/files/patch-src__mirall__owncloudgui.cpp
  head/deskutils/owncloudclient/files/patch-src_libsync_configfile.cpp
     - copied, changed from r383114, head/deskutils/mirall/files/patch-src__mirall__mirallconfigfile.cpp
  head/deskutils/owncloudclient/files/patch-src_libsync_syncjournaldb.h   (contents, props changed)
  head/deskutils/owncloudclient/files/patch-src_libsync_syncjournalfilerecord.h
     - copied, changed from r383114, head/deskutils/mirall/files/patch-src__mirall__syncjournalfilerecord.h
Deleted:
  head/deskutils/mirall/
  head/deskutils/owncloudclient/files/patch-src__mirall__accountsettings.cpp
  head/deskutils/owncloudclient/files/patch-src__mirall__generalsettings.cpp
  head/deskutils/owncloudclient/files/patch-src__mirall__mirallconfigfile.cpp
  head/deskutils/owncloudclient/files/patch-src__mirall__owncloudgui.cpp
  head/deskutils/owncloudclient/files/patch-src__mirall__syncjournalfilerecord.h
Modified:
  head/MOVED
  head/deskutils/Makefile
  head/deskutils/owncloudclient/Makefile
  head/deskutils/owncloudclient/distinfo
  head/deskutils/owncloudclient/pkg-descr
  head/deskutils/owncloudclient/pkg-plist

Modified: head/MOVED
==============================================================================
--- head/MOVED	Sat Apr  4 00:22:57 2015	(r383184)
+++ head/MOVED	Sat Apr  4 00:25:25 2015	(r383185)
@@ -7453,3 +7453,4 @@ www/vimb|www/vimb-gtk3|2015-03-29|Split 
 ports-mgmt/portbuilder||2015-03-31|Has expired: No longer developed and overcome by changed in the Ports Collection
 devel/subversion16|devel/subversion|2015-03-31|Has expired: EoL, use devel/subversion
 lang/nimrod|lang/nim|2015-04-03|Renamed by upstream
+deskutils/mirall|deskutils/owncloudclient|2015-04-04|Renamed upstream

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Sat Apr  4 00:22:57 2015	(r383184)
+++ head/deskutils/Makefile	Sat Apr  4 00:25:25 2015	(r383185)
@@ -154,7 +154,6 @@
     SUBDIR += mdh
     SUBDIR += mencal
     SUBDIR += menumaker
-    SUBDIR += mirall
     SUBDIR += moregroupware
     SUBDIR += mozo
     SUBDIR += mrundlg
@@ -174,6 +173,7 @@
     SUBDIR += orage
     SUBDIR += osmo
     SUBDIR += osynctool
+    SUBDIR += owncloudclient
     SUBDIR += p5-Data-ICal
     SUBDIR += p5-Goo
     SUBDIR += p5-ZConf-BGSet

Modified: head/deskutils/owncloudclient/Makefile
==============================================================================
--- head/deskutils/mirall/Makefile	Fri Apr  3 22:39:37 2015	(r383180)
+++ head/deskutils/owncloudclient/Makefile	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,8 +1,8 @@
 # Created by: Mathieu Arnold
 # $FreeBSD$
 
-PORTNAME=	mirall
-PORTVERSION=	1.7.1
+PORTNAME=	owncloudclient
+PORTVERSION=	1.8.0
 CATEGORIES=	deskutils
 MASTER_SITES=	http://download.owncloud.com/desktop/stable/
 
@@ -19,6 +19,7 @@ USES=		cmake:outsource compiler:c++11-li
 USE_QT4=	corelib dbus gui network qtestlib webkit xml \
 		linguisttools_build moc_build qmake_build rcc_build uic_build \
 		sql-sqlite3_run
+USE_OPENSSL=	yes
 USE_SQLITE=	3
 CMAKE_ARGS=	-DBUILD_WITH_QT4:BOOL=ON \
 		-DCMAKE_INSTALL_MANDIR:STRING=man \
@@ -35,6 +36,12 @@ DOCS_BUILD_DEPENDS=	sphinx-build:${PORTS
 DOCS_USE=		tex=dvipsk:build,latex:build
 DOCS_CMAKE_ON=		-DWITH_DOC:BOOL=ON
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} != FreeBSD || ${OSVERSION} < 1000015
+WITH_OPENSSL_PORT=	yes
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} -e \
 		's|.lst |.lst.sample |' ${WRKSRC}/CMakeLists.txt

Modified: head/deskutils/owncloudclient/distinfo
==============================================================================
--- head/deskutils/mirall/distinfo	Fri Apr  3 22:39:37 2015	(r383180)
+++ head/deskutils/owncloudclient/distinfo	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,2 +1,2 @@
-SHA256 (mirall-1.7.1.tar.bz2) = ce1bc5784eb42d3f510c6d012d0ad86eefbab99f54f4e8653f546d2c4fda2f59
-SIZE (mirall-1.7.1.tar.bz2) = 12668153
+SHA256 (owncloudclient-1.8.0.tar.bz2) = 192bec5fe4b60c40d3a5d60abe224a1029af653ce445515290f3f1bb7967b0bd
+SIZE (owncloudclient-1.8.0.tar.bz2) = 13556481

Added: head/deskutils/owncloudclient/files/patch-doc_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/owncloudclient/files/patch-doc_CMakeLists.txt	Sat Apr  4 00:25:25 2015	(r383185)
@@ -0,0 +1,11 @@
+--- doc/CMakeLists.txt.orig	2015-03-16 14:28:58 UTC
++++ doc/CMakeLists.txt
+@@ -12,6 +12,8 @@ if(SPHINX_FOUND)
+     # assets
+     set(LATEX_LOGO          "${CMAKE_CURRENT_SOURCE_DIR}/logo-blue.pdf")
+ 
++    set(CMAKE_INSTALL_DOCDIR "${CMAKE_INSTALL_DATAROOTDIR}/doc/owncloudclient")
++
+     install(DIRECTORY ${SPHINX_HTML_DIR} DESTINATION ${CMAKE_INSTALL_DOCDIR} OPTIONAL)
+     install(DIRECTORY ${SPHINX_MAN_DIR} DESTINATION ${CMAKE_INSTALL_MANDIR} OPTIONAL)
+     install(DIRECTORY ${SPHINX_PDF_DIR} DESTINATION ${CMAKE_INSTALL_DOCDIR} OPTIONAL)

Copied and modified: head/deskutils/owncloudclient/files/patch-src_gui_accountsettings.cpp (from r383180, head/deskutils/mirall/files/patch-src__mirall__accountsettings.cpp)
==============================================================================
--- head/deskutils/mirall/files/patch-src__mirall__accountsettings.cpp	Fri Apr  3 22:39:37 2015	(r383180, copy source)
+++ head/deskutils/owncloudclient/files/patch-src_gui_accountsettings.cpp	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,6 +1,6 @@
---- src/mirall/accountsettings.cpp.orig
-+++ src/mirall/accountsettings.cpp
-@@ -29,7 +29,8 @@
+--- src/gui/accountsettings.cpp.orig	2015-03-16 14:28:58 UTC
++++ src/gui/accountsettings.cpp
+@@ -30,7 +30,8 @@
  #include "selectivesyncdialog.h"
  #include "creds/abstractcredentials.h"
  

Copied and modified: head/deskutils/owncloudclient/files/patch-src_gui_generalsettings.cpp (from r383114, head/deskutils/mirall/files/patch-src__mirall__generalsettings.cpp)
==============================================================================
--- head/deskutils/mirall/files/patch-src__mirall__generalsettings.cpp	Fri Apr  3 12:53:55 2015	(r383114, copy source)
+++ head/deskutils/owncloudclient/files/patch-src_gui_generalsettings.cpp	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,6 +1,6 @@
---- src/mirall/generalsettings.cpp.orig
-+++ src/mirall/generalsettings.cpp
-@@ -76,6 +76,7 @@
+--- src/gui/generalsettings.cpp.orig	2015-03-16 14:28:58 UTC
++++ src/gui/generalsettings.cpp
+@@ -85,6 +85,7 @@ void GeneralSettings::loadMiscSettings()
  
  void GeneralSettings::slotUpdateInfo()
  {
@@ -8,7 +8,7 @@
      if (OCUpdater *updater = dynamic_cast<OCUpdater*>(Updater::instance()))
      {
          connect(updater, SIGNAL(downloadStateChanged()), SLOT(slotUpdateInfo()), Qt::UniqueConnection);
-@@ -84,9 +85,12 @@
+@@ -93,9 +94,12 @@ void GeneralSettings::slotUpdateInfo()
          _ui->updateStateLabel->setText(updater->statusString());
          _ui->restartButton->setVisible(updater->downloadState() == OCUpdater::DownloadComplete);
      } else {

Copied and modified: head/deskutils/owncloudclient/files/patch-src_gui_owncloudgui.cpp (from r383114, head/deskutils/mirall/files/patch-src__mirall__owncloudgui.cpp)
==============================================================================
--- head/deskutils/mirall/files/patch-src__mirall__owncloudgui.cpp	Fri Apr  3 12:53:55 2015	(r383114, copy source)
+++ head/deskutils/owncloudclient/files/patch-src_gui_owncloudgui.cpp	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,6 +1,6 @@
---- src/mirall/owncloudgui.cpp.orig
-+++ src/mirall/owncloudgui.cpp
-@@ -31,6 +31,8 @@
+--- src/gui/owncloudgui.cpp.orig	2015-03-16 14:28:58 UTC
++++ src/gui/owncloudgui.cpp
+@@ -33,6 +33,8 @@
  #include "openfilemanager.h"
  #include "creds/abstractcredentials.h"
  

Copied and modified: head/deskutils/owncloudclient/files/patch-src_libsync_configfile.cpp (from r383114, head/deskutils/mirall/files/patch-src__mirall__mirallconfigfile.cpp)
==============================================================================
--- head/deskutils/mirall/files/patch-src__mirall__mirallconfigfile.cpp	Fri Apr  3 12:53:55 2015	(r383114, copy source)
+++ head/deskutils/owncloudclient/files/patch-src_libsync_configfile.cpp	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,6 +1,6 @@
---- src/mirall/mirallconfigfile.cpp.orig
-+++ src/mirall/mirallconfigfile.cpp
-@@ -359,11 +359,22 @@
+--- src/libsync/configfile.cpp.orig	2015-03-16 14:28:58 UTC
++++ src/libsync/configfile.cpp
+@@ -383,11 +383,22 @@ bool ConfigFile::skipUpdateCheck( const 
      QString con( connection );
      if( connection.isEmpty() ) con = defaultConnection();
  
@@ -22,4 +22,4 @@
 +#endif
  }
  
- void MirallConfigFile::setSkipUpdateCheck( bool skip, const QString& connection )
+ void ConfigFile::setSkipUpdateCheck( bool skip, const QString& connection )

Added: head/deskutils/owncloudclient/files/patch-src_libsync_syncjournaldb.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/owncloudclient/files/patch-src_libsync_syncjournaldb.h	Sat Apr  4 00:25:25 2015	(r383185)
@@ -0,0 +1,11 @@
+--- src/libsync/syncjournaldb.h.orig	2015-03-16 14:28:58 UTC
++++ src/libsync/syncjournaldb.h
+@@ -19,6 +19,8 @@
+ #include <QDateTime>
+ #include <QHash>
+ 
++#include <ctime>
++
+ #include "utility.h"
+ #include "ownsql.h"
+ 

Copied and modified: head/deskutils/owncloudclient/files/patch-src_libsync_syncjournalfilerecord.h (from r383114, head/deskutils/mirall/files/patch-src__mirall__syncjournalfilerecord.h)
==============================================================================
--- head/deskutils/mirall/files/patch-src__mirall__syncjournalfilerecord.h	Fri Apr  3 12:53:55 2015	(r383114, copy source)
+++ head/deskutils/owncloudclient/files/patch-src_libsync_syncjournalfilerecord.h	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,5 +1,5 @@
---- ./src/mirall/syncjournalfilerecord.h.orig	2014-01-09 19:53:32.000000000 +0100
-+++ ./src/mirall/syncjournalfilerecord.h	2014-01-09 19:53:44.000000000 +0100
+--- src/libsync/syncjournalfilerecord.h.orig	2015-03-16 14:28:58 UTC
++++ src/libsync/syncjournalfilerecord.h
 @@ -14,6 +14,7 @@
  #ifndef SYNCJOURNALFILERECORD_H
  #define SYNCJOURNALFILERECORD_H

Modified: head/deskutils/owncloudclient/pkg-descr
==============================================================================
--- head/deskutils/mirall/pkg-descr	Fri Apr  3 22:39:37 2015	(r383180)
+++ head/deskutils/owncloudclient/pkg-descr	Sat Apr  4 00:25:25 2015	(r383185)
@@ -1,4 +1,4 @@
-Mirall is a tool to synchronize files from ownCloud Server with your
+Owncloudclient is a tool to synchronize files from ownCloud Server with your
 computer. It uses OCSync as its syncing backend.
 
-WWW: https://github.com/owncloud/mirall
+WWW: https://github.com/owncloud/client

Modified: head/deskutils/owncloudclient/pkg-plist
==============================================================================
--- head/deskutils/mirall/pkg-plist	Fri Apr  3 22:39:37 2015	(r383180)
+++ head/deskutils/owncloudclient/pkg-plist	Sat Apr  4 00:25:25 2015	(r383185)
@@ -5,7 +5,7 @@ include/httpbf.h
 include/owncloudsync/creds/abstractcredentials.h
 include/owncloudsync/creds/httpcredentials.h
 include/owncloudsync/mirall/account.h
-include/owncloudsync/mirall/mirallconfigfile.h
+include/owncloudsync/mirall/configfile.h
 include/owncloudsync/mirall/networkjobs.h
 include/owncloudsync/mirall/progressdispatcher.h
 include/owncloudsync/mirall/syncengine.h
@@ -15,7 +15,7 @@ include/owncloudsync/mirall/syncresult.h
 lib/libhttpbf.a
 lib/libowncloudsync.so
 lib/libowncloudsync.so.0
-lib/libowncloudsync.so.1.7.1
+lib/libowncloudsync.so.1.8.0
 lib/owncloud/libocsync.so
 lib/owncloud/libocsync.so.0
 lib/owncloud/libocsync.so.0.2.1
@@ -23,11 +23,17 @@ lib/owncloud/libocsync.so.0.2.1
 %%PORTDOCS%%man/man1/owncloudcmd.1.gz
 share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/.buildinfo
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_components.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_install_finish.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_install_progress.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_location.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client_setup_wizard_main.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client1.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client10.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client11.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client2.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client3.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client4.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client5.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client6.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client7.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client8.png
+%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client9.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_local.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_remote.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-error.png
@@ -39,19 +45,11 @@ share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ignored_files_editor.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/log_output_window.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/menu.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/oc_client_download_options.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/oc_client_windows_download.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/oc_website.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/save_log_file.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/security_warning_windows.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_account.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_activity.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_general.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_network.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/wizard_overview.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/wizard_url.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/wizard_user.png
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/accountsetup.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/advancedusage.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/architecture.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/autoupdate.txt
@@ -60,9 +58,6 @@ share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/faq.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/glossary.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/index.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/installing-linux.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/installing-macosx.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/installing-windows.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/installing.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/introduction.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/navigating.txt
@@ -92,7 +87,6 @@ share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/up-pressed.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/up.png
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/websupport.js
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/accountsetup.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/advancedusage.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/architecture.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/autoupdate.html
@@ -102,9 +96,6 @@ share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/genindex.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/glossary.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/installing-linux.html
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/installing-macosx.html
-%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/installing-windows.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/installing.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/introduction.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/navigating.html
@@ -118,6 +109,17 @@ share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/troubleshooting.html
 %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/visualtour.html
 %%PORTDOCS%%%%DOCSDIR%%/latex/Makefile
+%%PORTDOCS%%%%DOCSDIR%%/latex/client1.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client10.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client11.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client2.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client3.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client4.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client5.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client6.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client7.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client8.png
+%%PORTDOCS%%%%DOCSDIR%%/latex/client9.png
 %%PORTDOCS%%%%DOCSDIR%%/latex/fncychap.sty
 %%PORTDOCS%%%%DOCSDIR%%/latex/folderwizard_local.png
 %%PORTDOCS%%%%DOCSDIR%%/latex/folderwizard_remote.png
@@ -150,9 +152,6 @@ share/applications/owncloud.desktop
 %%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhowto.cls
 %%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmanual.cls
 %%PORTDOCS%%%%DOCSDIR%%/latex/tabulary.sty
-%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_overview.png
-%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_url.png
-%%PORTDOCS%%%%DOCSDIR%%/latex/wizard_user.png
 share/icons/hicolor/128x128/apps/ownCloud_error.png
 share/icons/hicolor/128x128/apps/ownCloud_error_shared.png
 share/icons/hicolor/128x128/apps/ownCloud_ok.png
@@ -179,6 +178,7 @@ share/icons/hicolor/256x256/apps/ownClou
 share/icons/hicolor/256x256/apps/ownCloud_sync_shared.png
 share/icons/hicolor/256x256/apps/ownCloud_warn.png
 share/icons/hicolor/256x256/apps/ownCloud_warn_shared.png
+share/icons/hicolor/256x256/apps/owncloud.png
 share/icons/hicolor/32x32/apps/ownCloud_error.png
 share/icons/hicolor/32x32/apps/ownCloud_error_shared.png
 share/icons/hicolor/32x32/apps/ownCloud_ok.png
@@ -197,6 +197,7 @@ share/icons/hicolor/48x48/apps/ownCloud_
 share/icons/hicolor/48x48/apps/ownCloud_warn.png
 share/icons/hicolor/48x48/apps/ownCloud_warn_shared.png
 share/icons/hicolor/48x48/apps/owncloud.png
+share/icons/hicolor/512x512/apps/owncloud.png
 share/icons/hicolor/64x64/apps/ownCloud_error.png
 share/icons/hicolor/64x64/apps/ownCloud_error_shared.png
 share/icons/hicolor/64x64/apps/ownCloud_ok.png
@@ -215,33 +216,33 @@ share/icons/hicolor/72x72/apps/ownCloud_
 share/icons/hicolor/72x72/apps/ownCloud_warn.png
 share/icons/hicolor/72x72/apps/ownCloud_warn_shared.png
 share/nautilus-python/extensions/syncstate.py
-share/owncloud/i18n/mirall_TW.qm
-share/owncloud/i18n/mirall_ca.qm
-share/owncloud/i18n/mirall_cs.qm
-share/owncloud/i18n/mirall_de.qm
-share/owncloud/i18n/mirall_el.qm
-share/owncloud/i18n/mirall_en.qm
-share/owncloud/i18n/mirall_es.qm
-share/owncloud/i18n/mirall_es_AR.qm
-share/owncloud/i18n/mirall_et.qm
-share/owncloud/i18n/mirall_eu.qm
-share/owncloud/i18n/mirall_fa.qm
-share/owncloud/i18n/mirall_fi.qm
-share/owncloud/i18n/mirall_fr.qm
-share/owncloud/i18n/mirall_gl.qm
-share/owncloud/i18n/mirall_hu.qm
-share/owncloud/i18n/mirall_it.qm
-share/owncloud/i18n/mirall_ja.qm
-share/owncloud/i18n/mirall_nl.qm
-share/owncloud/i18n/mirall_pl.qm
-share/owncloud/i18n/mirall_pt.qm
-share/owncloud/i18n/mirall_pt_BR.qm
-share/owncloud/i18n/mirall_ru.qm
-share/owncloud/i18n/mirall_sk.qm
-share/owncloud/i18n/mirall_sl.qm
-share/owncloud/i18n/mirall_sv.qm
-share/owncloud/i18n/mirall_th.qm
-share/owncloud/i18n/mirall_tr.qm
-share/owncloud/i18n/mirall_uk.qm
-share/owncloud/i18n/mirall_zh_CN.qm
-share/owncloud/i18n/mirall_zh_TW.qm
+share/owncloud/i18n/client_TW.qm
+share/owncloud/i18n/client_ca.qm
+share/owncloud/i18n/client_cs.qm
+share/owncloud/i18n/client_de.qm
+share/owncloud/i18n/client_el.qm
+share/owncloud/i18n/client_en.qm
+share/owncloud/i18n/client_es.qm
+share/owncloud/i18n/client_es_AR.qm
+share/owncloud/i18n/client_et.qm
+share/owncloud/i18n/client_eu.qm
+share/owncloud/i18n/client_fa.qm
+share/owncloud/i18n/client_fi.qm
+share/owncloud/i18n/client_fr.qm
+share/owncloud/i18n/client_gl.qm
+share/owncloud/i18n/client_hu.qm
+share/owncloud/i18n/client_it.qm
+share/owncloud/i18n/client_ja.qm
+share/owncloud/i18n/client_nl.qm
+share/owncloud/i18n/client_pl.qm
+share/owncloud/i18n/client_pt.qm
+share/owncloud/i18n/client_pt_BR.qm
+share/owncloud/i18n/client_ru.qm
+share/owncloud/i18n/client_sk.qm
+share/owncloud/i18n/client_sl.qm
+share/owncloud/i18n/client_sv.qm
+share/owncloud/i18n/client_th.qm
+share/owncloud/i18n/client_tr.qm
+share/owncloud/i18n/client_uk.qm
+share/owncloud/i18n/client_zh_CN.qm
+share/owncloud/i18n/client_zh_TW.qm



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504040025.t340PQq1082963>