1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name fetchmail |
---|
6 | version 6.3.4 |
---|
7 | categories mail |
---|
8 | platforms darwin |
---|
9 | maintainers pmq@macports.org |
---|
10 | |
---|
11 | description Batch mail retrieval utility for IMAP, POP2, POP3, \ |
---|
12 | APOP, KPOP, ETRN, or ODMR |
---|
13 | long_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 | |
---|
31 | homepage http://fetchmail.berlios.de |
---|
32 | master_sites http://download2.berlios.de/${name} \ |
---|
33 | http://download.berlios.de/${name} |
---|
34 | use_bzip2 yes |
---|
35 | |
---|
36 | checksums sha1 be0cd81f32483ba1d19be7ebe95f698f98eec13c \ |
---|
37 | rmd160 06ba93f4fb9aeefecde34117d92fe7f023b77bc4 |
---|
38 | |
---|
39 | # TODO should add a dep to tkinter |
---|
40 | depends_lib port:gettext port:py-tkinter |
---|
41 | # depends_run path:/Library/StartupItems/DarwinPortsStartup:DarwinPortsStartup |
---|
42 | |
---|
43 | configure.env CFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib" |
---|
44 | configure.args --mandir=${prefix}/share/man \ |
---|
45 | --without-ssl --with-kerberos5 --with-gssapi |
---|
46 | |
---|
47 | variant ssl { |
---|
48 | depends_lib-append port:openssl |
---|
49 | configure.args-delete --without-ssl |
---|
50 | configure.args-append --with-ssl |
---|
51 | } |
---|