aboutsummaryrefslogtreecommitdiffstats
path: root/mail/evolution-devel/Makefile
blob: b14afd5993fe0752bc34ff5e8384327f38a2f309 (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
97
98
99
100
101
102
103
104
105
106
107
# New ports collection makefile for:    evolution
# Date created:             28th June 2000
# Whom:                 Ade Lovett <ade@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   evolution
PORTVERSION=    1.0.2
PORTREVISION=   2
CATEGORIES= mail gnome
MASTER_SITES=   http://www.sleepycat.com/update/3.1.17/:db \
        ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/evolution
DISTFILES=  ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
        db-3.1.17.tar.gz:db

PATCH_SITES=    ${MASTER_SITE_LOCAL}
PATCH_SITE_SUBDIR=  sobomax
PATCHFILES= evolution-${PORTVERSION}-reply-to.diff.gz

MAINTAINER= gnome@FreeBSD.org

LIB_DEPENDS=    bonobo_conf.0:${PORTSDIR}/devel/bonobo-conf \
        nss3.1:${PORTSDIR}/security/nss
.if defined(WITH_LDAP)
LIB_DEPENDS+=   ldap.2:${PORTSDIR}/net/openldap2
.endif
RUN_DEPENDS=    gnome-spell-component:${PORTSDIR}/textproc/gnomespell
.if !defined(WITHOUT_PILOT)
BUILD_DEPENDS+= ${X11BASE}/lib/gnome-pilot/conduits/libemail_conduit.so:${PORTSDIR}/palm/gnomepilot-conduits
RUN_DEPENDS+=   ${X11BASE}/lib/gnome-pilot/conduits/libemail_conduit.so:${PORTSDIR}/palm/gnomepilot-conduits
.endif

USE_GMAKE=  yes
USE_BISON=  yes
USE_X_PREFIX=   yes
USE_GNOME=  yes
USE_OPENSSL=    yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-db3-libs=${DB3_WRKSRC} \
        --with-db3-includes=${DB3_WRKSRC} \
        --with-html-dir=${PREFIX}/share/gnome/html \
        --with-nspr-includes=${LOCALBASE}/include/nspr \
        --with-nspr-libs=${LOCALBASE}/lib \
        --with-nss-includes=${LOCALBASE}/include/nss/security \
        --with-nss-libs=${LOCALBASE}/lib

.if defined(WITH_LDAP)
CONFIGURE_ARGS+= --with-openldap=${LOCALBASE}
.endif

.if !defined(WITHOUT_PILOT)
CONFIGURE_ARGS+=    --with-pisock=${LOCALBASE} \
            --enable-pilot-conduits=yes
PLIST_SUB=  PILOT:=""
.else
PLIST_SUB=  PILOT:="@comment "
.endif
CONFIGURE_ENV=  CPPFLAGS="-I${DB3_WRKSRC} -I${LOCALBASE}/include" \
        LIBS="-pthread -L${LOCALBASE}/lib"

PLIST_SUB+= VERSION=${PORTVERSION}

MAN1=       evolution.1

pre-patch:
    @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
         s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
    @find ${WRKSRC} -name "Makefile.in*" | xargs ${PERL} -pi -e \
        's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
         s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
    @find ${WRKSRC} -type f -name "*.[ch]" | xargs ${GREP} -l '[^g]iconv.h' | \
        xargs ${PERL} -pi -e 's|(["<])iconv.h|\1giconv.h|g'
    @find ${WRKSRC} -type f -name "*.[ch]" | xargs ${GREP} -l '<db.h>' | \
        xargs ${PERL} -pi -e 's|<db.h>|<db3/db.h>|g'

# DB3 stuff. Ugly, I know, but that's life.
DB3_WRKSRC= ${WRKDIR}/db-3.1.17/build_unix
DB3_CONFIGURE_SCRIPT=   ../dist/configure
DB3_CONFIGURE_ARGS= --enable-compat185 \
            --enable-dump185 --enable-cxx \
            --enable-static \
            --disable-dynamic \
            --prefix=${PREFIX} \
            --includedir=${PREFIX}/include/db3 \
            --target=${ARCH}-unknown-freebsd${OSREL}

pre-configure:
    @(cd ${DB3_WRKSRC} && \
        ${SETENV} CC="${CC}" CXX="${CXX}" \
        CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
        INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
        INSTALL_DATA="${INSTALL_DATA}" \
        INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
        INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
        ${DB3_CONFIGURE_ENV} ./${DB3_CONFIGURE_SCRIPT} ${DB3_CONFIGURE_ARGS})
    @(cd ${DB3_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
    @${RM} -f ${DB3_WRKSRC}/db3
    @${LN} -s . ${DB3_WRKSRC}/db3
# End of the DB3 stuff

post-install:
    @find ${PREFIX}/share/gnome/evolution/default_user -type f | \
        xargs ${CHMOD} 644

.include <bsd.port.mk>