Ticket #19255: Portfile-coq.diff
File Portfile-coq.diff, 1.2 KB (added by thomas.hutchinson@…, 16 years ago) |
---|
-
Portfile
old new 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 -coqide none \ 28 -with-doc no 27 29 depends_lib bin:ocamlc:ocaml port:camlp5 28 build.target world 29 destroot.target install 30 build.target world 31 destroot.target install 30 32 destroot.destdir COQINSTALLPREFIX=${destroot} \ 31 33 FULLMANDIR=${destroot}${prefix}/share/man/ 32 34 … … 35 37 ui_msg "Add this to your TEXINPUTS if you wish to" 36 38 ui_msg "use it." 37 39 } 40 41 variant doc description {Build documentation} { 42 depends_lib port:texlive 43 depends_lib port:hevea 44 depends_lib port:netpbm 45 configure.args-delete -with-doc no 46 configure.args-append -with-doc yes 47 } 48 49 variant coqide description {Install CoqIDE} { 50 depends_lib port:lablgtk2 51 configure.args-delete -coqide none 52 configure.args-append -coqide opt 53 }