79281a4d27
On system without any IPv6 addresses emailrelay fails to start with messages: # service emailrelay start emailrelay: error: cannot bind the listening port: :::25 emailrelay: exception: cannot bind the listening port: :::25 /usr/local/etc/rc.d/emailrelay: WARNING: failed to start emailrelay PR: 204126 Submitted by: Dmitry Afanasiev Approved by: maintainer timeout
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Created by: Robert Nelson <robertn@the-nelsons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= emailrelay
|
|
PORTVERSION= 1.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail ipv6
|
|
MASTER_SITES= SF
|
|
EXTRACT_SUFX= -src.tar.gz
|
|
|
|
MAINTAINER= robertn@the-nelsons.org
|
|
COMMENT= Simple SMTP proxy and store-and-forward MTA
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= e_spooldir=${PREFIX}/var/spool/emailrelay
|
|
CONFIGURE_ARGS= --without-pam
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS DOXYGEN GUI OPENSSL IPV6
|
|
OPTIONS_DEFAULT= OPENSSL
|
|
OPTIONS_SUB= yes
|
|
|
|
DOXYGEN_CONFIGURE_WITH= doxygen
|
|
DOXYGEN_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen
|
|
|
|
GUI_CONFIGURE_ENABLE= gui
|
|
GUI_CONFIGURE_ENV= e_qtmoc="${MOC}"
|
|
GUI_USE= QT4=gui,moc
|
|
|
|
OPENSSL_CONFIGURE_WITH= openssl
|
|
OPENSSL_USE= OPENSSL=yes
|
|
|
|
IPV6_CONFIGURE_ENABLE= ipv6
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/emailrelay.auth.template \
|
|
${STAGEDIR}${PREFIX}/etc/emailrelay.auth.sample
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/emailrelay.conf.template \
|
|
${STAGEDIR}${PREFIX}/etc/emailrelay.conf.sample
|
|
${RM} -r ${STAGEDIR}${PREFIX}/libexec/emailrelay/init
|
|
|
|
.include <bsd.port.mk>
|