Changeset 81143
- Timestamp:
- 07/25/11 18:50:12 (4 years ago)
- File:
-
- 1 edited
-
trunk/dports/mail/procmail/Portfile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/mail/procmail/Portfile
r50572 r81143 1 # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 1 2 # $Id$ 2 PortSystem 1.03 3 4 name procmail 5 version 3.22 6 revision 2 7 categories mail 8 maintainers nomaintainer 9 description A local mail delivery agent 10 long_description The procmail mail processing program can be used \ 11 to create mail-servers, mailing lists, sort your \ 12 incoming mail into separate folders/files (real \ 13 convenient when subscribing to one or more \ 14 mailing lists or for prioritising your mail), \ 15 preprocess your mail, start any programs upon \ 16 mail arrival (e.g. to generate different chimes \ 17 on your workstation for different types of mail) \ 18 or selectively forward certain incoming mail \ 19 automatically to someone. \ 20 Procmail can be used: \ 21 - and installed by an unprivileged user (for \ 22 himself only). \ 23 - as a drop in replacement for the local \ 24 delivery agent /bin/mail (with biff/comsat \ 25 support). \ 26 - as a general mailfilter for whole groups of \ 27 messages (e.g. when called from within \ 28 sendmail.cf rules). \ 29 The accompanying formail program enables you to \ 30 generate autoreplies, split up digests/mailboxes \ 31 into the original messages, do some very simple \ 32 header-munging/extraction, or force mail into \ 33 mail-format (with leading From line). 34 homepage http://www.procmail.org/ 35 master_sites ftp://ftp.procmail.org/pub/procmail/ \ 36 ftp://ftp.psg.com/pub/unix/procmail/ \ 37 ftp://ftp.ucsb.edu/pub/mirrors/procmail/ \ 38 ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ \ 39 ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/ \ 40 ftp://ftp.net.ohio-state.edu/pub/networking/mail/procmail/ \ 41 ftp://ftp.fdt.net/pub/unix/packages/procmail/ \ 42 ftp://ftp.tamu.edu/pub/mirrors/procmail/ \ 43 ftp://ftp.kfki.hu/pub/packages/mail/procmail/ \ 44 ftp://giswitch.sggw.waw.pl/pub/unix/procmail/ \ 45 ftp://ftp.solarisguide.com/pub/procmail/ \ 46 ftp://ftp.win.ne.jp/pub/network/mail/procmail/ \ 47 http://www.ring.gr.jp/archives/net/mail/procmail/ \ 48 ftp://ftp.ring.gr.jp/pub/net/mail/procmail/ \ 49 ftp://ftp.ayamura.org/pub/procmail/ \ 50 ftp://sunsite.cnlab-switch.ch/mirror/procmail/ \ 51 ftp://ftp.gigabell.net/pub/procmail/ \ 52 ftp://ftp.linja.net/pub/mirrors/procmail/ \ 53 ftp://ftp.stealth.net/pub/mirrors/ftp.procmail.org/pub/procmail/ \ 54 ftp://ftp.mirror.ac.uk/sites/ftp.procmail.org/pub/procmail/ 55 checksums md5 1678ea99b973eb77eda4ecf6acae53f1 56 platforms darwin 4 PortSystem 1.0 57 5 58 configure { 59 system "cd ${worksrcpath} && mv INSTALL INSTALL.README" 60 reinplace "s%^/\\*\\(#define\[ \t\]*DEF\[S\]*PATH\[ \t\]*\".*\\)\".*$%\\1:${prefix}/bin\"%" ${worksrcpath}/config.h 61 reinplace "s%/etc/procmailrc%${prefix}/etc/procmailrc%" ${worksrcpath}/config.h 62 reinplace "s%/usr/local%${prefix}%g" ${worksrcpath}/Makefile 63 reinplace "s%(BASENAME)/man%(BASENAME)/share/man%" ${worksrcpath}/Makefile } 6 name procmail 7 version 3.22 8 revision 2 9 categories mail 10 platforms darwin 11 maintainers nomaintainer 64 12 65 build.args BASENAME=${destroot}${prefix} LOCKINGTEST=/tmp 66 destroot.args BASENAME=${destroot}${prefix} LOCKINGTEST=/tmp install-suid 13 description A local mail delivery agent 14 15 long_description The procmail mail processing program can be used \ 16 to create mail-servers, mailing lists, sort your \ 17 incoming mail into separate folders/files (real \ 18 convenient when subscribing to one or more \ 19 mailing lists or for prioritising your mail), \ 20 preprocess your mail, start any programs upon \ 21 mail arrival (e.g. to generate different chimes \ 22 on your workstation for different types of mail) \ 23 or selectively forward certain incoming mail \ 24 automatically to someone. \ 25 Procmail can be used: \ 26 - and installed by an unprivileged user (for \ 27 himself only). \ 28 - as a drop in replacement for the local \ 29 delivery agent /bin/mail (with biff/comsat \ 30 support). \ 31 - as a general mailfilter for whole groups of \ 32 messages (e.g. when called from within \ 33 sendmail.cf rules). \ 34 The accompanying formail program enables you to \ 35 generate autoreplies, split up digests/mailboxes \ 36 into the original messages, do some very simple \ 37 header-munging/extraction, or force mail into \ 38 mail-format (with leading From line). 39 40 homepage http://www.procmail.org/ 41 42 master_sites ftp://ftp.procmail.org/pub/procmail/ \ 43 ftp://ftp.psg.com/pub/unix/procmail/ \ 44 ftp://ftp.ucsb.edu/pub/mirrors/procmail/ \ 45 ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ \ 46 ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/ \ 47 ftp://ftp.net.ohio-state.edu/pub/networking/mail/procmail/ \ 48 ftp://ftp.fdt.net/pub/unix/packages/procmail/ \ 49 ftp://ftp.tamu.edu/pub/mirrors/procmail/ \ 50 ftp://ftp.kfki.hu/pub/packages/mail/procmail/ \ 51 ftp://giswitch.sggw.waw.pl/pub/unix/procmail/ \ 52 ftp://ftp.solarisguide.com/pub/procmail/ \ 53 ftp://ftp.win.ne.jp/pub/network/mail/procmail/ \ 54 http://www.ring.gr.jp/archives/net/mail/procmail/ \ 55 ftp://ftp.ring.gr.jp/pub/net/mail/procmail/ \ 56 ftp://ftp.ayamura.org/pub/procmail/ \ 57 ftp://sunsite.cnlab-switch.ch/mirror/procmail/ \ 58 ftp://ftp.gigabell.net/pub/procmail/ \ 59 ftp://ftp.linja.net/pub/mirrors/procmail/ \ 60 ftp://ftp.stealth.net/pub/mirrors/ftp.procmail.org/pub/procmail/ \ 61 ftp://ftp.mirror.ac.uk/sites/ftp.procmail.org/pub/procmail/ 62 63 checksums md5 1678ea99b973eb77eda4ecf6acae53f1 64 65 configure { 66 system "cd ${worksrcpath} && mv INSTALL INSTALL.README" 67 reinplace "s%^/\\*\\(#define\[ \t\]*DEF\[S\]*PATH\[ \t\]*\".*\\)\".*$%\\1:${prefix}/bin\"%" ${worksrcpath}/config.h 68 reinplace "s%/etc/procmailrc%${prefix}/etc/procmailrc%" ${worksrcpath}/config.h 69 reinplace "s%/usr/local%${prefix}%g" ${worksrcpath}/Makefile 70 reinplace "s%(BASENAME)/man%(BASENAME)/share/man%" ${worksrcpath}/Makefile 71 } 72 73 build.args BASENAME=${destroot}${prefix} LOCKINGTEST=/tmp 74 destroot.args BASENAME=${destroot}${prefix} LOCKINGTEST=/tmp install-suid
Note: See TracChangeset
for help on using the changeset viewer.

