New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #13788: mutt-devel.gpgme.patch

File mutt-devel.gpgme.patch, 1.3 KB (added by ludwig@…, 4 years ago)

Patch that adds a gpgme variant to the mutt-devel port

  • Portfile

     
    44 
    55name        mutt-devel 
    66version     1.5.17 
     7revision    1 
    78categories  mail 
    89maintainers olaf@foellinger.de 
    910description Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc) 
     
    1617         Elm, Pine, mail and mailx.  Features include color support, \ 
    1718         message threading, MIME support (including RFC1522 support \ 
    1819         for encoded headers), customizable key bindings, POP3, \ 
    19          Delivery Status Notification (DSN) support, and PGP/MIME. 
     20         Delivery Status Notification (DSN) support, PGP/MIME, and S/MIME. 
    2021 
    2122master_sites        ftp://ftp.mutt.org/mutt/devel/ 
    2223distname            mutt-${version} 
     
    4748variant sasl { configure.args-append --with-sasl 
    4849                depends_lib-append port:cyrus-sasl2 } 
    4950variant debug   { configure.args-append --enable-debug } 
     51 
     52variant gpgme { 
     53    configure.args-append --enable-gpgme 
     54    depends_lib-append port:gpgme 
     55} 
     56 
    5057# use file size attribute instead of access time 
    5158variant buffy { configure.args-append --enable-buffy-size } 
    5259 
     
    142149# Include internal SMTP relay support 
    143150        configure.args-append --enable-smtp 
    144151} 
     152