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.

78 lines
2.1 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.13
  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:=a3eb1c0b1822c4f2b0fe9247776baa71
  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:=+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. endef
  28. define Package/dovecot/description
  29. Dovecot is a program which provides POP3 and IMAP services.
  30. endef
  31. CONFIGURE_ARGS += \
  32. --without-gssapi \
  33. --without-pam \
  34. --with-moduledir=/usr/lib/dovecot/modules \
  35. --with-notify=dnotify \
  36. --without-lzma \
  37. --without-lz4
  38. CONFIGURE_VARS += \
  39. RPCGEN= \
  40. i_cv_signed_size_t=no \
  41. i_cv_signed_time_t=no \
  42. i_cv_gmtime_max_time_t=32 \
  43. i_cv_mmap_plays_with_write=yes \
  44. i_cv_fd_passing=yes \
  45. i_cv_c99_vsnprintf=yes \
  46. lib_cv_va_copy=yes \
  47. lib_cv_va_copy=yes \
  48. lib_cv___va_copy=yes \
  49. lib_cv_va_val_copy=yes
  50. define Package/dovecot/install
  51. $(INSTALL_DIR) $(1)/etc/init.d \
  52. $(1)/etc/dovecot \
  53. $(1)/usr/share/doc/dovecot/example-config \
  54. $(1)/usr/lib/dovecot \
  55. $(1)/usr/bin \
  56. $(1)/usr/sbin
  57. $(CP) $(PKG_INSTALL_DIR)/etc/dovecot/* $(1)/etc/dovecot/
  58. $(CP) $(PKG_INSTALL_DIR)/usr/lib/dovecot/* $(1)/usr/lib/dovecot/
  59. $(CP) $(PKG_INSTALL_DIR)/usr/share/doc/dovecot/example-config $(1)/usr/share/doc/dovecot/example-config
  60. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/doveconf $(1)/usr/bin/
  61. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
  62. $(INSTALL_BIN) ./files/dovecot.init $(1)/etc/init.d/dovecot
  63. rm $(1)/usr/lib/dovecot/dovecot-config
  64. find $(1)/usr/lib/dovecot/ -name "*.a" -o -name "*.la" | xargs rm
  65. endef
  66. $(eval $(call BuildPackage,dovecot))