2014-11-06 20:19:31 +01:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= seafile-gui
|
update Seafile client bundle to 6.0.6
Ports affected:
net-mgmt/seafile-client, net-mgmt/ccnet-client, net-mgmt/seafile-gui
* Updated to 6.0.6
* Added Makefile.include to update version
* Added target makesum-all for bundle
- Sort files by numbers if numbers contained in the file name, so "1, 10, 2, 11, 3" will be sorted as "1, 2, 3, 10, 11".
- Use native system window for Seafile main windown and cloud file browser window.
- Fix progress overflow when uploading large file using cloud file browser
- Improve the tip when removing an account in the client
- Don't show download button when select folders in cloud file browser
- Clean cache data of cloud file browser when logout an account or restart the client
- [fix] Fix display problem for high screen Windows in win10
- [fix] Fix libssl compatibility problem in Debain Stretch
- Add auto-update check
PR: 219577
Submitted by: ultima1252@gmail.com (maintainer)
2017-05-27 16:55:52 +02:00
|
|
|
PORTVERSION= ${SEAFILE_CLIENT_VER}
|
2015-05-07 19:26:05 +02:00
|
|
|
DISTVERSIONPREFIX= v
|
2016-05-29 15:46:33 +02:00
|
|
|
CATEGORIES= net-mgmt devel
|
2014-11-06 20:19:31 +01:00
|
|
|
|
2017-07-03 21:06:08 +02:00
|
|
|
MAINTAINER= ultima@FreeBSD.org
|
2016-05-29 15:46:33 +02:00
|
|
|
COMMENT= Open Source Cloud Storage (Client)
|
2014-11-06 20:19:31 +01:00
|
|
|
|
|
|
|
LICENSE= APACHE20
|
2016-05-29 15:46:33 +02:00
|
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
2014-11-06 20:19:31 +01:00
|
|
|
|
2017-01-07 02:07:55 +01:00
|
|
|
LIB_DEPENDS= libsearpc.so:devel/libsearpc \
|
2016-12-26 15:56:02 +01:00
|
|
|
libseafile.so:net-mgmt/seafile-client \
|
2016-04-01 16:16:16 +02:00
|
|
|
libsqlite3.so:databases/sqlite3 \
|
2016-12-26 15:26:47 +01:00
|
|
|
libccnet.so:net-mgmt/ccnet-client \
|
2016-06-29 18:03:04 +02:00
|
|
|
libjansson.so:devel/jansson \
|
2017-02-20 03:57:04 +01:00
|
|
|
libevent.so:devel/libevent \
|
2016-06-29 18:03:04 +02:00
|
|
|
libuuid.so:misc/e2fsprogs-libuuid
|
2014-11-06 20:19:31 +01:00
|
|
|
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= haiwen
|
|
|
|
GH_PROJECT= seafile-client
|
|
|
|
|
2017-02-14 16:35:32 +01:00
|
|
|
USES= compiler:c++11-lang cmake gettext pkgconfig shebangfix ssl
|
2016-05-29 15:46:33 +02:00
|
|
|
SHEBANG_FILES= extensions/*.sh scripts/*.sh fsplugin/*.sh \
|
|
|
|
scripts/*.py
|
2017-01-07 02:07:55 +01:00
|
|
|
USE_GNOME= glib20
|
2016-05-29 15:46:33 +02:00
|
|
|
USE_QT5= core dbus gui network testlib widgets \
|
|
|
|
qmake_build buildtools_build linguisttools_build
|
2014-11-06 20:19:31 +01:00
|
|
|
INSTALLS_ICONS= yes
|
2015-07-19 13:52:30 +02:00
|
|
|
CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=include/glib-2.0 \
|
|
|
|
-DOPENSSL_INCLUDE_DIRS=${OPENSSLINC} \
|
|
|
|
-DOPENSSL_LIBRARIES="-L${OPENSSLLIB} -lcrypto"
|
2014-11-06 20:19:31 +01:00
|
|
|
|
2016-05-29 15:46:33 +02:00
|
|
|
OPTIONS_DEFINE= DEBUG
|
2014-11-06 20:19:31 +01:00
|
|
|
|
2015-03-01 19:56:56 +01:00
|
|
|
# Note that per PR 197984, cairo must be built with X11 and XCB options
|
|
|
|
# otherwise configure fails with "cairo needs x11 enabled" message
|
|
|
|
|
update Seafile client bundle to 6.0.6
Ports affected:
net-mgmt/seafile-client, net-mgmt/ccnet-client, net-mgmt/seafile-gui
* Updated to 6.0.6
* Added Makefile.include to update version
* Added target makesum-all for bundle
- Sort files by numbers if numbers contained in the file name, so "1, 10, 2, 11, 3" will be sorted as "1, 2, 3, 10, 11".
- Use native system window for Seafile main windown and cloud file browser window.
- Fix progress overflow when uploading large file using cloud file browser
- Improve the tip when removing an account in the client
- Don't show download button when select folders in cloud file browser
- Clean cache data of cloud file browser when logout an account or restart the client
- [fix] Fix display problem for high screen Windows in win10
- [fix] Fix libssl compatibility problem in Debain Stretch
- Add auto-update check
PR: 219577
Submitted by: ultima1252@gmail.com (maintainer)
2017-05-27 16:55:52 +02:00
|
|
|
.include "${.CURDIR}/../seafile-client/Makefile.include"
|
|
|
|
|
2014-11-06 20:19:31 +01:00
|
|
|
.include <bsd.port.mk>
|