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: Portfile 85783 2011-10-16 05:52:12Z dports@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name libgsasl |
---|
7 | version 1.8.0 |
---|
8 | maintainers ryandesign |
---|
9 | categories security net |
---|
10 | license LGPL-2.1+ |
---|
11 | platforms darwin |
---|
12 | homepage http://josefsson.org/libgsasl/ |
---|
13 | master_sites gnu:gsasl |
---|
14 | |
---|
15 | description GNU SASL: an authentication library. |
---|
16 | |
---|
17 | long_description GNU SASL is an implementation of the Simple \ |
---|
18 | Authentication and Security Layer framework and \ |
---|
19 | a few common SASL mechanisms. SASL is used by \ |
---|
20 | network servers (e.g., IMAP, SMTP) to request \ |
---|
21 | authentication from clients, and in clients to \ |
---|
22 | authenticate against servers. |
---|
23 | |
---|
24 | checksums sha1 08fd5dfdd3d88154cf06cb0759a732790c47b4f7 \ |
---|
25 | rmd160 5d09a0e454a101277c4f10c51d71b5383c418eb3 |
---|
26 | #checksums sha1 2942886514f14801193e505fc5367330d5c6b7de \ |
---|
27 | # rmd160 db576a3d365c9d6a8e4b7f9291b52d69bfa9c289 |
---|
28 | |
---|
29 | depends_lib port:libiconv \ |
---|
30 | port:gettext \ |
---|
31 | port:gss \ |
---|
32 | port:libidn |
---|
33 | |
---|
34 | use_parallel_build yes |
---|
35 | |
---|
36 | livecheck.type regex |
---|
37 | livecheck.url ftp://ftp.gnu.org/pub/gnu/gsasl/ |
---|
38 | livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|
39 | |
---|
40 | variant gssapi_mit description {Use MIT GSS-API implementation} { |
---|
41 | depends_lib-delete port:gss |
---|
42 | configure.args-append --with-gssapi-impl=mit |
---|
43 | } |
---|