Ticket #21415: Portfile.diff
File Portfile.diff, 2.2 KB (added by kiyoshi.coquser@…, 15 years ago) |
---|
-
Portfile
old new 3 3 PortSystem 1.0 4 4 5 5 name coq 6 version 8.2 6 version 8.2pl1 7 7 platforms darwin 8 8 categories lang math 9 9 maintainers loria.fr:reilles … … 17 17 their formal specification. It is developed using Objective Caml and \ 18 18 Camlp4. For more information, see <${homepage}>. 19 19 20 checksums md5 077c027e0f69e8ea240206ceb0f0d003\21 sha1 cac79093f1639c309b400aced13c749f278abbea\22 rmd160 fb8506fa0c469a428a43649a13819bc18949570e20 checksums md5 36eed48bc63ada8abf27f96eb126906c \ 21 sha1 4aed3302adc2edbaa5d97984512c1c13014bd649 \ 22 rmd160 dd5758a94bb3de49967cec76baa33eb5169659ce 23 23 24 24 use_parallel_build yes 25 25 configure.pre_args -prefix ${prefix} 26 configure.args -emacslib ${prefix}/share/emacs/site-lisp/ 26 configure.args -emacslib ${prefix}/share/emacs/site-lisp/ \ 27 -mandir ${prefix}/share/man \ 28 -coqdocdir ${prefix}/share/coq/latex \ 29 -coqide none \ 30 -with-doc no 27 31 depends_lib bin:ocamlc:ocaml port:camlp5 28 32 build.target world 29 33 destroot.target install 30 destroot.destdir COQINSTALLPREFIX=${destroot} \31 FULLMANDIR=${destroot}${prefix}/share/man/ 34 destroot.destdir COQINSTALLPREFIX=${destroot} 35 patchfiles patch-doc-tools-latex_filter.diff 32 36 33 37 post-activate { ui_msg "The style file for LaTeX documentation," 34 38 ui_msg "coqdoc.sty, is in ${prefix}/share/coq/latex." 35 39 ui_msg "Add this to your TEXINPUTS if you wish to" 36 40 ui_msg "use it." 37 41 } 42 43 variant doc description {Build documentation} { 44 depends_build port:texlive 45 depends_build port:hevea 46 depends_build port:netpbm 47 configure.args-delete -with-doc no 48 configure.args-append -with-doc yes 49 } 50 51 variant coqide description {Install CoqIDE} { 52 depends_lib port:lablgtk2 53 configure.args-delete -coqide none 54 configure.args-append -coqide opt 55 }