Ticket #4294: Portfile

File Portfile, 1.4 KB (added by pkern@…, 18 years ago)

The new portfile using the patch

Line 
1# $Id: Portfile,v 1.4 2005/11/05 10:28:55 yeled Exp $
2
3PortSystem 1.0
4name            libksba
5version         0.9.12
6categories      devel
7maintainers     yeled@opendarwin.org
8description     X.509 and CMS library
9homepage        http://www.gnupg.org/(en)/related_software/libksba/index.html
10platforms       darwin
11use_bzip2       yes
12
13long_description \
14        Libksba is a library to make the tasks of working with \
15        X.509 certificates, CMS data and related objects more easy. It \
16        a highlevel interface to the implemented protocols and presents \
17        the data in a consistent way. There is no more need to worry \
18        about all the nasty details of the protocols. The API gives the \
19        C programmer an easy way of interacting with the data. It copes \
20        with the version details X.509 protocols tend to have as well as \
21        with the many different versions and dialects. Applications \
22        must usually cope with all of this and it has to be coded over \
23        and over again. Libksba hides this by providing just one \
24        API which does the Right Thing.
25
26master_sites    ftp://ftp.gnupg.org/gcrypt/alpha/libksba/ \
27                                ftp://ftp.planetmirror.com/pub/gcrypt/alpha/libksba
28
29#checksums      md5 84f77455d9e2c288186a76e8f4b005d9
30checksums       md5 4d40a09134c5a0d2dcc6416f9abdcc98
31
32depends_lib     lib:libgpg-error.0:libgpg-error lib:libgcrypt.11:libgcrypt
33
34configure.args  --infodir=${prefix}/share/info
35
36patchfiles      patch-alloca
37
38# Yuck
39post-destroot {
40        file delete ${destpath}/${prefix}/share/info/dir
41}