1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/mail/phpmailer/Makefile
Felippe de Meirelles Motta cc8119ded3 - Update to 2.0.2.
PR:		ports/124694
Submitted by:	Zhen REN <bg1tpt@gmail.com> (maintainer)
Approved by:	gabor (mentor, implicit)
2008-07-06 23:28:49 +00:00

56 lines
1.3 KiB
Makefile

# New ports collection makefile for: phpmailer
# Date created: 6 April 2007
# Whom: Zhen REN <bg1tpt@gmail.com>
#
# $FreeBSD$
#
PORTNAME= phpmailer
PORTVERSION= 2.0.2
CATEGORIES= mail
MASTER_SITES= SF
DISTNAME= PHPMailer_v${DISTVERSION}
MAINTAINER= bg1tpt@gmail.com
COMMENT= Full Featured Email Transfer Class for PHP
WRKSRC= ${WRKDIR}
USE_DOS2UNIX= yes
NO_BUILD= yes
USE_PHP= pcre
PKGMESSAGE= ${WRKDIR}/pkg-message
MSG_SRC= ${FILESDIR}/pkg-message
MSG_SUB= DATADIR=${DATADIR} LOCALBASE=${LOCALBASE}
do-install:
@${MKDIR} ${DATADIR}
.for f in class.phpmailer.php class.pop3.php class.smtp.php
@${INSTALL_DATA} ${WRKSRC}/$f ${DATADIR}
.endfor
@${MKDIR} ${DATADIR}/language
@${INSTALL_DATA} ${WRKSRC}/language/* ${DATADIR}/language
@${MKDIR} ${DATADIR}/test
@${INSTALL_DATA} ${WRKSRC}/test/* ${DATADIR}/test
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in README LICENSE
@${INSTALL_DATA} ${WRKSRC}/$f ${DOCSDIR}
.endfor
@${CP} -R ${WRKSRC}/docs/* ${DOCSDIR}
@${CP} -R ${WRKSRC}/phpdoc/* ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
.endif
post-install:
@${SED} ${MSG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${MSG_SRC} > \
${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>