mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
9dff352320
for where it resulted in a change in output from build-depends-list or run-depends-list. Approved by: portmgr (adamw)
60 lines
1.3 KiB
Makefile
60 lines
1.3 KiB
Makefile
# Created by: Zane C. Bowers
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qpsmtpd
|
|
PORTVERSION= 0.93
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 3
|
|
CATEGORIES= mail perl5
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= noc-ports@biglist.com
|
|
COMMENT= Flexible SMTP daemon written in Perl and featuring a plugin API
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= spamd:mail/spamassassin \
|
|
p5-Mail-Tools>=0:mail/p5-Mail-Tools \
|
|
p5-Net-DNS>=0.39:dns/p5-Net-DNS \
|
|
p5-Net-IP>=0:net-mgmt/p5-Net-IP
|
|
|
|
OPTIONS_DEFINE= MODPERL DOCS EXAMPLES
|
|
OPTIONS_DEFAULT=MODPERL
|
|
MOD_PERL_DESC= "Apache Support via mod_perl"
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= smtpd
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMODPERL}
|
|
USES+= apache:run,2.2+
|
|
RUN_DEPENDS+= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2
|
|
.endif
|
|
|
|
USES+= perl5
|
|
USE_PERL5= configure
|
|
NO_ARCH= yes
|
|
|
|
USE_RC_SUBR= qpsmtpd
|
|
|
|
SUB_LIST+= PERL=${PERL}
|
|
SUB_FILES+= pkg-message
|
|
|
|
pre-configure:
|
|
@${RM} ${WRKSRC}/plugins/milter
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/plugins
|
|
(cd ${WRKSRC}/plugins && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/plugins)
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README* ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/config.sample/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|