aboutsummaryrefslogtreecommitdiffstats
path: root/www/ismail/Makefile
blob: 7a651afb43443ebe22dad3a33cd18e31b08e9540 (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
# New ports collection makefile for:    ismail
# Date created:         18 June 2004
# Whom:             Kelley Reynolds <kelley@insidesystems.net>
#
# $FreeBSD$
#

PORTNAME=   ismail
PORTVERSION=    2.1
PORTREVISION=   2
CATEGORIES= www mail
MASTER_SITES=   http://mail.electro-com.ru/~az/ISMail/
DISTNAME=   ${PORTNAME}-${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    PHP-based webmail client

USE_BZIP2=  yes

WRKSRC=     ${WRKDIR}

NO_BUILD=   yes
USE_PHP=    imap
WANT_PHP_WEB=   yes

SUB_FILES=  pkg-message

OPTIONS=    DOMXML "Use DOMXML for datastore (only with php4.x)" off \
        MYSQL "Use MySQL for datastore" on \
        POSTGRESQL "Use PostgresQL for datastore" off

.include <bsd.port.options.mk>

.ifdef(WITH_DOMXML)
USE_PHP+=   domxml
IGNORE_WITH_PHP=    5
.endif

.ifdef(WITH_MYSQL)
USE_PHP+=   mysql
PLIST_FILES+=   ${EXAMPLESDIR_REL}/mysql4.schema
PLIST_DIRS+=    ${EXAMPLESDIR_REL}
.endif

.ifdef(WITH_POSTGRESQL)
USE_PHP+=   pgsql
PLIST_FILES+=   ${EXAMPLESDIR_REL}/pgsql.schema
PLIST_DIRS+=    ${EXAMPLESDIR_REL}
.endif

.include <bsd.port.pre.mk>

LIB_DEPENDS+=   c-client4.9:${PORTSDIR}/mail/cclient

.pre-extract:
.if !defined(WITH_DOMXML) && !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL)
    @${ECHO_MSG} "Pleasee choose at least one of DOMXML, MYSQL, POSTGRESQL"
    @${FALSE}
.endif

pre-install:
    @${ECHO_MSG} ""
    @${ECHO_MSG} "Inside Systems Mail will be installed to ${WWWDIR}"
    @${ECHO_MSG} "Define WWWDIR to change it."
    @${ECHO_MSG} ""

do-install:
    @${MKDIR} ${WWWDIR}
    ${TAR} --exclude '*~' -C ${WRKSRC}/${PORTNAME} -cf - . | ${TAR} -C ${WWWDIR} -xf -
    @${CHOWN} -R www:www ${WWWDIR}
.ifndef(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/docs.html ${DOCSDIR}
.endif
.ifdef(WITH_MYSQL)
    @${MKDIR} ${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/examples/mysql4.schema ${EXAMPLESDIR}
.endif
.ifdef(WITH_POSTGRESQL)
    @${MKDIR} ${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/examples/pgsql.schema ${EXAMPLESDIR}
.endif

post-install:
    @${CAT} ${PKGMEASSAGE}

.include <bsd.port.post.mk>