1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/mail/phpmailer6/Makefile
Jochen Neumeister ef827af609 mail/phpmailer6: Update to 6.4.0
Changelog:

- Revert change that made the mail() and sendmail transports set the envelope sender if one isn't explicitly provided, as it causes problems described in https://github.com/PHPMailer/PHPMailer/issues/2298
- Check for mbstring extension before decoding addresss in parseAddress
- Add Serbian Latin translation (sr_latn)
- Enrol PHPMailer in Tidelift

Sponsored by: Netzkommune GmbH
2021-04-18 09:38:35 +02:00

43 lines
800 B
Makefile

PORTNAME= phpmailer
PORTVERSION= 6.4.0
DISTVERSIONPREFIX= v
CATEGORIES= mail
PKGNAMESUFFIX= 6
MAINTAINER= joneum@FreeBSD.org
COMMENT= Full Featured Email Transfer Class for PHP
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cpe php
CONFLICTS_INSTALL= phpmailer
PORTSCOUT= limit:^6\.
CPE_VENDOR= phpmailer_project
USE_GITHUB= yes
GH_ACCOUNT= PHPMailer
GH_PROJECT= PHPMailer
NO_BUILD= yes
NO_ARCH= yes
SUB_FILES= pkg-message
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
do-install:
@${MKDIR} ${STAGEDIR}${DATADIR}
.for f in Exception.php PHPMailer.php POP3.php SMTP.php
${INSTALL_DATA} ${WRKSRC}/src/$f ${STAGEDIR}${DATADIR}
.endfor
post-install-NLS-on:
@${MKDIR} ${STAGEDIR}${DATADIR}/language
${INSTALL_DATA} ${WRKSRC}/language/* ${STAGEDIR}${DATADIR}/language
.include <bsd.port.mk>