Ticket #2640: Portfile

File Portfile, 1.1 KB (added by waqar@…, 19 years ago)

Portfile

Line 
1# $Id: Portfile,v 1.3 2004/06/19 12:00:12 olegb Exp $
2
3PortSystem 1.0
4name            gpgme
5version         1.0.2
6revision        0
7categories      devel security
8maintainers     olegb@opendarwin.org
9description     A library for easy acces to GnuPG.
10long_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).
17platforms       darwin
18homepage        http://www.gnupg.org/related_software/gpgme/
19master_sites    ftp://ftp.gnupg.org/gcrypt/gpgme/
20checksums       md5 3be11bbaa94af352ed6841ad3e296a2f            \
21                sha1 5ca592b6a8ec64e92fa64402a15ea3ee37ad3fab
22depends_lib     bin:gpg:gnupg lib:libpth:pth
23configure.env   CPPFLAGS="-L${prefix}/lib -I${prefix}/include" \
24                CFLAGS="-no-cpp-precomp"
25configure.args  --with-gpg=${prefix}/bin        \
26                --mandir=${prefix}/share/man    \
27                --infodir=${prefix}/share/info
28post-destroot   {
29        file delete -force ${destroot}${prefix}/share/info/dir
30}