mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
45911acd42
Sponsored by: Netzkommune GmbH
43 lines
800 B
Makefile
43 lines
800 B
Makefile
PORTNAME= phpmailer
|
|
PORTVERSION= 6.5.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>
|