Ticket #54478: Portfile.jsch.diff

File Portfile.jsch.diff, 3.0 KB (added by chicagotripp (Altoine Barker), 7 years ago)

Portfile unified diff of update to version jsch-0.1.54

  • Portfile

    old new  
    1 PortSystem 1.0
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
    22
    3 name                    jsch
    4 version                 0.1.53
    5 categories              java security
    6 platforms               darwin
    7 maintainers             nomaintainer
    8 license                 BSD
    9 supported_archs noarch
    10 
    11 description             JSch is a pure Java implementation of SSH2.
    12 long_description        ${description}
    13 
    14 homepage                http://www.jcraft.com/jsch/
    15 master_sites    sourceforge:project/jsch/jsch/${version}/
    16 use_zip                 yes
    17 
    18 checksums               md5     5c37c1fe15ee6690fcc18b305f2d2659 \
    19                                 sha1    e54138c12b2e7d4587d589b27f50033e86e3e8e0 \
    20                                 rmd160  593c7e0468c6be7d6cd8a1d05e33581432a9a399
    21 
    22 depends_lib             bin:java:kaffe
    23 depends_build   bin:ant:apache-ant
    24 
    25 use_configure   no
    26 
    27 build.cmd               ant
    28 build.target    dist
    29 
    30 destroot {
    31         xinstall -m 755 -d ${destroot}${prefix}/share/java/
    32         xinstall -m 644 {*}[glob ${worksrcpath}/dist/lib/jsch*.jar] \
    33                 ${destroot}${prefix}/share/java/jsch.jar
    34         set docdir ${prefix}/share/doc/${subport}
    35         xinstall -m 755 -d ${destroot}${docdir}
    36         xinstall -m 644 -W ${worksrcpath} ChangeLog LICENSE.txt README ${destroot}${docdir}
    37 }
     3PortSystem              1.0
     4
     5name                    jsch
     6version                 0.1.54
     7categories              java security
     8platforms               darwin
     9
     10maintainers             {gmail.com:ndiscreet @chicagotripp} \
     11                        openmaintainer
     12
     13license                 BSD
     14supported_archs         noarch
     15
     16description             JSch is a pure Java implementation of SSH2.
     17
     18long_description        ${description}, but it \
     19                        depends on JavaTM Cryptography Extension (JCE).
     20
     21homepage                http://www.jcraft.com/jsch/
     22
     23master_sites            sourceforge:project/jsch/jsch/${version}/
     24
     25use_zip                 yes
     26
     27checksums               md5     0b9312909fe542f6e662d40ec676f6b5 \
     28                        sha1    c4252657c7caad9c8482836ddb1fa2abcf080357 \
     29                        rmd160  cc0d72d817829c434dfcba845d2ff0d43243417c \
     30                        sha256  ab71e1e5ff665213b7d892ebd0829b3da835538a73409fe11bb006ec5b6b3909
     31
     32depends_lib             bin:java:kaffe
     33
     34depends_build           bin:ant:apache-ant
     35
     36patchfiles              patch-build.xml.diff
     37
     38use_configure           no
     39
     40build.cmd               ant
     41
     42build.target            dist
     43
     44destroot                {
     45                        xinstall -m 755 -d ${destroot}${prefix}/share/java/
     46                        xinstall -m 644 {*}[glob ${worksrcpath}/dist/lib/jsch*.jar] \
     47                        ${destroot}${prefix}/share/java/jsch.jar
     48                        set docdir ${prefix}/share/doc/${subport}
     49                        xinstall -m 755 -d ${destroot}${docdir}
     50                        xinstall -m 644 -W ${worksrcpath} ChangeLog LICENSE.txt README \
     51                        ${destroot}${docdir}
     52                        }