Ticket #47686: Portfile.diff
File Portfile.diff, 1.8 KB (added by jpo@…, 10 years ago) |
---|
-
Portfile
old new 4 4 PortSystem 1.0 5 5 6 6 name iverilog 7 version 0.9. 67 version 0.9.7 8 8 set branch [join [lrange [split ${version} .] 0 1] .] 9 9 categories science 10 10 license GPL-2+ … … 26 26 master_sites ftp://ftp.icarus.com/pub/eda/verilog/v${branch}/ 27 27 distname verilog-${version} 28 28 29 checksums rmd160 19c422fbb2b0834a7408a5d549015f604dd3cabe\30 sha256 25304d5d58d6411fcd1ab94992a505215eea5a6bbd9779c2be2d9d19f38cd54a29 checksums rmd160 3bac03ca703465a43c5a0a8175a3d27ee00f49a7 \ 30 sha256 7a5e72e17bfb4c3a59264d8f3cc4e70a7c49c1307173348fdd44e079388e7454 31 31 32 32 depends_lib port:bzip2 \ 33 33 port:readline \ … … 41 41 post-destroot { 42 42 set docdir ${destroot}${prefix}/share/doc/${name} 43 43 xinstall -d ${docdir} 44 xinstall -W ${worksrcpath} \ 45 BUGS.txt developer-quick-start.txt lpm.txt t-dll.txt \ 46 QUICK_START.txt extensions.txt macosx.txt va_math.txt \ 47 README.txt glossary.txt mingw.txt vpi.txt \ 48 attributes.txt ieee1364-notes.txt netlist.txt \ 49 xilinx-hint.txt ivl_target.txt swift.txt \ 44 file copy ${worksrcpath}/examples ${docdir} 45 xinstall -m 644 {*}[glob ${worksrcpath}/*.txt] ${docdir} 46 xinstall -d ${docdir}/vvp 47 xinstall -m 644 {*}[glob ${worksrcpath}/vvp/*.txt] ${docdir}/vvp 48 xinstall -m 644 -W ${worksrcpath} cadpli/cadpli.txt ivlpp/ivlpp.txt \ 50 49 ${docdir} 51 52 set exampledir ${destroot}${prefix}/share/example53 xinstall -d ${exampledir}54 file copy ${worksrcpath}/examples ${exampledir}55 file rename ${exampledir}/examples ${exampledir}/${name}56 50 } 57 51 58 52 platform darwin 8 {