1 | # $Id: Portfile,v 1.3 2004/06/19 12:00:12 olegb Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name gpgme |
---|
5 | version 1.0.2 |
---|
6 | revision 0 |
---|
7 | categories devel security |
---|
8 | maintainers olegb@opendarwin.org |
---|
9 | description A library for easy acces to GnuPG. |
---|
10 | long_description \ |
---|
11 | GnuPG Made Easy (GPGME) is a library designed to make access \ |
---|
12 | to GnuPG easier for applications. It provides a High-Level \ |
---|
13 | Crypto API for encryption, decryption, signing, signature \ |
---|
14 | verification and key management. Currently it uses GnuPG \ |
---|
15 | as its backend but the API isn't restricted to this engine \ |
---|
16 | in fact we have already developed a backend for CMS (S/MIME). |
---|
17 | platforms darwin |
---|
18 | homepage http://www.gnupg.org/related_software/gpgme/ |
---|
19 | master_sites ftp://ftp.gnupg.org/gcrypt/gpgme/ |
---|
20 | checksums md5 3be11bbaa94af352ed6841ad3e296a2f \ |
---|
21 | sha1 5ca592b6a8ec64e92fa64402a15ea3ee37ad3fab |
---|
22 | depends_lib bin:gpg:gnupg lib:libpth:pth |
---|
23 | configure.env CPPFLAGS="-L${prefix}/lib -I${prefix}/include" \ |
---|
24 | CFLAGS="-no-cpp-precomp" |
---|
25 | configure.args --with-gpg=${prefix}/bin \ |
---|
26 | --mandir=${prefix}/share/man \ |
---|
27 | --infodir=${prefix}/share/info |
---|
28 | post-destroot { |
---|
29 | file delete -force ${destroot}${prefix}/share/info/dir |
---|
30 | } |
---|