Ticket #13346: patch-Portfile.diff
File patch-Portfile.diff, 1.8 KB (added by cssdev, 17 years ago) |
---|
-
Portfile
1 1 # $Id$ 2 2 3 3 PortSystem 1.0 4 4 5 name cryptlib 5 version 3.1 6 revision 2 6 version 3.3.1 7 7 categories devel security crypto 8 8 maintainers nomaintainer 9 9 description cryptlib is a powerful security toolkit (library) … … 20 20 21 21 homepage http://www.cs.auckland.ac.nz/~pgut001/cryptlib/ 22 22 master_sites ftp://ftp.franken.de/pub/crypt/cryptlib/ 23 distname cl3 123 distname cl331 24 24 use_zip yes 25 checksums md5 d732c7d527debbd01848c303e62efa13 25 checksums md5 3e93e5aa0b33fb1d5b05b099f01e0afe \ 26 sha1 892a891a52b946e86664909157a290e30e1b1fe3 26 27 27 28 worksrcdir cryptlib 28 29 pre-extract { … … 30 31 extract.post_args "-d ${worksrcpath}" 31 32 } 32 33 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-makefile42 43 34 use_configure no 44 35 45 36 build.target default shared … … 63 54 64 55 platform darwin { 65 56 global cryptlibDylib cryptlibDylibLink 66 set cryptlibDylib libcl.3. 1.dylib57 set cryptlibDylib libcl.3.3.dylib 67 58 set cryptlibDylibLink libcl.dylib 68 59 } 69 60 70 61 platform sunos { 71 62 global cryptlibDylib cryptlibDylibLink 72 63 patchfiles-append patch-makefile.sunos 73 set cryptlibDylib libcl.so.3. 1.064 set cryptlibDylib libcl.so.3.3 74 65 set cryptlibDylibLink libcl.so 75 66 } 76 67