mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
78 lines
2.0 KiB
Makefile
78 lines
2.0 KiB
Makefile
# Created by: Bartlomiej Rutkowski <r@robakdesign.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hastymail2
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www mail
|
|
MASTER_SITES= SF/hastymail/Hastymail2%20Stable%20Releases/Hastymail2%201.1/
|
|
DISTNAME= hastymail2_${WIKEDVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Small, fast and secure yet powerful IMAP webmail
|
|
|
|
LICENSE= GPLv2
|
|
|
|
NO_BUILD= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
CONFLICTS= hastymail-* hastymail2-devel-*
|
|
|
|
WANT_PHP_WEB= yes
|
|
USE_PHP= ctype pcre session xml
|
|
|
|
WIKEDVERSION= 1_1
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_${WIKEDVERSION}
|
|
NO_BUILD= yes
|
|
FIND_SKIP_OPTS= -not -name hastymail2.conf.example -not -name '*.orig'
|
|
|
|
OPTIONS_DEFINE= PGSQL MYSQL DB ICONV MBSTRING
|
|
|
|
DB_DESC= Use older pear DB (instead of MDB2)
|
|
MBSTRING_DESC= Support multi-byte character sets
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_MYSQL= yes
|
|
.if ! ${PORT_OPTIONS:MDB}
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/pear/MDB2/Driver/mysql.php:${PORTSDIR}/databases/pear-MDB2_Driver_mysql
|
|
.endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PGSQL= yes
|
|
.if ! ${PORT_OPTIONS:MDB}
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/pear/MDB2/Driver/pgsql.php:${PORTSDIR}/databases/pear-MDB2_Driver_pgsql
|
|
.endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDB} && (${PORT_OPTIONS:MMYSQL} || ${PORT_OPTIONS:MPGSQL})
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MICONV}
|
|
USE_PHP+= iconv
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMBSTRING}
|
|
USE_PHP+= mbstring
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E "s#/etc/hastymail[2]*/hasty[ma][ma]il2.rc#${PREFIX}/etc/hastymail2/hastymail2.rc#" \
|
|
${WRKSRC}/index.php ${WRKSRC}/hastymail2.conf.example
|
|
@${FIND} ${WRKSRC}/plugins -name config.php | ${XARGS} -I % ${MV} % %.sample
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
@cd ${WRKSRC} && ${FIND} . ${FIND_SKIP_OPTS} \
|
|
| ${PAX} -rwd ${STAGEDIR}${WWWDIR}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}
|
|
@${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/hastymail2.conf.example \
|
|
${STAGEDIR}${ETCDIR}/hastymail2.conf.sample
|
|
|
|
.include <bsd.port.mk>
|