aboutsummaryrefslogtreecommitdiff
path: root/net/seafile-server
diff options
context:
space:
mode:
authorGergely Kiss <mail.gery@gmail.com>2016-05-30 01:23:44 +0200
committerEtienne CHAMPETIER <champetier.etienne@gmail.com>2016-08-24 20:35:34 +0000
commit8952b4ad62c41ccb3e704744945779e0177cd0eb (patch)
tree6579ed6bc974afcb4a55f68997bab3b53ccc6f2c /net/seafile-server
parent2d17695c08ed84275018a060efb7400e817ab67e (diff)
seafile-server: fix dependency specification
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
Diffstat (limited to 'net/seafile-server')
-rw-r--r--net/seafile-server/Config.in2
-rw-r--r--net/seafile-server/Makefile7
2 files changed, 3 insertions, 6 deletions
diff --git a/net/seafile-server/Config.in b/net/seafile-server/Config.in
index 0e1925bce..d83f795ae 100644
--- a/net/seafile-server/Config.in
+++ b/net/seafile-server/Config.in
@@ -3,8 +3,8 @@ menu "Configuration"
config SEAFILE_FUSE_SUPPORT
bool "Enable FUSE support"
- default n
select PACKAGE_libfuse
+ default n
config SEAFILE_CONSOLE_SUPPORT
bool "Enable seafile server console"
diff --git a/net/seafile-server/Makefile b/net/seafile-server/Makefile
index 1faf36744..6db129948 100644
--- a/net/seafile-server/Makefile
+++ b/net/seafile-server/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=seafile-server
PKG_VERSION:=5.1.1
-PKG_RELEASE=$(PKG_SOURCE_VERSION)-5
+PKG_RELEASE=$(PKG_SOURCE_VERSION)-6
PKG_LICENSE:=GPL-3.0
PKG_SOURCE_PROTO:=git
@@ -32,10 +32,7 @@ define Package/seafile-server
URL:=http://seafile.com/
DEPENDS:=+libarchive +libopenssl +glib2 +libsearpc +seafile-ccnet +seafile-seahub +sqlite3-cli +python-mysql \
+jansson +libevent2 +libevent2-openssl +zlib +libzdb +libsqlite3 +libmysqlclient \
- +libpthread +libuuid +bash +procps-ng +procps-ng-pkill $(ICONV_DEPENDS)
-ifeq ($(CONFIG_SEAFILE_FUSE_SUPPORT),y)
- DEPENDS += +libfuse
-endif
+ +libpthread +libuuid +bash +procps-ng +procps-ng-pkill +SEAFILE_FUSE_SUPPORT:libfuse $(ICONV_DEPENDS)
EXTRA_DEPENDS:=seafile-ccnet (=5.1.1-6d94fdc4296d542a5552039dc13a67c3448e8b13-1), seafile-seahub (=5.1.1-95f762f396c81f840fe658ab983df53784083bb1-1)
MENU:=1
endef