Ticket #35345: Portfile

File Portfile, 1.7 KB (added by admsimat@…, 12 years ago)
Line 
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
4PortSystem              1.0
5
6name                    libgsasl
7version                 1.8.0
8maintainers             ryandesign
9categories              security net
10license                 LGPL-2.1+
11platforms               darwin
12homepage                http://josefsson.org/libgsasl/
13master_sites            gnu:gsasl
14
15description             GNU SASL: an authentication library.
16
17long_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
24checksums           sha1    08fd5dfdd3d88154cf06cb0759a732790c47b4f7 \
25                    rmd160  5d09a0e454a101277c4f10c51d71b5383c418eb3
26#checksums               sha1    2942886514f14801193e505fc5367330d5c6b7de \
27#                        rmd160  db576a3d365c9d6a8e4b7f9291b52d69bfa9c289
28
29depends_lib             port:libiconv \
30                        port:gettext \
31                        port:gss \
32                        port:libidn
33
34use_parallel_build      yes
35
36livecheck.type          regex
37livecheck.url           ftp://ftp.gnu.org/pub/gnu/gsasl/
38livecheck.regex         "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
39
40variant gssapi_mit description {Use MIT GSS-API implementation} {
41    depends_lib-delete port:gss
42    configure.args-append --with-gssapi-impl=mit
43}