Ticket #1682: Portfile

File Portfile, 1.4 KB (added by waqar@…, 20 years ago)

Portfile

Line 
1# $Id: Portfile,v 1.12 2004/01/23 03:24:54 matt Exp $
2
3PortSystem 1.0
4name            ccrypt
5version         1.7
6revision        1
7categories      sysutils security
8platforms       darwin
9maintainers     matt@opendarwin.org
10description     Encrypt and decrypt files and streams
11long_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
27homepage        http://ccrypt.sourceforge.net
28master_sites    sourceforge
29checksums       md5 19526e31a7d234e29d54dbcc876605d5
30
31pre-configure   {       
32        reinplace "s|htmldir = \$(prefix)/doc/ccrypt|htmldir = \$(datadir)/doc/ccrypt|" \
33                ${worksrcpath}/doc/Makefile.in
34}
35
36configure.args  --mandir=${prefix}/share/man \
37                --infodir=${prefix}/share/info
38