1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name alpine |
---|
6 | version 2.00 |
---|
7 | revision 1 |
---|
8 | categories mail |
---|
9 | maintainers gmail.com:todmorrison |
---|
10 | description alpine - a Program for Internet News and Email |
---|
11 | homepage http://www.washington.edu/alpine/ |
---|
12 | platforms darwin |
---|
13 | |
---|
14 | long_description Alpine is a tool for reading, sending, and managing \ |
---|
15 | electronic messages that was designed with novice users in mind. |
---|
16 | |
---|
17 | distname ${name} |
---|
18 | master_sites ftp://ftp.cac.washington.edu/alpine/ \ |
---|
19 | ftp://ftp.cac.washington.edu/alpine/old/ |
---|
20 | checksums md5 84e44cbf71ed674800a5d57eed9c1c52 |
---|
21 | use_bzip2 yes |
---|
22 | |
---|
23 | worksrcdir ${distname}-${version} |
---|
24 | |
---|
25 | default_variants +without_tcl |
---|
26 | |
---|
27 | depends_lib \ |
---|
28 | port:openssl \ |
---|
29 | port:libiconv \ |
---|
30 | port:gettext \ |
---|
31 | port:openldap \ |
---|
32 | port:ncurses \ |
---|
33 | port:cyrus-sasl2 |
---|
34 | |
---|
35 | configure.env \ |
---|
36 | SSLDIR=${prefix} |
---|
37 | |
---|
38 | configure.args \ |
---|
39 | -with-lib-dir=${prefix}/lib \ |
---|
40 | -with-include-dir=${prefix}/include \ |
---|
41 | -with-krb5-include-dir=${prefix}/include \ |
---|
42 | -with-krb5-lib-dir=${prefix}/lib \ |
---|
43 | -with-ldap-include-dir=${prefix}/include \ |
---|
44 | -with-ldap-lib-dir=${prefix}/lib \ |
---|
45 | -with-ssl-include-dir=${prefix}/include \ |
---|
46 | -with-ssl-lib-dir=${prefix}/lib \ |
---|
47 | --with-c-client-target=oxp \ |
---|
48 | --with-local-password-cache-method \ |
---|
49 | --with-debug-level=0 |
---|
50 | |
---|
51 | build.args \ |
---|
52 | C_CLIENT_SPECIALS="GSSLIB=/${prefix}/lib SSLDIR=${prefix}" |
---|
53 | |
---|
54 | variant without_krb5 description {Disable Kerberos5 support} { |
---|
55 | depends_lib-delete port:cyrus-sasl2 |
---|
56 | configure.args-append --without-krb5 |
---|
57 | } |
---|
58 | |
---|
59 | variant without_ldap description {Disable LDAP support} { |
---|
60 | depends_lib-delete port:openldap |
---|
61 | configure.args-append --without-ldap |
---|
62 | } |
---|
63 | |
---|
64 | variant without_ssl description {Disable SSL support} { |
---|
65 | depends_lib-delete port:openssl |
---|
66 | configure.args-append --without-ssl |
---|
67 | build.env-append SSLTYPE=none |
---|
68 | } |
---|
69 | |
---|
70 | variant without_tcl description {Disable TCL support (disables Alpine Web)} { |
---|
71 | configure.args-append --without-tcl |
---|
72 | } |
---|
73 | |
---|
74 | variant passfile description {Enable password files support} { |
---|
75 | configure.args-delete --with-local-password-cache-method |
---|
76 | configure.args-append --with-passfile=".pine.pwd" |
---|
77 | } |
---|