1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/mail/phplist/Makefile
Steve Wills f99205c3d2 mail/phplist: update to 3.4.6
PR:		240849
Submitted by:	Krzysztof <ports@bsdserwis.com> (maintainer)
2019-09-27 13:13:31 +00:00

52 lines
1.5 KiB
Makefile

# Created by: Nick Hilliard <nick@foobar.org>
# $FreeBSD$
PORTNAME= phplist
PORTVERSION= 3.4.6
CATEGORIES= mail www
MASTER_SITES= SF
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
MAINTAINER= ports@bsdserwis.com
COMMENT= Full-featured open-source newsletter manager
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= ${PEARDIR}/HTTP/Request.php:www/pear-HTTP_Request@${PHP_FLAVOR}
USES= cpe tar:tgz gettext php:web,flavors
USE_PHP= curl gd hash iconv imap json mbstring mysqli pcre session xml zlib
NO_BUILD= yes
NO_ARCH= yes
PEARDIR?= ${LOCALBASE}/share/pear
PORTDOCS= CONTRIBUTING.md COPYING INSTALL PEOPLE README.md TODO UPGRADE VERSION
OPTIONS_DEFINE= DOCS
SUB_FILES= phplist
PLIST_SUB= WWWOWN=${WWWOWN} \
WWWGRP=${WWWGRP}
post-extract:
@${MV} ${WRKSRC}/public_html/lists/config/config.php ${WRKSRC}/public_html/lists/config/config.php.sample
# Note: there is file(s) with non-ascii filenames. So it's difficult to add
# such files to pkg-plist. That's why there is find with delete
#
do-install:
@${FIND} ${WRKSRC}/public_html/ -type f -regex '.*[^!-~].*' -delete
@${FIND} ${WRKSRC}/public_html/ -type l -delete
@${FIND} ${WRKSRC}/public_html/ -type d -empty -delete
${MKDIR} ${STAGEDIR}${WWWDIR}/
(cd ${WRKSRC}/public_html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
${INSTALL_SCRIPT} ${WRKDIR}/phplist ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>