50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# New ports collection makefile for: phpmailer2
|
|
# Date created: 30 May 2009
|
|
# Whom: Joe Horn <joehorn@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= phpmailer2
|
|
PORTVERSION= 2.0.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF/phpmailer/phpmailer%20for%20php4/PHPMailer%20v${PORTVERSION}%20for%20PHP4
|
|
DISTNAME= PHPMailer_v${DISTVERSION}
|
|
|
|
MAINTAINER= joehorn@gmail.com
|
|
COMMENT= Full Featured Email Transfer Class for PHP4
|
|
|
|
CONFLICTS= phpmailer-5*
|
|
|
|
USE_DOS2UNIX= yes
|
|
NO_BUILD= yes
|
|
USE_PHP= pcre
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
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}/phpdocs/* ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|