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.6 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.15
  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_MD5SUM:=c6c176943bd832c780fbb5d2f8850952
  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 +libopenssl +librt +zlib +libbz2 +libcap
  24. TITLE:=An IMAP and POP3 daemon
  25. MAINTAINER:=Peter Wagner <tripolar@gmx.at>
  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. endmenu
  41. endef
  42. CONFIGURE_ARGS += \
  43. --without-gssapi \
  44. --without-pam \
  45. --with-moduledir=/usr/lib/dovecot/modules \
  46. --with-notify=dnotify \
  47. --without-lzma \
  48. --without-lz4
  49. ifneq ($(strip $(CONFIG_DOVECOT_LDAP)),)
  50. CONFIGURE_ARGS+= \
  51. --with-ldap=yes
  52. else
  53. CONFIGURE_ARGS+= \
  54. --with-ldap=no
  55. endif
  56. CONFIGURE_VARS += \
  57. RPCGEN= \
  58. i_cv_signed_size_t=no \
  59. i_cv_signed_time_t=no \
  60. i_cv_gmtime_max_time_t=32 \
  61. i_cv_mmap_plays_with_write=yes \
  62. i_cv_fd_passing=yes \
  63. i_cv_c99_vsnprintf=yes \
  64. lib_cv_va_copy=yes \
  65. lib_cv_va_copy=yes \
  66. lib_cv___va_copy=yes \
  67. lib_cv_va_val_copy=yes
  68. define Package/dovecot/install
  69. $(INSTALL_DIR) $(1)/etc/init.d \
  70. $(1)/etc/dovecot \
  71. $(1)/usr/share/doc/dovecot/example-config \
  72. $(1)/usr/lib/dovecot \
  73. $(1)/usr/bin \
  74. $(1)/usr/sbin
  75. $(CP) $(PKG_INSTALL_DIR)/etc/dovecot/* $(1)/etc/dovecot/
  76. $(CP) $(PKG_INSTALL_DIR)/usr/lib/dovecot/* $(1)/usr/lib/dovecot/
  77. $(CP) $(PKG_INSTALL_DIR)/usr/share/doc/dovecot/example-config $(1)/usr/share/doc/dovecot/example-config
  78. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/doveconf $(1)/usr/bin/
  79. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
  80. $(INSTALL_BIN) ./files/dovecot.init $(1)/etc/init.d/dovecot
  81. rm $(1)/usr/lib/dovecot/dovecot-config
  82. find $(1)/usr/lib/dovecot/ -name "*.a" -o -name "*.la" | xargs rm
  83. endef
  84. $(eval $(call BuildPackage,dovecot))