Ticket #4295: Portfile

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

Portfile

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