Ticket #12678: lha-doc.diff

File lha-doc.diff, 1.9 KB (added by nox@…, 17 years ago)
  • Portfile

     
    33PortSystem 1.0
    44name            lha
    55version         1.14i-ac20050924p1
     6revision    1
    67epoch           20061016
    78categories      archivers sysutils
    89description     Utility for creating and opening lzh archives
    910maintainers     jc@crazic.ru
     11
    1012long_description ${description}
     13
    1114homepage        http://lha.sourceforge.jp/
    1215set sfjpid      22231
     16
    1317master_sites    http://keihanna.dl.sourceforge.jp/lha/${sfjpid}/ \
    1418                http://qgpop.dl.sourceforge.jp/lha/${sfjpid}/ \
    1519                http://osdn.dl.sourceforge.jp/lha/${sfjpid}/
     20
    1621checksums       md5 9f52430410928ba4390a73a41a36d56f \
    1722                sha1 2491c8b584c21759f1d3819f57fa0e1cbc235092 \
    1823                rmd160 7603dc93d8afdeed6cfbaa193f68ae4283bea39b
    1924
    20 post-build      {
    21         system "strip ${build.dir}/src/$name"
    22 }
     25configure.args  --mandir=${prefix}/share/man
    2326
    2427test.run        yes
    2528test.target     check
    2629
    27 destroot        {
    28         xinstall -m 755 -d ${destroot}/${prefix}/bin
    29         file copy ${build.dir}/src/$name ${destroot}/${prefix}/bin
    30 }
     30destroot.target install-strip
    3131
    32 post-destroot   {
    33         xinstall -m 755 -d \
    34           ${destroot}${prefix}/share/doc/${name}/olddoc
    35         xinstall -m 755 -d \
    36           ${destroot}${prefix}/share/doc/${name}/man
    37         xinstall -m 644 -W ${worksrcpath} 00readme.autoconf ChangeLog \
    38           Hacking_of_LHa header.doc.euc \
    39           ${destroot}${prefix}/share/doc/${name}
    40         foreach f {*.txt *.euc *.eng} {
    41                 eval xinstall -m 644 \
    42                 [glob ${worksrcpath}/olddoc/${f}] \
    43                 ${destroot}${prefix}/share/doc/${name}/olddoc
    44         }
    45         xinstall -m 644 ${worksrcpath}/man/lha.man \
    46           ${destroot}${prefix}/share/doc/${name}/man
     32post-destroot {
     33    set docdir ${prefix}/share/doc/${name}-${version}
     34
     35    xinstall -d ${destroot}${docdir}/olddoc
     36    xinstall -m 0644 -W ${worksrcpath} ChangeLog Hacking_of_LHa header.doc.euc \
     37        ${destroot}${docdir}
     38    eval xinstall -m 0644 [glob ${worksrcpath}/olddoc/*.{txt,euc,eng}] \
     39        ${destroot}${docdir}/olddoc
    4740}
     41