Ticket #1896: Portfile.diff

File Portfile.diff, 2.5 KB (added by matt@…, 20 years ago)

Diff for the sylpheed port

  • Portfile

    old new  
    1 # $Id: Portfile,v 1.7 2004/01/10 10:45:08 jkh Exp $
     1# $Id: $
    22
    33PortSystem 1.0
    4 name            sylpheed
    5 version         0.9.2
    6 categories      mail
    7 maintainers     mij@opendarwin.org
    8 description     Fast, lightweight GTK+ mail client
    9 homepage        http://sylpheed.good-day.net/
    10 platforms       darwin
     4name                    sylpheed
     5version                 0.9.11
     6categories              mail
     7maintainers             mij@opendarwin.org
     8description             Fast, lightweight GTK+ mail client
     9homepage                http://sylpheed.good-day.net/
     10platforms               darwin
     11
     12long_description        Sylpheed is a fast, lightweight email client written in \
     13                        GTK+.  The appearance and interface are similar to \
     14                        popular Windows clients, such as Outlook Express, \
     15                        Becky!, and Datula.
     16
     17master_sites            http://sylpheed.good-day.net/sylpheed/
     18
     19checksums               md5 df1bd581fd26841b43d5a5b73a06d847
     20use_bzip2               yes
     21
     22depends_lib             lib:libgtk.1:gtk1
     23
     24pre-configure {         reinplace "s|-traditional-cpp|-no-cpp-precomp|g" \
     25                                ${worksrcpath}/configure
     26                        }
     27
     28configure.env           LDFLAGS="-L${prefix}/lib" \
     29                        CPPFLAGS="-I${prefix}/include" \
     30                        CFLAGS="-O3 -fstrict-aliasing -funroll-loops -pipe"
     31
     32configure.args          --disable-compface \
     33                        --disable-jpilot \
     34                        --disable-gdk-pixbuf \
     35                        --disable-ipv6
     36
     37variant ssl {           depends_lib-append lib:libssl.0.9:openssl
     38                        configure.args-append --enable-ssl
     39                        }
     40
     41variant gpg {           depends_lib-append      lib:libgpgme:gpgme
     42                        configure.args-append   --enable-gpgme \
     43                                                --with-gpgme-prefix=${prefix}
     44                        }
     45
     46variant ipv6 {          configure.args-delete   --disable-ipv6
     47                        configure.args-append   --enable-ipv6
     48                        }
     49
     50variant gdk {           depends_libs-append     lib:libgdk-pixbuf:gdk-pixbuf
     51                        configure.args-delete   --disable-gdk-pixbuf
     52                        configure.args-append   --enable-gdk-pixbuf
     53                        }
    1154
    12 long_description Sylpheed is a fast, lightweight email client written in \
    13                  GTK+.  The appearance and interface are similar to \
    14                  popular Windows clients, such as Outlook Express, \
    15                  Becky!, and Datula.
     55variant ldap            { configure.args-append --enable-ldap }
    1656
    17 master_sites    http://sylpheed.good-day.net/sylpheed/
    18 
    19 checksums       md5 0724244e0d2687e190e45c17c770c248
    20 use_bzip2       yes
    21 
    22 depends_lib     lib:libgtk.1:gtk1
    23 
    24 configure.env   LIBS="-L${prefix}/lib" CPPFLAGS="-I${prefix}/include" \
    25                 CFLAGS="-O3 -fstrict-aliasing -funroll-loops"
    26 
    27 configure.args  --disable-compface --disable-gdk-pixbuf
    28 
    29 variant ssl     { depends_lib-append lib:libssl.0.9:openssl
    30                   configure.args-append --enable-ssl }