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 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name nmh |
---|
7 | version 1.4 |
---|
8 | categories mail |
---|
9 | maintainers pobox.com:kenh |
---|
10 | description The nmh Mail Handling System |
---|
11 | long_description Nmh is an update to the classic Rand MH Mail Handling \ |
---|
12 | System. It is a suite of powerful command line \ |
---|
13 | utilities for reading and processing email. |
---|
14 | homepage http://www.nongnu.org/nmh/ |
---|
15 | platforms darwin |
---|
16 | license {3-clause BSD} |
---|
17 | supported_archs noarch |
---|
18 | master_sites http://download.savannah.gnu.org/releases/nmh/ |
---|
19 | checksums md5 ef55286a821c53dc52b8974977c011ca \ |
---|
20 | sha1 9965b6c526695ef4c505e04c26c70bcd3741612d \ |
---|
21 | rmd160 bfcc38ad3924dc713880935ceb817eb14dec4d9b |
---|
22 | default_variants +sasl +tls |
---|
23 | use_parallel_build no |
---|
24 | |
---|
25 | configure.args --enable-pop |
---|
26 | |
---|
27 | variant sasl description {Add support for SASL auth in POP and SMTP} { |
---|
28 | configure.args-append --with-cyrus-sasl |
---|
29 | } |
---|
30 | |
---|
31 | variant tls description {Add support for TLS enc in SMTP} { |
---|
32 | configure.args-append --with-tls |
---|
33 | } |
---|