| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 09 Jan 2026 06:03:24 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100419170153
location: https://web.archive.org/web/20100419170153/https://gambit-c.darwinports.com/
server-timing: captures_list;dur=0.818230, exclusion.robots;dur=0.085903, exclusion.robots.policy;dur=0.070197, esindex;dur=0.011883, cdx.remote;dur=48.027412, LoadShardBlock;dur=369.126143, PetaboxLoader3.datanode;dur=127.038958, PetaboxLoader3.resolve;dur=96.751209
x-app-server: wwwb-app28-dc8
x-ts: 302
x-tr: 467
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app28; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 09 Jan 2026 06:03:25 GMT
content-type: text/html
x-archive-orig-date: Mon, 19 Apr 2010 16:59:50 GMT
x-archive-orig-server: Apache
x-archive-orig-vary: Accept-Encoding
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Mon, 19 Apr 2010 17:01:53 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_15_20100419143613_crawl103-c/51_15_20100419170100_crawl103.arc.gz
server-timing: captures_list;dur=0.904742, exclusion.robots;dur=0.042243, exclusion.robots.policy;dur=0.025247, esindex;dur=0.013201, cdx.remote;dur=28.584521, LoadShardBlock;dur=256.509878, PetaboxLoader3.datanode;dur=265.770861, load_resource;dur=118.241790, PetaboxLoader3.resolve;dur=65.848206
x-app-server: wwwb-app28-dc8
x-ts: 200
x-tr: 540
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Gambit-c version 4.5.3 - How to Download and Install on Mac OS X
|
|||||||||
Monday the 19th of April, 2010 |
|||||||||
gambit-c most recent diffversion 4.5.3
Scroll down toward the bottom of the page to get installation instructions for gambit-c. The raw portfile for gambit-c 4.5.3 is located here: https://gambit-c.darwinports.com/dports/lang/gambit-c/Portfile Find related portfiles with the unique DarwinPorts.com search feature. Check for any related Fink projects here: pdb.finkproject.org/pdb/package.php/gambit-c # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 The gambit-c Portfile 60623 2009-11-18 00:17:53Z snc PortSystem 1.0 Name: gambit-c Version: 4.5.3 Revision: 1 set branch [join [lrange [split ${version} .] 0 1] .] Category: lang scheme Platform: darwin Maintainers: snc openmaintainer Description: Gambit-C is a fast Scheme implementation. Long Description: Gambit-C includes a Scheme interpreter and a Scheme compiler which can be used to build standalone executables. Because the compiler generates portable C code it is fairly easy to port to any platform with a decent C compiler. The thread system is very efficient and can support millions of concurrent processes. The Gambit-C system conforms to the R4RS, R5RS and IEEE Scheme standards. The full numeric tower is implemented, including: infinite precision integers (bignums), rationals, inexact reals (floating point numbers), and complex numbers. Homepage: https://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page Master Sites: https://dynamo.iro.umontreal.ca/~gambit/download/gambit/v${branch}/source/ distname gambc-v[strsed ${version} {g/\./_/}] extract.suffix .tgz Checksums: md5 716ed47b7a73d90c9426a240e9536f67 sha1 a75df2612009ac86b71502dc0329a68d382b55f2 rmd160 dd6543a7c1f4e6b6e1e4b82e4a15aa050cafb606 configure.args --infodir=${prefix}/share/info --libdir=${prefix}/lib/gambit-c --enable-single-host --docdir=${prefix}/share/doc # gsc conficts with a binary installed by Ghostscript. Recommended # option (based on mailing list posts from Arch Linux and FreeBSD # projects) is to rename gsc to gambit-gsc set gsc "gambit-gsc" set gsi "gambit-gsi" post-extract { # Get rid of the incompatible version-specific installation structure reinplace "s|PACKAGE_SUBDIR=\"/${version}\"|PACKAGE_SUBDIR=\"\"|g" ${worksrcpath}/configure.ac reinplace "s|&& \$(LN_S) \.\$(PACKAGE_SUBDIR) current||g" ${worksrcpath}/makefile.in reinplace "s|rm -f \$(prefix)/current \$(prefix)/current.lnk||g" ${worksrcpath}/makefile.in reinplace "s|.B gsc|.B ${gsc}|g" ${worksrcpath}/doc/gsi.1 # Fix target paths since the configure options are not properly used in the makefiles foreach makefile [exec find ${worksrcpath} -name makefile.in] { reinplace "s|\$(prefix)\$(PACKAGE_SUBDIR)|\$(DESTDIR)\$(prefix)|g" $makefile reinplace "s|\$(prefix)/info|\$(prefix)/share/info|g" $makefile reinplace "s|\$(prefix)/doc|\$(prefix)/share/doc/gambit-c|g" $makefile reinplace "s|\$(prefix)/lib|\$(prefix)/lib/gambit-c|g" $makefile reinplace "s|\$(prefix)/syntax-case\.scm|\$(prefix)/lib/gambit-c/syntax-case\.scm|g" $makefile } } post-destroot { file rename "${destroot}${prefix}/bin/gsc" "${destroot}${prefix}/bin/${gsc}" file delete "${destroot}${prefix}/bin/gsc-script" ln -s "${gsc}" "${destroot}${prefix}/bin/gsc-script" # Create a matching link for gambit-gsi for symmetry, even though the # original gsi binary doesn't conflict and isn't being removed. ln -s "gsi" "${destroot}${prefix}/bin/${gsi}" } Variant: optimized description "Use expensive GCC optimizations to improve speed and compactness" { configure.args-append --enable-gcc-opts } Variant: profile description "Enable profiling" { configure.args-append --enable-profile } livecheck.type regex livecheck.regex (\\d+\\.\\d+\\.\\d+) livecheck.url ${homepage} If you haven't already installed Darwin Ports, you can find easy instructions for doing so at the main Darwin Ports page. Once Darwin Ports has been installed, in a terminal window and while online, type the following and hit return:
% cd /opt/local/bin/portslocation/dports/gambit-cYou will then be prompted for your root password, which you should enter. You may have to wait for a few minutes while the software is retrieved from the network and installed for you. Y ou should see something that looks similar to: - Make sure that you do not close the terminal window while Darwin Ports is working. Once the software has been installed, you can find further information about using gambit-c with these commands: % man gambit-c Where to find more information:
This website is back-ended by DB5, the best database in the business,
|
![]() |
![]()
Order Snow Leopard MacOSX 10.6 for only $29!
Other Helpful SitesMacOSForgeDebian Packages MacPorts - SVN Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
accounting
amusements aqua archivers audio benchmarks biology blinkenlights cad chat chinese comms compression cross crypto databases devel editors education electronics emacs emulators erlang finance fonts framework fuse games genealogy gis gnome gnustep graphics gtk haskell iphone irc japanese java kde kde4 lang macports math mercurial ml mono multimedia net network news ocaml office palm parallel perl php pim project python reporting rox ruby russian scheme science security shells spelling squeak sysutils tcl tex textproc tk unicode vnc win32 wsn www x11 x11-font x11-wm xfce zope
Current SVN DownloadsDarwin Ports Current :nightly SVN snapshot SSH Key Gen See also: GNU-Darwin Ports for GNU-only software |
|||||||
| |




