blob: 96d607dd651ff07cd893c9d736851ffd31d6d1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= postfix
PKG_VERSION:= 3.1.0
PKG_RELEASE:= 1
PKG_HASH:= 88ac3e92755629077d9363319b1fa0db406efb10c2f22cdbb941bd8ab36fd733
PKG_DESCR:= popular mail transfer agent
PKG_SECTION:= net/mail
PKG_BUILDDEP:= tinycdb
PKG_URL:= http://www.postfix.org/
PKG_SITES:= http://de.postfix.org/ftpmirror/official/
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
PKG_HOST_DEPENDS:= !darwin
# missing res_send support in resolver
PKG_LIBC_DEPENDS:= glibc musl
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call PKG_template,POSTFIX,postfix,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
XAKE_FLAGS+= GCC_HONOUR_COPTS=s
CONFIG_STYLE:= manual
ALL_TARGET:=
INSTALL_STYLE:= manual
do-configure:
(cd $(WRKBUILD) && make -f Makefile.init makefiles "CCARGS=-DNO_PCRE -DNO_NIS -DNO_DB -DHAS_CDB -I$(STAGING_TARGET_DIR)/usr/include" "AUXLIBS=$(STAGING_TARGET_DIR)/usr/lib/libcdb.a")
postfix-install:
$(INSTALL_DIR) $(IDIR_POSTFIX)/etc/postfix
$(CP) $(WRKBUILD)/conf/* $(IDIR_POSTFIX)/etc/postfix
$(CP) ./files/main.cf $(IDIR_POSTFIX)/etc/postfix
$(INSTALL_DIR) $(IDIR_POSTFIX)/usr/sbin
$(CP) $(WRKBUILD)/bin/* $(IDIR_POSTFIX)/usr/sbin
$(INSTALL_DIR) $(IDIR_POSTFIX)/usr/libexec/postfix
$(CP) $(WRKBUILD)/libexec/* $(IDIR_POSTFIX)/usr/libexec/postfix
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|