Ticket #10780: Portfile

File Portfile, 1.7 KB (added by pmq@…, 18 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name            fetchmail
6version         6.3.4
7categories      mail
8platforms       darwin
9maintainers     pmq@macports.org
10
11description     Batch mail retrieval utility for IMAP, POP2, POP3, \
12                APOP, KPOP, ETRN, or ODMR
13long_description \
14    Fetchmail is a full-featured IMAP, POP2, POP3, \
15    APOP, KPOP, ETRN, ODMR client with easy \
16    configuration, daemon mode, forwarding via SMTP \
17    or local MDA, and superior reply handling.  It \
18    is used to handle intermittent email connections \
19    by acting as a coupling that seamlessly batch \
20    forwards fetched mail from your mail server to \
21    your local delivery system, allowing you to read \
22    your it with your favourite mail user agent. \
23    Fetchmail also includes useful spam filtering \
24    and multi-user functions.  \
25    A typical use of fetchmail is to connect to your \
26    ISP's POP3 server, downloading your mail into \
27    the INBOX on your local computer.  You may then \
28    read the mail, offline if you want, using Pine, \
29    mutt, or any standard mail user agent.   \
30
31homepage        http://fetchmail.berlios.de
32master_sites    http://download2.berlios.de/${name} \
33                http://download.berlios.de/${name}
34use_bzip2       yes
35
36checksums       sha1 be0cd81f32483ba1d19be7ebe95f698f98eec13c \
37                rmd160 06ba93f4fb9aeefecde34117d92fe7f023b77bc4
38
39# TODO should add a dep to tkinter
40depends_lib     port:gettext port:py-tkinter
41# depends_run   path:/Library/StartupItems/DarwinPortsStartup:DarwinPortsStartup
42
43configure.env   CFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib"
44configure.args  --mandir=${prefix}/share/man \
45                --without-ssl --with-kerberos5 --with-gssapi
46
47variant ssl {
48    depends_lib-append          port:openssl
49    configure.args-delete       --without-ssl
50    configure.args-append       --with-ssl
51}