Ticket #15302: lha.diff
File lha.diff, 2.4 KB (added by takanori@…, 17 years ago) |
---|
-
Portfile
4 4 5 5 name lha 6 6 version 1.14i-ac20050924p1 7 revision 27 revision 3 8 8 epoch 20070826 9 9 categories archivers sysutils 10 10 maintainers crazic.ru:jc 11 11 description Utility for creating and opening lzh archives 12 12 long_description \ 13 13 ${description} 14 14 platforms darwin 15 15 homepage http://lha.sourceforge.jp/ 16 #master_sites sourceforge_jp:${name}/22231 17 set sfjpid 22231 18 master_sites http://keihanna.dl.sourceforge.jp/lha/${sfjpid}/ \ 19 http://qgpop.dl.sourceforge.jp/lha/${sfjpid}/ \ 20 http://osdn.dl.sourceforge.jp/lha/${sfjpid}/ 16 master_sites sourceforge_jp:${name}/22231 17 master_sites-append macports::lha_man 18 distfiles-append lha.1.r889:lha_man 21 19 patchfiles patch-src_header.c.diff 22 checksums md5 9f52430410928ba4390a73a41a36d56f \ 23 sha1 2491c8b584c21759f1d3819f57fa0e1cbc235092 \ 24 rmd160 7603dc93d8afdeed6cfbaa193f68ae4283bea39b 20 checksums ${distname}${extract.suffix} md5 9f52430410928ba4390a73a41a36d56f \ 21 sha1 2491c8b584c21759f1d3819f57fa0e1cbc235092 \ 22 rmd160 7603dc93d8afdeed6cfbaa193f68ae4283bea39b \ 23 lha.1.r889 md5 ee2d1efb86c145ba16c3dcbb1e6a3150 \ 24 sha1 9aba56d37abf9ff05df41b84164b02eb83cd5aae \ 25 rmd160 6d6e98dab3533e6c66981c41961adeec4305ad48 25 26 27 extract.only ${distname}${extract.suffix} 28 26 29 configure.args --mandir=${prefix}/share/man 27 30 31 use_parallel_build yes 32 28 33 test.run yes 29 34 test.target check 30 35 … … 32 37 33 38 post-destroot { 34 39 set docdir ${prefix}/share/doc/${name}-${version} 35 36 xinstall -d ${destroot}${docdir}/olddoc 40 xinstall -m 755 -d ${destroot}${docdir}/olddoc 37 41 xinstall -m 0644 -W ${worksrcpath} ChangeLog Hacking_of_LHa header.doc.euc \ 38 42 ${destroot}${docdir} 39 43 eval xinstall -m 0644 [glob ${worksrcpath}/olddoc/*.{txt,euc,eng}] \ 40 44 ${destroot}${docdir}/olddoc 45 46 xinstall -m 755 -d ${destroot}${prefix}/share/man/man1 47 copy ${distpath}/lha.1.r889 ${destroot}${prefix}/share/man/man1/lha.1 48 delete ${destroot}${prefix}/share/man/mann 41 49 }