1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name nettle |
---|
7 | version 1.15 |
---|
8 | categories devel crypto |
---|
9 | platforms darwin |
---|
10 | maintainers gmx.de:exodusd uni-paderborn.de:nicke openmaintainer |
---|
11 | description low-level cryptographic library |
---|
12 | long_description \ |
---|
13 | Nettle is a cryptographic library that is designed to fit easily in more \ |
---|
14 | or less any context: In crypto toolkits for object-oriented languages \ |
---|
15 | (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in \ |
---|
16 | kernel space. It tries to solve a problem of providing a common set of \ |
---|
17 | cryptographic algorithms for higher-level applications by implementing a \ |
---|
18 | context-independent set of cryptographic algorithms. In that light, \ |
---|
19 | Nettle doesn't do any memory allocation or I/O, it simply provides the \ |
---|
20 | cryptographic algorithms for the application to use in any environment \ |
---|
21 | and in any way it needs. |
---|
22 | homepage http://www.lysator.liu.se/~nisse/nettle/ |
---|
23 | master_sites http://www.lysator.liu.se/~nisse/archive/ |
---|
24 | checksums md5 6b0fd004359660b65ff3eca77b3d5fa6 \ |
---|
25 | sha1 0f2d95a859fc64ff3e490f9f2bec0d206ae95a7e \ |
---|
26 | rmd160 8944901d4a856bb25b8e44e420ba4475c0fd0a93 |
---|
27 | |
---|
28 | depends_lib port:gmp |
---|
29 | |
---|
30 | platform darwin x86_64 { |
---|
31 | configure.args --disable-assembler |
---|
32 | } |
---|