aboutsummaryrefslogtreecommitdiffstats
path: root/www/hastymail2/Makefile
blob: edd071a29aebc92769b928b90364b42a66718d59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Created by: Bartlomiej Rutkowski <r@robakdesign.com>
# $FreeBSD$

PORTNAME=   hastymail2
PORTVERSION=    1.1
PORTREVISION=   5
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

EXPIRATION_DATE=    2018-03-07
DEPRECATED= Unmaintained, all www files wrongly belongs to www user.

LICENSE=    GPLv2+
LICENSE_FILE=   ${WRKSRC}/COPYING

NO_BUILD=   yes
SUB_FILES=  pkg-message

CONFLICTS_INSTALL=  hastymail2-devel-[0-9]*

USES=       php:web
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'
PLIST_SUB=  WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"

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:databases/pear-MDB2_Driver_mysql@${PHP_FLAVOR}
.endif
.endif

.if ${PORT_OPTIONS:MPGSQL}
USES+=  pgsql
.if ! ${PORT_OPTIONS:MDB}
RUN_DEPENDS+=   ${LOCALBASE}/share/pear/MDB2/Driver/pgsql.php:databases/pear-MDB2_Driver_pgsql@${PHP_FLAVOR}
.endif
.endif

.if ${PORT_OPTIONS:MDB} && (${PORT_OPTIONS:MMYSQL} || ${PORT_OPTIONS:MPGSQL})
RUN_DEPENDS+=   ${LOCALBASE}/share/pear/DB.php:databases/pear-DB@${PHP_FLAVOR}
.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}
    @${MKDIR} ${STAGEDIR}${ETCDIR}
    ${INSTALL_DATA} ${WRKSRC}/hastymail2.conf.example \
        ${STAGEDIR}${ETCDIR}/hastymail2.conf.sample

.include <bsd.port.mk>