Show
Ignore:
Timestamp:
03/01/08 16:13:27 (17 years ago)
Author:
broder
Message:

Updating packages to be more compliant with the Fink packaging standards

...other than, you know, the part where I dump a bunch of things outside of /sw

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/fink/main/finkinfo/macathena-ssl-certificates.info

    r95 r121  
    2222<< 
    2323PostInstScript: << 
    24         #!/bin/bash 
    25         if [ "$(/usr/bin/sw_vers -productVersion | cut -d. -f1-2)" == "10.5" ] 
     24        VERSION=`/usr/bin/sw_vers -productVersion | cut -d. -f1-2` 
     25        if [ "$VERSION" == "10.5" ] 
    2626        then 
    2727                security find-certificate -e "MIT Certification Authority" || security add-trusted-cert -d -k /Library/Keychains/System.keychain %p/share/%n/mitCA.pem 
    2828        else 
    29                 security add-cert -k /System/Library/Keychains/X509Anchors %p/share/%n/mitCA.der || : 
     29                security find-certificate -e "MIT Certification Authority" /Library/Keychains/System.keychain /System/Library/Keychains/X509Anchors || security add-cert -k /System/Library/Keychains/X509Anchors %p/share/%n/mitCA.der 
    3030        fi 
    3131<<