Ticket #13125: Portfile

File Portfile, 1.3 KB (added by cssdev, 16 years ago)

yafc portfile with kerberos5 dependency

Line 
1# $Id: Portfile 30239 2007-10-23 01:55:09Z jmpp@macports.org $
2
3PortSystem 1.0
4
5name            yafc
6version         1.1
7revision        1
8categories      net
9platforms       darwin
10maintainers     nomaintainer
11description     yafc is yet another ftp client
12long_description        yafc is yet another ftp client featuring cached \
13                        directory listings, extensive tab completion, aliases, \
14                        colored ls (ie, ls --color, uses \$LS_COLORS like GNU \
15                        ls), automatic reconnect on timed out connections, \
16                        recursive get/put/fxp/ls/rm, nohup mode transfers, \
17                        multiple connections open simultaneously, tagging \
18                        (queueing), very configurable, autologin and \
19                        bookmarks, automagically enters nohup-mode when SIGHUP \
20                        received (in get and put), redirection to local \
21                        command or file, proxy support, Kerberos support \
22                        (version 4 and 5, heimdal, kth-krb or MIT), SSH2 \
23                        support (sftp).
24
25homepage        http://yafc.sourceforge.net/
26master_sites    sourceforge
27checksums       md5 877c21d9b70d89474d1a6478a21c1e51
28use_bzip2       yes
29patchfiles      patch-src-syshdr.h
30
31depends_lib port:kerberos5 \
32            port:readline
33
34configure.args  --mandir=${prefix}/share/man \
35                --infodir=${prefix}/share/info \
36                --with-readline-lib=${prefix}/lib \
37                --with-readline-include=${prefix}/include
38
39platform darwin 8 {
40        patchfiles-append patch-lib__gssapi.c
41}