Ticket #737: Portfile

File Portfile, 818 bytes (added by bchesneau@…, 21 years ago)

Portfile

Line 
1PortSystem 1.0
2name            libmcrypt
3version         2.5.7
4categories              security
5maintainers     bchesneau@mac.com
6description             The encryption library used by mcrypt
7long_description libmcrypt is the library which implements allthe algorithms and modes found in mcrypt.
8platforms               darwin
9distname                ${name}-${version}
10worksrcdir              ${name}-${version}
11
12master_sites    ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt \
13                                http://gd.tuwien.ac.at/privacy/mcrypt/libmcrypt \
14                                http://www.mirrors.wiretapped.net/security/cryptography/libraries/mcrypt/libmcrypt
15                               
16checksums               libmcrypt-2.5.7.tar.gz md5 b1be163143f8e8ed0474beeb642b3bad
17                               
18configure.env   LDFLAGS=-L${prefix}/lib CPPFLAGS=-I${prefix}/include
19
20variant darwin {
21        depends_lib-append      lib:libdl.1:dlcompat
22}
23
24
25configure.args  --disable-posix-threads
26
27
28
29
30
31
32