Ticket #10992: lang-chicken-Portfile.diff
File lang-chicken-Portfile.diff, 1.3 KB (added by arto.bendiken@…, 18 years ago) |
---|
-
Portfile
old new 2 2 3 3 PortSystem 1.0 4 4 name chicken 5 version 2. 35 version 2.5 6 6 categories lang scheme 7 7 maintainers tristan@opendarwin.org waqar@macports.org 8 8 description Compiler for the Scheme programming language … … 14 14 homepage http://www.call-with-current-continuation.org/ 15 15 platforms darwin 16 16 master_sites http://www.call-with-current-continuation.org/ 17 checksums sha1 0ceb0cdea495f753f091cd06ac196b48eadc0b11 18 configure.args --infodir=${prefix}/share/info --mandir=${prefix}/share/man 17 checksums sha1 5f0e160d5b803d4b51c649a3028124008507d4b6 18 configure.args --infodir=${prefix}/share/info --mandir=${prefix}/share/man \ 19 --enable-gc-hooks --enable-apply-hook \ 20 --enable-extra-symbol-slot \ 21 --enable-symbol-gc 19 22 20 23 platform darwin 8 { 21 24 configure.env CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0 22 25 } 26 27 variant no-hooks { 28 configure.args-delete --enable-gc-hooks --enable-apply-hook 29 configure.args-append --disable-gc-hooks --disable-apply-hook 30 } 31 32 variant no-symslot { 33 configure.args-delete --enable-extra-symbol-slot 34 configure.args-append --disable-extra-symbol-slot 35 } 36 37 variant no-symgc { 38 configure.args-delete --enable-symbol-gc 39 configure.args-append --disable-symbol-gc 40 }