X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=mail%2Fxmail%2FMakefile;h=52f9ecd7c742cf4f3e85019ff1f4517883ad0dfc;hp=8d526c74be9a7828842f92615ddf18d4ce1afb6c;hb=ed9e9322cabc3f47919802fbe1d73bb7ac697bec;hpb=5d7033b273c84510747cf580c0ceac1962147a20 diff --git a/mail/xmail/Makefile b/mail/xmail/Makefile index 8d526c74be..52f9ecd7c7 100644 --- a/mail/xmail/Makefile +++ b/mail/xmail/Makefile @@ -9,19 +9,19 @@ include $(TOPDIR)/rules.mk PKG_NAME:=xmail -PKG_VERSION:=1.24 +PKG_VERSION:=1.25 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.xmailserver.org/ -PKG_MD5SUM:=106730bdbaa4fda9e90a7c22df024114 +PKG_MD5SUM:=675baa512a97057c9e63905272406b69 include $(INCLUDE_DIR)/package.mk define Package/xmail SECTION:=mail CATEGORY:=Mail - DEPENDS:=+uclibcxx +libopenssl + DEPENDS:=+uclibcxx +libopenssl +libpthread TITLE:=advanced, fast and reliable ESMTP/POP3 mail server URL:=http://www.xmailserver.org/ endef @@ -32,10 +32,6 @@ define Package/xmail/description multiple domains, virtual users and spam protection. endef -define Build/Configure - $(CP) ./files/SysMachine.h $(PKG_BUILD_DIR)/ -endef - define Build/Compile CFLAGS="$(TARGET_CFLAGS)" \ $(MAKE) -C $(PKG_BUILD_DIR) -f Makefile.lnx \ @@ -44,13 +40,18 @@ define Build/Compile CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/uClibc++ -fno-builtin -fno-rtti -nostdinc++" \ LDFLAGS="$(TARGET_LDFLAGS) -nodefaultlibs -lcrypto -lssl -luClibc++ -ldl -lm -lpthread" \ all + tar -cjf $(PKG_BUILD_DIR)/MailRoot.tar.bz2 -C $(PKG_BUILD_DIR)/MailRoot --exclude bin . endef define Package/xmail/install $(INSTALL_DIR) $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/* $(1)/usr/bin/ - $(INSTALL_DIR) $(1)/var/MailRoot/ - $(CP) $(PKG_BUILD_DIR)/MailRoot $(1)/var/ + $(INSTALL_DIR) $(1)/etc + $(INSTALL_DATA) $(PKG_BUILD_DIR)/MailRoot.tar.bz2 $(1)/etc/ + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_DATA) ./files/xmail.config $(1)/etc/config/xmail + $(INSTALL_DIR) $(1)/etc/init.d/ + $(INSTALL_BIN) ./files/xmail.init $(1)/etc/init.d/xmail endef $(eval $(call BuildPackage,xmail))