26 lines
503 B
Makefile
26 lines
503 B
Makefile
# $OpenBSD: Makefile,v 1.3 2000/10/05 21:13:23 jakob Exp $
|
|
|
|
DISTNAME= snapshot-20001005
|
|
PKGNAME= postfix-${DISTNAME}
|
|
|
|
MASTER_SITE_SUBDIR= experimental
|
|
|
|
FLAVORS= pcre sasl
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mpcre}
|
|
LIB_DEPENDS+= pcre::devel/pcre
|
|
|
|
MAKE_CCARGS+= -I${PREFIX}/include -DHAS_PCRE
|
|
MAKE_AUXLIBS+= -L${PREFIX}/lib -lpcre
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Msasl}
|
|
LIB_DEPENDS+= sasl::security/cyrus-sasl
|
|
|
|
MAKE_CCARGS+= -DUSE_SASL_AUTH -I${PREFIX}/include/sasl
|
|
MAKE_AUXLIBS+= -lsasl -lkrb
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|