Port details |
- onlyoffice-documentserver Secure office and productivity apps
- 8.2.0.143_1 www =5 8.0.1.31Version of this port present on the latest quarterly branch.
- Maintainer: mikael@FreeBSD.org
- Port Added: 2022-01-19 07:39:05
- Last Update: 2024-11-13 11:57:17
- Commit Hash: 29abb99
- People watching this port, also watch:: openssl, gdisk, chromium, xpdf, vlc
- License: AGPLv3
- WWW:
- https://www.onlyoffice.com/
- Description:
- ONLYOFFICE Document Server is an online office suite comprising viewers and
editors for texts, spreadsheets and presentations, fully compatible with
Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing
in real time.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- onlyoffice-documentserver>0:www/onlyoffice-documentserver
- Conflicts:
- CONFLICTS_BUILD:
- To install the port:
- cd /usr/ports/www/onlyoffice-documentserver/ && make install clean
- To add the package, run one of these commands:
- pkg install www/onlyoffice-documentserver
- pkg install onlyoffice-documentserver
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: onlyoffice-documentserver
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1730734950
SHA256 (v8-8.9.255.25_all.tar.gz) = 54853ef93accc063a82a0dc29457b25c9b6d88315431d62e06ab1f84797c5f80
SIZE (v8-8.9.255.25_all.tar.gz) = 72818814
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- py311-Jinja2>=0 : devel/py-Jinja2@py311
- boost-libs>0 : devel/boost-libs
- glib>=2.54 : devel/glib20
- gn : devel/gn
- java : java/openjdk11
- ninja : devel/ninja
- npm : www/npm-node18
- libcrypto.a : security/openssl
- fakeroot : security/fakeroot
- gmake>=4.4.1 : devel/gmake
- node : www/node18
- pkgconf>=1.3.0_1 : devel/pkgconf
- python3.11 : lang/python311
- psql : databases/postgresql16-client
- autoconf>=2.72 : devel/autoconf
- automake>=1.17 : devel/automake
- qt5-qmake>=5.15 : devel/qt5-qmake
- Runtime dependencies:
-
- py311-supervisor>0 : sysutils/py-supervisor@py311
- gsed : textproc/gsed
- nginx : www/nginx
- pwgen : sysutils/pwgen
- rabbitmq>0 : net/rabbitmq
- webfonts>=0 : x11-fonts/webfonts
- psql : databases/postgresql16-client
- Library dependencies:
-
- libboost_regex.so : devel/boost-libs
- libcurl.so : ftp/curl
- libharfbuzz.so : print/harfbuzz
- libiconv.so : converters/libiconv
- libicutu.so : devel/icu
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for onlyoffice-documentserver-8.2.0.143_1:
====> Options available for the single DB: you have to select exactly one of them
MYSQL=off: MySQL database support
PGSQL=on: PostgreSQL database support
===> Use 'make config' to modify these settings
- Options name:
- www_onlyoffice-documentserver
- USES:
- autoreconf:build dos2unix fakeroot gmake gnome iconv localbase nodejs:18,build pkgconfig python:3.9+,build qt:5 trigger pgsql
- pkg-message:
- For install:
- CONFIGURATION:
-------------
The configuration file can be found (or created) at the following path:
/usr/local/etc/onlyoffice/documentserver/local.json
The default values are available in the default.json configuration file,
which is available in the folders above. Please do not edit the contents of the
default.json file directly. The default values will be restored each time you
upgrade Document Server to a new version and all your changes will be lost.
1. Enable services at startup in the /etc/rc.conf file:
nginx_enable="YES"
rabbitmq_enable="YES"
supervisord_enable="YES"
Optionally in case of a jail with local IP and no internet access:
update /etc/hosts in order to resolve your nextcloud server to its local IP
2. Install a database server and set up the database (either PostgreSQL or MySQL):
For PostgreSQL (don't forget to change the password):
# service postgresql initdb
# service postgresql start
# psql -U postgres -c "CREATE DATABASE onlyoffice;"
# psql -U postgres -c "CREATE USER onlyoffice WITH password 'onlyoffice';"
# psql -U postgres -c "GRANT ALL privileges ON DATABASE onlyoffice TO onlyoffice;"
# psql -U postgres -c "ALTER DATABASE onlyoffice OWNER to onlyoffice;"
# psql -hlocalhost -Uonlyoffice -d onlyoffice -f /usr/local/www/onlyoffice/documentserver/server/schema/postgresql/createdb.sql
Optionally in case of a jail with local IP:
update /var/db/postgres/data13/pg_hba.conf accordingly
For MySQL don't forget to change the password):
# service mysql-server start
# mysql -u root -p -e "CREATE DATABASE onlyoffice DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;"
# mysql -u root -p -e "CREATE USER 'onlyoffice'@'localhost' IDENTIFIED BY 'onlyoffice';"
# mysql -u root -p -e "GRANT ALL privileges ON onlyoffice.* TO 'onlyoffice'@'localhost';"
# mysql -u onlyoffice -D onlyoffice -p < /usr/local/www/onlyoffice/documentserver/server/schema/mysql/createdb.sql
3. Create a new rabbitmq user for the ONLYOFFICE Document Server configuration (don't forget to change the password):
# service rabbitmq start
# rabbitmqctl --erlang-cookie `cat /var/db/rabbitmq/.erlang.cookie` add_user onlyoffice password
# rabbitmqctl --erlang-cookie `cat /var/db/rabbitmq/.erlang.cookie` set_user_tags onlyoffice administrator
# rabbitmqctl --erlang-cookie `cat /var/db/rabbitmq/.erlang.cookie` set_permissions -p / onlyoffice ".*" ".*" ".*"
and change it in /usr/local/etc/onlyoffice/documentserver/local.json accordingly.
4. Set up supervisord in order to execute documentserver services:
- let supervisord.conf load files contained in this directory by adding to
/usr/local/etc/supervisord.conf:
[include]
files = /usr/local/etc/onlyoffice/documentserver/supervisor/*.conf
- start supervisord:
# service supervisord start
5. Set up nginx:
- For HTTP include the following in your /usr/local/etc/nginx/nginx.conf file:
include /usr/local/etc/onlyoffice/documentserver/nginx/ds.conf;
NOTE: documentserver-update-securelink.sh will only update ./nginx/ds.conf and local.json under /usr/local/etc/onlyoffice/documentserver/!
- run documentserver-update-securelink.sh once for creationg a verysecretstring
- start nginx:
# service nginx start
6. Follow the following doc If you want to use Onlyoffice with Nextcloud:
- https://api.onlyoffice.com/editors/nextcloud
7. Install OnlyOffice plugins (you'll need internet):
# /usr/local/bin/documentserver-pluginsmanager.sh --update=/usr/local/www/onlyoffice/documentserver/sdkjs-plugins/plugin-list-default.json
8. Enjoy.
- If upgrading from < 7.1.0.215:
- If you are upgrading onlyoffice-documentserver from a version prior to 7.1.0.215,
you need to update the database schema:
For PostgreSQL:
psql -U postgres -d onlyoffice -f /usr/local/www/onlyoffice/documentserver/server/schema/postgresql/upgrade/upgradev710.sql
For MySQL:
mysql -u onlyoffice -D onlyoffice -p < /usr/local/www/onlyoffice/documentserver/server/schema/mysql/upgrade/upgradev710.sql
- If upgrading from > 7.1.0.215 and < 7.2.1.34:
- If you are upgrading onlyoffice-documentserver from a version prior to 7.2.1.34,
you need to update the database schema:
For PostgreSQL:
psql -U postgres -d onlyoffice -f /usr/local/www/onlyoffice/documentserver/server/schema/postgresql/upgrade/upgradev720.sql
For MySQL:
mysql -u onlyoffice -D onlyoffice -p < /usr/local/www/onlyoffice/documentserver/server/schema/mysql/upgrade/upgradev720.sql
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
8.2.0.143_1 13 Nov 2024 11:57:17 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Various fixes
- Fix nginx ds-cache.conf location in documentserver-flush-cache.sh
- Fix sed invocation in documentserver-flush-cache.sh
- Remove extra whitespace in documentserver-generate-allfonts.sh
- Remove todo list in Makefile
PR: 282724 |
8.2.0.143 12 Nov 2024 09:49:39 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix patch |
8.2.0.143 07 Nov 2024 08:23:04 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 8.2.0.143 |
8.0.1.31_1 03 Oct 2024 10:25:14 |
Dima Panov (fluffy) |
*/*: bump consumers after devel/boost* update
With hat: office
Sponsored by: Future Crew, LLC |
8.0.1.31 03 Jun 2024 14:29:05 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build after node update
Regen the cache file |
8.0.1.31 17 Mar 2024 14:24:01 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 8.0.1
Changes:
https://github.com/ONLYOFFICE/DocumentServer/blob/v8.0.0/CHANGELOG.md#800
https://github.com/ONLYOFFICE/DocumentServer/blob/v8.0.1/CHANGELOG.md#801 |
7.5.1.23 27 Feb 2024 15:22:17 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build
Regen the cache file |
7.5.1.23 10 Feb 2024 10:50:33 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build on aarch64 |
7.5.1.23 02 Feb 2024 14:03:31 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build
Fix nodejs version in USES and regen yao-pkg patch |
7.5.1.23 26 Jan 2024 14:45:58 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.5.1.23
While here:
- Update node to v18
- Improve pkg-message [1]
Submitted by: Niclas Wagner [1] |
7.4.1.36_1 17 Nov 2023 11:46:00 |
Jan Beich (jbeich) |
devel/icu: update to 74.1
Changes: https://github.com/unicode-org/icu/releases/tag/release-74-1
Reported by: GitHub (watch releases)
PR: 274317
Exp-run by: antoine (incomplete)
Approved by: fluffy |
7.4.1.36 14 Oct 2023 17:23:12 |
Bernard Spil (brnrd) |
security/openssl: Chase removal of openssl30 port |
7.4.1.36 01 Oct 2023 17:17:53 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.4.1.36
While here:
- Increase default connection limit [1]
- Add missing command for postgresql 15 users [2]
Changes:
https://github.com/ONLYOFFICE/DocumentServer/blob/v7.4.1/CHANGELOG.md
PR: 273910 [1]
Reported by: Benjamin Connelly [2] |
7.4.0.163 30 Sep 2023 02:23:01 |
Muhammad Moinur Rahman (bofh) |
www/onlyoffice-documentserver: Mark DEPRECATED
- Depends on www/node16 which has reaced End of Life
- Set EXPIRATION_DATE 2023-10-30
Approved by: portmgr (blanket) |
7.4.0.163 24 Jul 2023 16:09:27 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.4.0
Changes:
https://github.com/ONLYOFFICE/DocumentServer/blob/v7.4.0/CHANGELOG.md |
7.3.3.49_4 19 Jul 2023 17:14:17 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build after npm update |
7.3.3.49_4 19 Jul 2023 10:44:16 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: mark as BROKEN after latest npm update |
7.3.3.49_4 16 Apr 2023 13:33:36 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix path in documentserver-jwt-status.sh
PR: 270780
Reported by: freebsd.org@vollkorn.cryptobitch.de |
7.3.3.49_3 16 Apr 2023 13:33:36 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix path for node headers
NODE_VERSION is not defined, use the correct variable name.
While here, remove an empty line. |
7.3.3.49_3 13 Apr 2023 00:56:37 |
Jan Beich (jbeich) |
devel/icu: update to 73.1
- Temporarily switch to GitHub auto archive (release artifacts are N/A atm)
Changes: https://github.com/unicode-org/icu/releases/tag/release-73-1
Reported by: GitHub (watch releases)
PR: 270422
Exp-run by: antoine |
7.3.3.49_2 04 Apr 2023 10:22:19 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Bump NODE_VERSION after node update |
7.3.3.49_2 02 Apr 2023 15:40:58 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix user:group in
documentserver-update-securelink.sh |
7.3.3.49_1 02 Apr 2023 15:40:58 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix path in documentserver-update-securelink.sh
PR: 270588
Reported by: freebsd.org@vollkorn.cryptobitch.de |
7.3.3.49_1 02 Apr 2023 15:40:57 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Add missing pwgen dependency
It is required by documentserver-update-securelink.sh
PR: 270589
Reported by: freebsd.org@vollkorn.cryptobitch.de |
7.3.3.49_1 02 Apr 2023 15:40:57 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: do not strip the json binary
binary generated by npm/pkg doesn't work if they are stripped
PR: 270591
Reported by: freebsd.org@vollkorn.cryptobitch.de |
7.3.3.49_1 31 Mar 2023 13:32:56 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Remove redundant "onlyoffice" in nginx conf
ETCDIR already contains "onlyoffice", remove it from the nginx conf
PR: 270561
Reported by: freebsd.org@vollkorn.cryptobitch.de |
7.3.3.49 28 Mar 2023 16:24:56 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build conflict with devel/py-build
The script "build_tools/make.py" tries to import "scripts/build.py"
but does this not properly and instead imports the module "build"
from devel/py-build
PR: 267265
Submitted by: freebsd.org@vollkorn.cryptobitch.de |
7.3.3.49 26 Mar 2023 13:23:01 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.3.3
Changes:
https://github.com/ONLYOFFICE/DocumentServer/blob/v7.3.3/CHANGELOG.md |
7.2.2.56 27 Feb 2023 17:54:17 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: bump NODE_VERSION to 16.19.1
Regen the npm cache so that it's compatible with npm-node16-9.4.2 |
7.2.2.56 11 Jan 2023 16:59:48 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.2.2
Changes:
https://github.com/ONLYOFFICE/DocumentServer/blob/v7.2.2/CHANGELOG.md |
7.2.1.34_1 16 Dec 2022 14:20:34 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build after node update
Regen the cache file for node 16.19.0 |
7.2.1.34_1 25 Nov 2022 11:43:15 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: regen the cache file
The cache contains a precompiled amd64 binary
(.pkg-cache/v3.2/built-v16.13.0-freebsd-x64),
remove it so that the build system will compile it.
Reported by: dch |
7.2.1.34 15 Nov 2022 07:34:27 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.2.1.34 |
7.1.1.23_2 21 Oct 2022 15:36:52 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build after node update
Regen the cache file for node 16.17.1 |
7.1.1.23_2 19 Oct 2022 08:10:29 |
Jan Beich (jbeich) |
devel/icu: update to 72.1
Changes: https://github.com/unicode-org/icu/releases/tag/release-72-1
Reported by: GitHub (watch releases)
PR: 266582
Exp-run by: antoine |
7.1.1.23_1 11 Sep 2022 10:20:14 |
Felix Palmen (zirias) |
Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
7.1.1.23_1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
7.1.1.23_1 15 Aug 2022 13:45:17 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Unbreak after node update |
7.1.1.23_1 12 Aug 2022 14:46:53 |
Dima Panov (fluffy) |
*/*: bump all consumers after recent boost upgrade |
7.1.1.23 17 Jun 2022 07:44:24 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.1.1.23 |
7.1.0.215 09 Jun 2022 13:58:34 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build after node16 update
While here remove useless code |
7.1.0.215 31 May 2022 10:40:58 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Mark as broken on i386
v8 doesn't compile on this arch
PR: 264367
Reported by: salvadore |
7.1.0.215 24 May 2022 19:17:41 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.1.0.215
- Update v8 to 8.9.255.25, the bug with 8.7.220.31 is fixed so we can
compile v8 again.
- Remove ONLY_FOR_ARCHS as v8 may builds on all archs.
- Fix a few hardcoded /usr/local
- Fix mysql instructions in pkg-message.in
- Add upgrade procedure in pkg-message.in |
7.0.1.50_5 22 May 2022 20:17:16 |
Dima Panov (fluffy) |
devel/boost-all: bump all library consumers after boost upgrade
PR: 246106 |
7.0.1.50_4 03 May 2022 15:35:47 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Add missing EOM marker in pkg-message.in |
7.0.1.50_3 03 May 2022 05:41:22 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix misplaced quotes |
7.0.1.50_2 19 Apr 2022 13:03:57 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix trigger path in
files/onlyoffice-documentserver.ucl.in
Use the correct path for the trigger. |
7.0.1.50_1 09 Apr 2022 07:29:16 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build after node 16.14.2 update and improve
port
- Regen the distinfo after node 16.14.2 update
- Fix for an hardcoded /usr/local in
files/patch-core_Common_3dParty_icu_icu.pri
- Don't chown in pkg-plist and documentserver-generate-allfonts.sh.m4, there
is no rational to do that
- Use a trigger to execute documentserver-generate-allfonts.sh and fix
pkg-message accordingly
PR: 263114 |
7.0.1.50_1 07 Apr 2022 00:39:10 |
Jan Beich (jbeich) |
devel/icu: update to 71.1
Changes: https://github.com/unicode-org/icu/releases/tag/release-71-1
Reported by: GitHub (watch releases)
PR: 262654
Exp-run by: antoine
Approved by: fluffy |
7.0.1.50 28 Mar 2022 10:21:00 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix build with MYSQL option
Add missing "localbase" to the USES list.
Error message:
Error: Command failed: /bin/sh -c ./configure --with-system-zlib
--with-system-libpng
--prefix="/wrkdirs/usr/ports/www/onlyoffice-documentserver/work/DocumentServer-7.0.1/web-apps/build/node_modules/optipng-bin/vendor"
--bindir="/wrkdirs/usr/ports/www/onlyoffice-documentserver/work/DocumentServer-7.0.1/web-apps/build/node_modules/optipng-bin/vendor"
Checking for system libpng...
./configure: error: missing libpng or incorrect libpng version
./configure: note: libpng version 1.2.9 or higher is required
Reported and tested by: Martin Waschbüsch |
7.0.1.50 08 Mar 2022 10:43:35 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.0.1.50
Update to 7.0.1.50
Cleanup patches
Remove obsolete dependencies (they were required to build v8)
Don't force the installation of the database server, the server can be hosted
anywhere.
Fix a build fs violation (with PYTHONDONTWRITEBYTECODE=1)
Various fix in pkg-message
Changes:
https://github.com/ONLYOFFICE/DocumentServer/blob/master/CHANGELOG.md#701 |
7.0.0.133_1 18 Feb 2022 14:13:57 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Improve port.
- Option'ify the database backend and add MySQL
- Add a newsyslog sample file (pr 261514, submitted by Martin Waschbüsch)
- Add a missing nginx sample file (ds-ssl.conf)
- Fix an hardcoded /usr/local in files/patch-document-server-package_Makefile
- Improve pkg-message:
- Add an 'upgrade' note (suggested by bapt@)
- Add instructions to use MySQL as a database server
- Pass the erlang-cookie option when invoking rabbitmqctl
PR: 261514 |
7.0.0.133 28 Jan 2022 08:28:19 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix distinfo for v8-6.8.275.32_122aarch64.tar.gz |
7.0.0.133 26 Jan 2022 14:39:48 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Update to 7.0.0.133
- Update to 7.0.0.133
- Downgrade v8 to v6.8.275.32:
onlyoffice doesn't work correctly with version 8.7.220.31
- Use prebuilt binaries for v8, version 6.8.275.32 requires outdated ports:
devel/gn@v1714, devel/py-Jinja2@v2.8 and textproc/py-markupsafe@v1.1.1
- Restrict the port to aarch64 and amd64
- Fix user name in pkg-plist
Changes: https://github.com/ONLYOFFICE/DocumentServer/blob/v7.0.0/CHANGELOG.md |
6.4.2_2 19 Jan 2022 19:26:10 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix onlyoffice username
This file needs to be changed too. |
6.4.2_1 19 Jan 2022 19:13:24 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Fix onlyoffice username
It's "onlyoffice" not "ds"
While here remove a trailing whitespace in pkg-plist |
6.4.2 19 Jan 2022 07:48:51 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: fix patches
These patches contains DOS EOL, for whatever reasons git has removed them and
put
Unix EOL instead.
Restore the DOS EOL. |
6.4.2 19 Jan 2022 07:38:26 |
Mikael Urankar (mikael) |
www/onlyoffice-documentserver: Add new port
ONLYOFFICE Document Server is an online office suite comprising viewers and
editors for texts, spreadsheets and presentations, fully compatible with
Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing
in real time.
WWW: https://www.onlyoffice.com/
Reviewed by: bapt
Differential Revision: https://reviews.freebsd.org/D33923 |