aboutsummaryrefslogtreecommitdiffstats
path: root/mail/fetchmail/Makefile
blob: 90f0949c2520632be0ef5d7ac90935e64ab8236b (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
# New ports collection makefile for:    fetchmail
# Version required:     5.2.3
# Date created:     26 Oct 1996
# Whom:         Ville Eerola <ve@sci.fi>
#
# $FreeBSD$
#
# NOTE:  The fetchmailconf program (an interactive program for
# writing .fetchmailrc files) requires Python, found in the Ports
# Collection under lang/python.  The fetchmail program itself
# does not need Python, so there is no RUN_DEPENDS for Python in
# this Makefile.

DISTNAME=       fetchmail-5.2.3
CATEGORIES= mail ipv6
MASTER_SITES=   ftp://ftp.ccil.org/pub/esr/fetchmail/

MAINTAINER= ve@sci.fi

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-OPIE --enable-RPA --enable-POP2 --enable-SDPS
CONFIGURE_ENV=  LDFLAGS="${CFLAGS}"
.if defined(USE_INET6)
CONFIGURE_ARGS+=--enable-inet6
.endif
MAN1=       fetchmail.1
MLINKS=     fetchmail.1 fetchmailconf.1

.if exists(/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4)
CONFIGURE_ARGS += --with-kerberos=/usr/include
.endif

.if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libkrb5.a)
CONFIGURE_ARGS += --with-kerberos5=${KRB5_HOME}
.endif

FDOC=   ${PREFIX}/share/doc/fetchmail

pre-patch:
    @${CP} -f  /usr/include/md5.h ${WRKSRC}
    @perl -pi.bak -e 's|^#!/.*/python|#!${PREFIX}/bin/python|;' ${WRKSRC}/fetchmailconf
    @${SED} -e "s|@PREFIX@|${PREFIX}|" ${FILESDIR}/fetchmailconf > ${WRKDIR}/fetchmailconf

post-install:
    ${INSTALL} -d -m 555 -o ${DOCOWN} -g ${DOCGRP} ${FDOC}
    cd ${WRKSRC} && ${INSTALL_DATA} \
       sample.rcfile FAQ NOTES FEATURES README COPYING \
       fetchmail-FAQ.html fetchmail-features.html \
       design-notes.html ${FDOC}
    ${MV} ${PREFIX}/bin/fetchmailconf ${PREFIX}/libexec/fetchmailconf.bin
    ${INSTALL_SCRIPT} ${WRKDIR}/fetchmailconf ${PREFIX}/bin

.include <bsd.port.mk>