|
|
@ -8,13 +8,13 @@ |
|
|
|
include $(TOPDIR)/rules.mk |
|
|
|
|
|
|
|
PKG_NAME:=dovecot |
|
|
|
PKG_VERSION:=2.3.5.2 |
|
|
|
PKG_VERSION:=2.3.6 |
|
|
|
PKG_RELEASE:=1 |
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
|
|
|
PKG_SOURCE_URL:=https://www.dovecot.org/releases/2.3 |
|
|
|
PKG_HASH:=ba14e41aefd81a868a35b83bcb54194116106424d37690519b50ea83c0f31bf2 |
|
|
|
PKG_LICENSE:=LGPL-2.1 MIT BSD-3-Clause Unique |
|
|
|
PKG_HASH:=ed1d8dc1beeae9c6c73deac73a62ef19fe9262fbffd86604a3f690452f5536c7 |
|
|
|
PKG_LICENSE:=LGPL-2.1-only MIT BSD-3-Clause |
|
|
|
PKG_LICENSE_FILES:=COPYING COPYING.LGPL COPYING.MIT |
|
|
|
PKG_MAINTAINER:=Lucian Cristian <lucian.cristian@gmail.com> |
|
|
|
|
|
|
@ -105,6 +105,7 @@ CONFIGURE_ARGS += \ |
|
|
|
--without-lzma \
|
|
|
|
--without-lz4 \
|
|
|
|
--without-sodium \
|
|
|
|
--without-docs \
|
|
|
|
$(if $(CONFIG_DOVECOT_GSSAPI),--with-gssapi=yes,--with-gssapi=no) \
|
|
|
|
$(if $(CONFIG_DOVECOT_LDAP),--with-ldap=yes,--with-ldap=no) \
|
|
|
|
$(if $(CONFIG_DOVECOT_MYSQL),--with-mysql=yes,--with-mysql=no) \
|
|
|
@ -137,15 +138,12 @@ endef |
|
|
|
define Package/dovecot/install |
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d \
|
|
|
|
$(1)/etc/dovecot \
|
|
|
|
$(1)/usr/share/doc/dovecot \
|
|
|
|
$(1)/usr/lib/dovecot \
|
|
|
|
$(1)/usr/libexec/dovecot \
|
|
|
|
$(1)/usr/bin \
|
|
|
|
$(1)/usr/sbin |
|
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/dovecot/* $(1)/etc/dovecot/ |
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/dovecot/* $(1)/usr/lib/dovecot/ |
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/libexec/dovecot/* $(1)/usr/libexec/dovecot/ |
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/share/doc/dovecot/example-config $(1)/usr/share/doc/dovecot/ |
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/doveconf $(1)/usr/bin/ |
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/ |
|
|
|
$(INSTALL_BIN) ./files/dovecot.init $(1)/etc/init.d/dovecot |
|
|
|