Ticket #15383: alphamail.patch

File alphamail.patch, 3.3 KB (added by nerdling (Jeremy Lavergne), 15 years ago)

can't get boost included correctly, otherwise updated – with variants

  • Portfile

     
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
    12# $Id$
     3
    24PortSystem        1.0
     5
    36name              alphamail
    4 version           1.0.16
     7version           1.0.44
    58categories        www mail perl
    69platforms         darwin
    710maintainers       uoregon.edu:tkay
     
    1215                  interface is very clean and includes many advanced features\
    1316                  such as image preview icons, spell checking, address book\
    1417                  enabled compose fields, and much more.
    15 homepage          http://alphamail.uoosl.org/index.html
    16 master_sites      http://alphamail.uoosl.org/releases/
    17 checksums         md5 a1ede89d69918c144bb3ba11ba44d5b8
    18 configure.cxxflags-append     "-I${prefix}/include"
    19 depends_build     port:boost\
    20                   port:apache2\
    21                   port:p5-html-mason\
    22                   port:aspell-dict-en\
    23                   port:mod_perl2\
    24                   port:openssl\
    25                   port:p5-mime-tools\
    26                   port:p5-mime-types\
    27                   port:p5-html-parser\
    28                   port:p5-log-log4perl\
    29                   port:p5-unicode-string\
    30                   port:p5-unicode-collate\
    31                   port:p5-crypt-cbc\
    32                   port:p5-crypt-cast5\
    33                   port:p5-time-hires\
    34                   port:p5-time-piece\
    35                   port:p5-date-calc\
    36                   port:p5-gdgraph\
    37                   port:p5-test-simple\
    38                   port:p5-www-mechanize\
    39                   port:p5-apache-authcookie\
    40                   port:p5-apache-session\
    41                   port:p5-text-aspell\
    42                   port:p5-email-address\
    43                   port:p5-email-date\
    44                   port:p5-timedate\
    45                   port:p5-crypt-cast5\
    46                   port:antiword\
    47                   port:netpbm\
    48                   port:bzip2\
    49                   port:unzip\
    50                   port:p5-libapreq2
    51 #                 p5-Math-GMP
    52 #                 p5-Net-SSH-Perl
    53 #                 xlhtml
     18homepage            http://alphamail.sourceforge.net
     19
     20depends_lib         port:boost
     21depends_run         port:apache2 \
     22                    port:mod_perl2 \
     23                    port:p5-html-mason \
     24                    port:antiword \
     25                    port:netpbm \
     26                    port:unzip
     27
     28master_sites        sourceforge
     29checksums           md5     063cf3cf84e35ef9ba2134d9a71e4c9b \
     30                    sha1    c45c09da9acc56f974fe314f6cd0d1d4e92ad683 \
     31                    rmd160  6f033b51328e6d31ff9d768e00bccce42024c1f5
     32
     33configure.cxxflags-append       "-I${prefix}/include"
     34configure.ldflags-append        "-L${prefix}/lib"
     35
     36
     37variant dovecot conflicts uw cyrus description {dovecot IMAP server} {
     38    depends_run-append  port:dovecot
     39}
     40
     41variant uw conflicts dovecot cyrus description {imap-uw IMAP server} {
     42    depends_run-append  port:imap-uw
     43}
     44
     45variant cyrus conflicts dovecot uw description {cyrus IMAP server} {
     46    depends_run-append  port:cyrus-imapd
     47}
     48
     49if {![variant_isset dovecot] && ![variant_isset uw] && ![variant_isset cyrus]} {
     50    default_variants dovecot
     51}