You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.9 KiB

  1. #
  2. # Copyright (C) 2006-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=dovecot
  9. PKG_VERSION:=2.2.28
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.dovecot.org/releases/2.2
  13. PKG_HASH:=e0288f59e326ab87cb3881fdabadafe542f4dc7ab9996db13863a439ebbc1f25
  14. PKG_LICENSE:=LGPL-2.1 MIT BSD-3-Clause Unique
  15. PKG_LICENSE_FILES:=COPYING COPYING.LGPL COPYING.MIT
  16. PKG_BUILD_DEPENDS:=libiconv
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/dovecot
  21. SECTION:=mail
  22. CATEGORY:=Mail
  23. DEPENDS:=+DOVECOT_LDAP:libopenldap +DOVECOT_SQLITE:libsqlite3 +libopenssl +librt +zlib +libbz2 +libcap
  24. TITLE:=An IMAP and POP3 daemon
  25. MAINTAINER:=Lucian Cristian <lucian.cristian@gmail.com>
  26. URL:=http://www.dovecot.org/
  27. USERID:=dovecot=59:dovecot=59
  28. endef
  29. define Package/dovecot/description
  30. Dovecot is a program which provides POP3 and IMAP services.
  31. endef
  32. define Package/dovecot/config
  33. menu "Select dovecot build options"
  34. depends on PACKAGE_dovecot
  35. config DOVECOT_LDAP
  36. bool "LDAP support"
  37. default n
  38. help
  39. Implements LDAP support in dovecot.
  40. config DOVECOT_SQLITE
  41. bool "SQLite support"
  42. default n
  43. help
  44. Implements SQLite DB support in dovecot.
  45. endmenu
  46. endef
  47. CONFIGURE_ARGS += \
  48. --without-gssapi \
  49. --without-pam \
  50. --with-moduledir=/usr/lib/dovecot/modules \
  51. --with-notify=dnotify \
  52. --without-lzma \
  53. --without-lz4 \
  54. --with-icu=no \
  55. $(if $(CONFIG_DOVECOT_LDAP),--with-ldap=yes,--with-ldap=no) \
  56. $(if $(CONFIG_DOVECOT_SQLITE),--with-sqlite=yes,--with-sqlite=no)
  57. CONFIGURE_VARS += \
  58. RPCGEN= \
  59. i_cv_signed_size_t=no \
  60. i_cv_signed_time_t=no \
  61. i_cv_gmtime_max_time_t=32 \
  62. i_cv_mmap_plays_with_write=yes \
  63. i_cv_fd_passing=yes \
  64. i_cv_c99_vsnprintf=yes \
  65. lib_cv_va_copy=yes \
  66. lib_cv_va_copy=yes \
  67. lib_cv___va_copy=yes \
  68. lib_cv_va_val_copy=yes
  69. define Package/dovecot/install
  70. $(INSTALL_DIR) $(1)/etc/init.d \
  71. $(1)/etc/dovecot \
  72. $(1)/usr/share/doc/dovecot/example-config \
  73. $(1)/usr/lib/dovecot \
  74. $(1)/usr/bin \
  75. $(1)/usr/sbin
  76. $(CP) $(PKG_INSTALL_DIR)/etc/dovecot/* $(1)/etc/dovecot/
  77. $(CP) $(PKG_INSTALL_DIR)/usr/lib/dovecot/* $(1)/usr/lib/dovecot/
  78. $(CP) $(PKG_INSTALL_DIR)/usr/share/doc/dovecot/example-config $(1)/usr/share/doc/dovecot/example-config
  79. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/doveconf $(1)/usr/bin/
  80. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
  81. $(INSTALL_BIN) ./files/dovecot.init $(1)/etc/init.d/dovecot
  82. rm $(1)/usr/lib/dovecot/dovecot-config
  83. find $(1)/usr/lib/dovecot/ -name "*.a" -o -name "*.la" | xargs rm
  84. endef
  85. $(eval $(call BuildPackage,dovecot))