Ticket #32763: Portfile

File Portfile, 1.0 KB (added by kenh@…, 12 years ago)

Portfile for nmh

Line 
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
4PortSystem              1.0
5
6name                    nmh
7version                 1.4
8categories              mail
9maintainers             pobox.com:kenh
10description             The nmh Mail Handling System
11long_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.
14homepage                http://www.nongnu.org/nmh/
15platforms               darwin
16license                 {3-clause BSD}
17supported_archs         noarch
18master_sites            http://download.savannah.gnu.org/releases/nmh/
19checksums               md5     ef55286a821c53dc52b8974977c011ca \
20                        sha1    9965b6c526695ef4c505e04c26c70bcd3741612d \
21                        rmd160  bfcc38ad3924dc713880935ceb817eb14dec4d9b
22default_variants        +sasl +tls
23use_parallel_build      no
24
25configure.args          --enable-pop
26
27variant sasl description {Add support for SASL auth in POP and SMTP} {
28        configure.args-append   --with-cyrus-sasl
29}
30
31variant tls description {Add support for TLS enc in SMTP} {
32        configure.args-append   --with-tls
33}