mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
78e0d8ab65
Approved by: portmgr (blanket)
45 lines
1.5 KiB
Makefile
45 lines
1.5 KiB
Makefile
# Created by: Andrey Slusar <anray@FreeBSD.org>
|
|
|
|
PORTNAME= masqmail
|
|
PORTVERSION= 0.3.5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://marmaro.de/prog/masqmail/files/
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Mail server for hosts, not permanently connected to the internet
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GNOME= glib20
|
|
USES= cpe gnome pkgconfig
|
|
USE_RC_SUBR= masqmail
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -Wno-trigraphs
|
|
CONFIGURE_ARGS= --with-user=mailnull --with-group=mail \
|
|
--with-confdir=${ETCDIR} --with-logdir=/var/log/masqmail
|
|
CPE_VENDOR= marmaro
|
|
|
|
OPTIONS_DEFINE= RESOLVER AUTH DEBUG DOCS
|
|
OPTIONS_DEFAULT= RESOLVER AUTH
|
|
RESOLVER_DESC= Resolver
|
|
AUTH_DESC= SMTP AUTH (RFC2554) support
|
|
|
|
AUTH_CONFIGURE_ENABLE= auth
|
|
DEBUG_CONFIGURE_ENABLE= debug
|
|
RESOLVER_CONFIGURE_ENABLE= resolver
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/sed.*SENDMAIL/ s|$$(DESTDIR)||' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/masqmail.conf ${STAGEDIR}${ETCDIR}/masqmail.conf.sample
|
|
${INSTALL_DATA} ${WRKSRC}/examples/example.route ${STAGEDIR}${ETCDIR}/masqmail.route.sample
|
|
${INSTALL_DATA} ${WRKSRC}/examples/localnet.route ${STAGEDIR}${ETCDIR}/localnet.route.sample
|
|
${INSTALL_DATA} ${WRKSRC}/examples/openssl.route ${STAGEDIR}${ETCDIR}/openssl.route.sample
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/docs
|
|
cd ${WRKSRC} && ${CP} ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/docs/
|
|
|
|
.include <bsd.port.mk>
|