mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Set INVALID_BDB_VER; upstream does not yet support Berkeley DB 5 [1]
- Remove OPTION for Kerberos IV - Change my email to @FreeBSD.org PR: ports/146371 [1] Reported by: Volodymyr Kostyrko <c.kworr@gmail.com> [1] Approved by: itetcu@ (mentor)
This commit is contained in:
parent
72445c6ce6
commit
d8cc9aba6f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=254282
3 changed files with 15 additions and 36 deletions
|
@ -19,7 +19,7 @@ MASTER_SITE_SUBDIR= . old related/postfix
|
||||||
DISTNAME= postfix-${PORTVERSION}
|
DISTNAME= postfix-${PORTVERSION}
|
||||||
DIST_SUBDIR= ${PORTNAME}
|
DIST_SUBDIR= ${PORTNAME}
|
||||||
|
|
||||||
MAINTAINER= sahil@tandon.net
|
MAINTAINER= sahil@FreeBSD.org
|
||||||
COMMENT= A secure alternative to widely-used Sendmail
|
COMMENT= A secure alternative to widely-used Sendmail
|
||||||
|
|
||||||
VDAVERSION= 2.6.5
|
VDAVERSION= 2.6.5
|
||||||
|
@ -32,7 +32,7 @@ SCRIPTS_ENV+= POSTFIX_DEFAULT_MTA="${POSTFIX_DEFAULT_MTA}"
|
||||||
|
|
||||||
# back compat pull in settings from POSTFIX_OPTIONS for convenience when
|
# back compat pull in settings from POSTFIX_OPTIONS for convenience when
|
||||||
# make config is run (happens first time port is built, too)
|
# make config is run (happens first time port is built, too)
|
||||||
.for o in SASL2 SASLKRB SASLKRB5 SASLKRB5MIT TLS BDB MySQL PgSQL OpenLDAP CDB NIS VDA Test
|
.for o in SASL2 SASLKRB5 SASLKRB5MIT TLS BDB MySQL PgSQL OpenLDAP CDB NIS VDA Test
|
||||||
STATUS_${o}=off
|
STATUS_${o}=off
|
||||||
.endfor
|
.endfor
|
||||||
.if defined(POSTFIX_OPTIONS)
|
.if defined(POSTFIX_OPTIONS)
|
||||||
|
@ -44,7 +44,6 @@ STATUS_${o}=on
|
||||||
OPTIONS= PCRE "Perl Compatible Regular Expressions" on \
|
OPTIONS= PCRE "Perl Compatible Regular Expressions" on \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Auth. and Sec. Layer)" ${STATUS_SASL2} \
|
SASL2 "Cyrus SASLv2 (Simple Auth. and Sec. Layer)" ${STATUS_SASL2} \
|
||||||
DOVECOT "Dovecot SASL authentication method" off \
|
DOVECOT "Dovecot SASL authentication method" off \
|
||||||
SASLKRB "If your SASL req. Kerberos select this option" ${STATUS_SASLKRB} \
|
|
||||||
SASLKRB5 "If your SASL req. Kerberos5 select this option" ${STATUS_SASLKRB5} \
|
SASLKRB5 "If your SASL req. Kerberos5 select this option" ${STATUS_SASLKRB5} \
|
||||||
SASLKMIT "If your SASL req. MIT Kerberos5 select this option" ${STATUS_SASLKRB5MIT} \
|
SASLKMIT "If your SASL req. MIT Kerberos5 select this option" ${STATUS_SASLKRB5MIT} \
|
||||||
TLS "Enable SSL and TLS support" ${STATUS_TLS} \
|
TLS "Enable SSL and TLS support" ${STATUS_TLS} \
|
||||||
|
@ -130,22 +129,15 @@ POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DDEF_SERVER_SASL_TYPE=\\\"dovecot\\\"
|
||||||
_REQUIRE+= dovecot
|
_REQUIRE+= dovecot
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_SASLKRB)
|
|
||||||
.if defined(WITH_SASLKRB5) || defined(WITH_SASLKMIT)
|
|
||||||
BROKEN= Select only one SASL Kerberos option
|
|
||||||
.endif
|
|
||||||
POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if defined(WITH_SASLKRB5)
|
.if defined(WITH_SASLKRB5)
|
||||||
.if defined(WITH_SASLKRB) || defined(WITH_SASLKMIT)
|
.if defined(WITH_SASLKMIT)
|
||||||
BROKEN= Select only one SASL Kerberos option
|
BROKEN= Select only one SASL Kerberos option
|
||||||
.endif
|
.endif
|
||||||
POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -lcrypto -lcrypt -lcom_err -lasn1 -lroken
|
POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -lcrypto -lcrypt -lcom_err -lasn1 -lroken
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_SASLKMIT)
|
.if defined(WITH_SASLKMIT)
|
||||||
.if defined(WITH_SASLKRB) || defined(WITH_SASLKRB5)
|
.if defined(WITH_SASLKRB5)
|
||||||
BROKEN= Select only one SASL Kerberos option
|
BROKEN= Select only one SASL Kerberos option
|
||||||
.endif
|
.endif
|
||||||
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
|
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
|
||||||
|
@ -160,6 +152,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFLAGS} -lssl -lcrypto
|
||||||
|
|
||||||
.if defined(WITH_BDB)
|
.if defined(WITH_BDB)
|
||||||
USE_BDB= yes
|
USE_BDB= yes
|
||||||
|
INVALID_BDB_VER= 50+
|
||||||
POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR}
|
POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR}
|
||||||
POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
||||||
.endif
|
.endif
|
||||||
|
|
|
@ -19,7 +19,7 @@ MASTER_SITE_SUBDIR= . old related/postfix
|
||||||
DISTNAME= postfix-${PORTVERSION}
|
DISTNAME= postfix-${PORTVERSION}
|
||||||
DIST_SUBDIR= ${PORTNAME}
|
DIST_SUBDIR= ${PORTNAME}
|
||||||
|
|
||||||
MAINTAINER= sahil@tandon.net
|
MAINTAINER= sahil@FreeBSD.org
|
||||||
COMMENT= A secure alternative to widely-used Sendmail
|
COMMENT= A secure alternative to widely-used Sendmail
|
||||||
|
|
||||||
VDAVERSION= 2.6.5
|
VDAVERSION= 2.6.5
|
||||||
|
@ -32,7 +32,7 @@ SCRIPTS_ENV+= POSTFIX_DEFAULT_MTA="${POSTFIX_DEFAULT_MTA}"
|
||||||
|
|
||||||
# back compat pull in settings from POSTFIX_OPTIONS for convenience when
|
# back compat pull in settings from POSTFIX_OPTIONS for convenience when
|
||||||
# make config is run (happens first time port is built, too)
|
# make config is run (happens first time port is built, too)
|
||||||
.for o in SASL2 SASLKRB SASLKRB5 SASLKRB5MIT TLS BDB MySQL PgSQL OpenLDAP CDB NIS VDA Test
|
.for o in SASL2 SASLKRB5 SASLKRB5MIT TLS BDB MySQL PgSQL OpenLDAP CDB NIS VDA Test
|
||||||
STATUS_${o}=off
|
STATUS_${o}=off
|
||||||
.endfor
|
.endfor
|
||||||
.if defined(POSTFIX_OPTIONS)
|
.if defined(POSTFIX_OPTIONS)
|
||||||
|
@ -44,7 +44,6 @@ STATUS_${o}=on
|
||||||
OPTIONS= PCRE "Perl Compatible Regular Expressions" on \
|
OPTIONS= PCRE "Perl Compatible Regular Expressions" on \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Auth. and Sec. Layer)" ${STATUS_SASL2} \
|
SASL2 "Cyrus SASLv2 (Simple Auth. and Sec. Layer)" ${STATUS_SASL2} \
|
||||||
DOVECOT "Dovecot SASL authentication method" off \
|
DOVECOT "Dovecot SASL authentication method" off \
|
||||||
SASLKRB "If your SASL req. Kerberos select this option" ${STATUS_SASLKRB} \
|
|
||||||
SASLKRB5 "If your SASL req. Kerberos5 select this option" ${STATUS_SASLKRB5} \
|
SASLKRB5 "If your SASL req. Kerberos5 select this option" ${STATUS_SASLKRB5} \
|
||||||
SASLKMIT "If your SASL req. MIT Kerberos5 select this option" ${STATUS_SASLKRB5MIT} \
|
SASLKMIT "If your SASL req. MIT Kerberos5 select this option" ${STATUS_SASLKRB5MIT} \
|
||||||
TLS "Enable SSL and TLS support" ${STATUS_TLS} \
|
TLS "Enable SSL and TLS support" ${STATUS_TLS} \
|
||||||
|
@ -130,22 +129,15 @@ POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DDEF_SERVER_SASL_TYPE=\\\"dovecot\\\"
|
||||||
_REQUIRE+= dovecot
|
_REQUIRE+= dovecot
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_SASLKRB)
|
|
||||||
.if defined(WITH_SASLKRB5) || defined(WITH_SASLKMIT)
|
|
||||||
BROKEN= Select only one SASL Kerberos option
|
|
||||||
.endif
|
|
||||||
POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if defined(WITH_SASLKRB5)
|
.if defined(WITH_SASLKRB5)
|
||||||
.if defined(WITH_SASLKRB) || defined(WITH_SASLKMIT)
|
.if defined(WITH_SASLKMIT)
|
||||||
BROKEN= Select only one SASL Kerberos option
|
BROKEN= Select only one SASL Kerberos option
|
||||||
.endif
|
.endif
|
||||||
POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -lcrypto -lcrypt -lcom_err -lasn1 -lroken
|
POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -lcrypto -lcrypt -lcom_err -lasn1 -lroken
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_SASLKMIT)
|
.if defined(WITH_SASLKMIT)
|
||||||
.if defined(WITH_SASLKRB) || defined(WITH_SASLKRB5)
|
.if defined(WITH_SASLKRB5)
|
||||||
BROKEN= Select only one SASL Kerberos option
|
BROKEN= Select only one SASL Kerberos option
|
||||||
.endif
|
.endif
|
||||||
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
|
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
|
||||||
|
@ -160,6 +152,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFLAGS} -lssl -lcrypto
|
||||||
|
|
||||||
.if defined(WITH_BDB)
|
.if defined(WITH_BDB)
|
||||||
USE_BDB= yes
|
USE_BDB= yes
|
||||||
|
INVALID_BDB_VER= 50+
|
||||||
POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR}
|
POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR}
|
||||||
POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
||||||
.endif
|
.endif
|
||||||
|
|
|
@ -19,7 +19,7 @@ MASTER_SITE_SUBDIR= . old related/postfix
|
||||||
DISTNAME= postfix-${PORTVERSION}
|
DISTNAME= postfix-${PORTVERSION}
|
||||||
DIST_SUBDIR= ${PORTNAME}
|
DIST_SUBDIR= ${PORTNAME}
|
||||||
|
|
||||||
MAINTAINER= sahil@tandon.net
|
MAINTAINER= sahil@FreeBSD.org
|
||||||
COMMENT= A secure alternative to widely-used Sendmail
|
COMMENT= A secure alternative to widely-used Sendmail
|
||||||
|
|
||||||
VDAVERSION= 2.6.5
|
VDAVERSION= 2.6.5
|
||||||
|
@ -32,7 +32,7 @@ SCRIPTS_ENV+= POSTFIX_DEFAULT_MTA="${POSTFIX_DEFAULT_MTA}"
|
||||||
|
|
||||||
# back compat pull in settings from POSTFIX_OPTIONS for convenience when
|
# back compat pull in settings from POSTFIX_OPTIONS for convenience when
|
||||||
# make config is run (happens first time port is built, too)
|
# make config is run (happens first time port is built, too)
|
||||||
.for o in SASL2 SASLKRB SASLKRB5 SASLKRB5MIT TLS BDB MySQL PgSQL OpenLDAP CDB NIS VDA Test
|
.for o in SASL2 SASLKRB5 SASLKRB5MIT TLS BDB MySQL PgSQL OpenLDAP CDB NIS VDA Test
|
||||||
STATUS_${o}=off
|
STATUS_${o}=off
|
||||||
.endfor
|
.endfor
|
||||||
.if defined(POSTFIX_OPTIONS)
|
.if defined(POSTFIX_OPTIONS)
|
||||||
|
@ -44,7 +44,6 @@ STATUS_${o}=on
|
||||||
OPTIONS= PCRE "Perl Compatible Regular Expressions" on \
|
OPTIONS= PCRE "Perl Compatible Regular Expressions" on \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Auth. and Sec. Layer)" ${STATUS_SASL2} \
|
SASL2 "Cyrus SASLv2 (Simple Auth. and Sec. Layer)" ${STATUS_SASL2} \
|
||||||
DOVECOT "Dovecot SASL authentication method" off \
|
DOVECOT "Dovecot SASL authentication method" off \
|
||||||
SASLKRB "If your SASL req. Kerberos select this option" ${STATUS_SASLKRB} \
|
|
||||||
SASLKRB5 "If your SASL req. Kerberos5 select this option" ${STATUS_SASLKRB5} \
|
SASLKRB5 "If your SASL req. Kerberos5 select this option" ${STATUS_SASLKRB5} \
|
||||||
SASLKMIT "If your SASL req. MIT Kerberos5 select this option" ${STATUS_SASLKRB5MIT} \
|
SASLKMIT "If your SASL req. MIT Kerberos5 select this option" ${STATUS_SASLKRB5MIT} \
|
||||||
TLS "Enable SSL and TLS support" ${STATUS_TLS} \
|
TLS "Enable SSL and TLS support" ${STATUS_TLS} \
|
||||||
|
@ -130,22 +129,15 @@ POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DDEF_SERVER_SASL_TYPE=\\\"dovecot\\\"
|
||||||
_REQUIRE+= dovecot
|
_REQUIRE+= dovecot
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_SASLKRB)
|
|
||||||
.if defined(WITH_SASLKRB5) || defined(WITH_SASLKMIT)
|
|
||||||
BROKEN= Select only one SASL Kerberos option
|
|
||||||
.endif
|
|
||||||
POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if defined(WITH_SASLKRB5)
|
.if defined(WITH_SASLKRB5)
|
||||||
.if defined(WITH_SASLKRB) || defined(WITH_SASLKMIT)
|
.if defined(WITH_SASLKMIT)
|
||||||
BROKEN= Select only one SASL Kerberos option
|
BROKEN= Select only one SASL Kerberos option
|
||||||
.endif
|
.endif
|
||||||
POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -lcrypto -lcrypt -lcom_err -lasn1 -lroken
|
POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -lcrypto -lcrypt -lcom_err -lasn1 -lroken
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_SASLKMIT)
|
.if defined(WITH_SASLKMIT)
|
||||||
.if defined(WITH_SASLKRB) || defined(WITH_SASLKRB5)
|
.if defined(WITH_SASLKRB5)
|
||||||
BROKEN= Select only one SASL Kerberos option
|
BROKEN= Select only one SASL Kerberos option
|
||||||
.endif
|
.endif
|
||||||
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
|
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
|
||||||
|
@ -160,6 +152,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFLAGS} -lssl -lcrypto
|
||||||
|
|
||||||
.if defined(WITH_BDB)
|
.if defined(WITH_BDB)
|
||||||
USE_BDB= yes
|
USE_BDB= yes
|
||||||
|
INVALID_BDB_VER= 50+
|
||||||
POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR}
|
POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR}
|
||||||
POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
||||||
.endif
|
.endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue