Ticket #13346: patch-Portfile.diff

File patch-Portfile.diff, 1.8 KB (added by cssdev, 16 years ago)

Cleaned up the file somewhat, changed the install lib to match upstream.

  • Portfile

     
    11# $Id$
    22
    33PortSystem              1.0
     4
    45name                    cryptlib
    5 version                 3.1
    6 revision                2
     6version                 3.3.1
    77categories              devel security crypto
    88maintainers             nomaintainer
    99description             cryptlib is a powerful security toolkit (library)
     
    2020
    2121homepage                http://www.cs.auckland.ac.nz/~pgut001/cryptlib/
    2222master_sites    ftp://ftp.franken.de/pub/crypt/cryptlib/
    23 distname                cl31
     23distname                cl331
    2424use_zip                 yes
    25 checksums               md5 d732c7d527debbd01848c303e62efa13
     25checksums               md5 3e93e5aa0b33fb1d5b05b099f01e0afe \
     26                                sha1 892a891a52b946e86664909157a290e30e1b1fe3
    2627
    2728worksrcdir              cryptlib
    2829pre-extract {
     
    3031        extract.post_args                       "-d ${worksrcpath}"
    3132}
    3233
    33 patchfiles              patch-cert__certechk.c patch-cert__certedef.c \
    34                 patch-device__dev_sys.c \
    35                 patch-keyset__dbxdbms.c patch-keyset__dbxdca.c \
    36                 patch-keyset__dbxpgp.c patch-keyset__dbxp15w.c \
    37                 patch-cryptcfg.c patch-cryptkrn.c patch-cryptusr.c \
    38                 patch-misc__net_http.c patch-misc__net_tcp.c \
    39                 patch-misc__stream.c \
    40                 patch-session__cmp_rd.c patch-session__scep.c \
    41                 patch-session__ssh.c patch-makefile
    42 
    4334use_configure   no
    4435
    4536build.target    default shared
     
    6354
    6455platform darwin {
    6556        global cryptlibDylib cryptlibDylibLink
    66         set cryptlibDylib               libcl.3.1.dylib
     57        set cryptlibDylib               libcl.3.3.dylib
    6758        set cryptlibDylibLink   libcl.dylib
    6859}
    6960
    7061platform sunos {
    7162        global cryptlibDylib cryptlibDylibLink
    7263        patchfiles-append       patch-makefile.sunos
    73         set cryptlibDylib               libcl.so.3.1.0
     64        set cryptlibDylib               libcl.so.3.3
    7465        set cryptlibDylibLink   libcl.so
    7566}
    7667