aboutsummaryrefslogtreecommitdiffstats
path: root/mail/squirrelmail/Makefile
blob: 70a2eef2fa8ad8df6c68ded517c97f5fb06b8688 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Created by: Simon Dick <simond@irrelevant.org>
# $FreeBSD$

PORTNAME=   squirrelmail
PORTVERSION=    20160216
CATEGORIES= mail www
MASTER_SITES=   LOCAL/adamw/squirrelmail
DISTNAME=   ${PORTNAME}-${PORTVERSION}_0200-SVN.stable
DIST_SUBDIR=    ${PORTNAME}

MAINTAINER= adamw@FreeBSD.org
COMMENT=    Webmail system which accesses mail over IMAP

LICENSE=    GPLv2

# This snapshot tarball contains php 5.4 and 5.5 compatibility
# patches, but the only guaranteed compatibility is with php 5.3.
# If you encounter problems, downgrade to php 5.3.

USE_PHP=    session hash gettext mbstring pcre openssl xml
WANT_PHP_WEB=   yes

USES=       cpe gettext perl5 tar:bzip2
USE_PERL5=  run
NO_ARCH=    yes

WRKSRC=     ${WRKDIR}/${PORTNAME}.stable/${PORTNAME}

OPTIONS_DEFINE= DATABASE LDAP DOCS
DATABASE_DESC=  PEAR database support (must also install a driver)

# if you were using WITHOUT_WWWDIR, use SQUIRRELDIR=${PREFIX}/squirrelmail
SQUIRRELDIR?=   ${WWWDIR}

SMUSER?=    ${WWWOWN}
SMGROUP?=   ${WWWGRP}
USERS=      ${SMUSER}
GROUPS=     ${SMGROUP}

PLIST_SUB=  PORTVERSION=${PORTVERSION} \
        SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}" \
        SMUSER=${SMUSER} \
        SMGROUP=${SMGROUP}

SUB_FILES=  pkg-message
SUB_LIST=   SQUIRRELDIR=${SQUIRRELDIR} SMUSER=${SMUSER} SMGROUP=${SMGROUP}

CONFLICTS=  squirreloutlook-[0-9]*

DATABASE_RUN_DEPENDS=   ${LOCALBASE}/share/pear/DB.php:databases/pear-DB
LDAP_USE=   PHP=ldap

post-patch:
    @${REINPLACE_CMD} -e 's|ispell|${LOCALBASE}/bin/aspell|g' \
        ${WRKSRC}/plugins/squirrelspell/sqspell_config.php
    @${REINPLACE_CMD} -e 's|/usr/bin/fortune|/usr/games/fortune|g' \
        ${WRKSRC}/plugins/fortune/fortune_functions.php
    @${REINPLACE_CMD} -e 's|/var/local/squirrelmail|${SQUIRRELDIR}|g' \
        ${WRKSRC}/config/conf.pl ${WRKSRC}/config/config_default.php ${WRKSRC}/doc/INSTALL

do-build:
    # Rearrange the documentation
    @${MV} ${WRKSRC}/themes/README.themes ${WRKSRC}/doc
    @(cd ${WRKSRC} && \
        for f in `${FIND} -E plugins -regex \
            '.*(README.*|INSTALL|HISTORY)'`; \
        do \
            ${MKDIR} doc/`dirname $$f`; \
            ${MV} $$f doc/`dirname $$f`; \
        done)
    @${MV} ${WRKSRC}/doc/plugins/squirrelspell/doc/README ${WRKSRC}/doc/plugins/squirrelspell
    @${RM} -rf ${WRKSRC}/doc/plugins/squirrelspell/doc
    @${MV} ${WRKSRC}/plugins/squirrelspell/doc/* ${WRKSRC}/doc/plugins/squirrelspell
    @${RM} -f ${WRKSRC}/doc/plugins/squirrelspell/index.php
    @${RM} -rf ${WRKSRC}/plugins/squirrelspell/doc

    @${ECHO} "left_refresh=300" >> ${WRKSRC}/data/default_pref
    @${MV} ${WRKSRC}/config/config_local.php ${WRKSRC}/config/config_local.php.sample
    @${MV} ${WRKSRC}/data/default_pref ${WRKSRC}/data/default_pref.sample
    @${MKDIR} ${WRKSRC}/attach
    @${CP} -p ${WRKSRC}/data/.htaccess ${WRKSRC}/attach/.htaccess

do-install:
    @${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily
    ${INSTALL_SCRIPT} ${FILESDIR}/111.clean-squirrelmail ${STAGEDIR}${PREFIX}/etc/periodic/daily
    @${MKDIR} ${STAGEDIR}${SQUIRRELDIR}
    ${INSTALL_DATA} ${WRKSRC}/index.php ${STAGEDIR}${SQUIRRELDIR}
    ${INSTALL_SCRIPT} ${WRKSRC}/configure ${STAGEDIR}${SQUIRRELDIR}
    (cd ${WRKSRC} && \
        ${COPYTREE_SHARE} "attach class config data functions help images include locale plugins po scripts src themes" \
            ${STAGEDIR}${SQUIRRELDIR})

    @${MKDIR} ${STAGEDIR}${DOCSDIR}
    (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})

.include <bsd.port.mk>