1 | # $Id: Portfile,v 1.12 2004/01/23 03:24:54 matt Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name ccrypt |
---|
5 | version 1.7 |
---|
6 | revision 1 |
---|
7 | categories sysutils security |
---|
8 | platforms darwin |
---|
9 | maintainers matt@opendarwin.org |
---|
10 | description Encrypt and decrypt files and streams |
---|
11 | long_description \ |
---|
12 | Utility for encrypting and decrypting files and streams. It was \ |
---|
13 | designed to replace the standard unix crypt utility, which is \ |
---|
14 | notorious for using a very weak encryption algorithm. ccrypt \ |
---|
15 | is based on the Rijndael cipher, which is the U.S. government's \ |
---|
16 | chosen candidate for the Advanced Encryption Standard (AES, see \ |
---|
17 | http://www.nist.gov/aes/). This cipher is believed to provide \ |
---|
18 | very strong security. Unlike unix crypt, the algorithm provided \ |
---|
19 | by ccrypt is not symmetric, i.e., one must specify whether to \ |
---|
20 | encrypt or decrypt. The most common way to invoke ccrypt is via \ |
---|
21 | the commands ccencrypt and ccdecrypt. There is also a ccat \ |
---|
22 | command for decrypting a file directly to the terminal, thus \ |
---|
23 | reducing the likelihood of leaving temporary plaintext files \ |
---|
24 | around. In addition, there is a compatibility mode for decrypting \ |
---|
25 | legacy unix crypt files. |
---|
26 | |
---|
27 | homepage http://ccrypt.sourceforge.net |
---|
28 | master_sites sourceforge |
---|
29 | checksums md5 19526e31a7d234e29d54dbcc876605d5 |
---|
30 | |
---|
31 | pre-configure { |
---|
32 | reinplace "s|htmldir = \$(prefix)/doc/ccrypt|htmldir = \$(datadir)/doc/ccrypt|" \ |
---|
33 | ${worksrcpath}/doc/Makefile.in |
---|
34 | } |
---|
35 | |
---|
36 | configure.args --mandir=${prefix}/share/man \ |
---|
37 | --infodir=${prefix}/share/info |
---|
38 | |
---|