| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 22 Dec 2025 04:56:24 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20071120032855
location: https://web.archive.org/web/20071120032855/https://caml-findlib.darwinports.com/
server-timing: captures_list;dur=0.822813, exclusion.robots;dur=0.060892, exclusion.robots.policy;dur=0.046004, esindex;dur=0.014719, cdx.remote;dur=5.995489, LoadShardBlock;dur=91.123156, PetaboxLoader3.datanode;dur=63.370760, PetaboxLoader3.resolve;dur=13.849830
x-app-server: wwwb-app224-dc8
x-ts: 302
x-tr: 134
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; 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: Mon, 22 Dec 2025 04:56:24 GMT
content-type: text/html; charset=ISO-8859-1
x-archive-orig-date: Tue, 20 Nov 2007 03:29:21 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: Tue, 20 Nov 2007 03:28:55 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: 52_0_20071120025004_crawl100-c/52_0_20071120032618_crawl109.arc.gz
server-timing: captures_list;dur=0.456692, exclusion.robots;dur=0.017312, exclusion.robots.policy;dur=0.008260, esindex;dur=0.009479, cdx.remote;dur=12.896333, LoadShardBlock;dur=208.229868, PetaboxLoader3.datanode;dur=143.907100, PetaboxLoader3.resolve;dur=92.100782, load_resource;dur=73.200720
x-app-server: wwwb-app224-dc8
x-ts: 200
x-tr: 382
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
caml-findlib version 1.1.2pl1 for Mac OS X 10.5 Leopard
|
|||||||||
Monday the 19th of November, 2007 |
|||||||||
caml-findlib most recent diff
Scroll down toward the bottom of the page to get installation instructions for caml-findlib. The raw portfile for caml-findlib 1.1.2pl1 is located here: https://caml-findlib.darwinports.com/dports/devel/caml-findlib/Portfile Find related portfiles with the unique DarwinPorts.com search feature. Check for any related Fink projects here: pdb.finkproject.org/pdb/package.php/caml-findlib # $Id: Portfile 28447 2007-08-31 12:38:13Z mww PortSystem 1.0 Name: caml-findlib Version: 1.1.2pl1 revision 0 distfiles findlib-${version}.tar.gz worksrcdir findlib-${version} Category: devel ml Maintainers: eridius Description: Objective Caml library management system Long Description: The findlib library provides a scheme to manage reusable software components (packages), and includes tools that support this scheme. Packages are collections of OCaml modules for which metainformation can be stored. The packages are kept in the filesystem hierarchy, but with strict directory structure. The library contains functions to look the directory up that stores a package, to query metainformation about a package, and to retrieve dependency information about multiple packages. There is also a tool that allows the user to enter queries on the command-line. In order to simplify compilation and linkage, there are new frontends of the various OCaml compilers that can directly deal with packages. Homepage: https://www.ocaml-programming.de/programming/findlib.html Platform: darwin master_sites https://www.ocaml-programming.de/packages/ extract.suffix .tar.gz build.target all opt checksums sha1 ccd8b9d6249b5a4097040d32b90048b11054f461 md5 df4c9176e9d5b8a6d37668d108fae923 livecheck.check regex livecheck.regex "findlib-(.*?).tar.gz" patchfiles patch-Makefile depends_lib port:ocaml configure.args -bindir ${prefix}/bin -mandir ${prefix}/share/man -sitelib ${prefix}/lib/ocaml/site-lib configure.pre_args "" destroot.destdir prefix=${destroot} post-destroot { # `ocamlfind printconf destdir` returns nothing if the dir isn't in place # but we know it's the same as our site-lib dir set ocamlfind_destdir [file normalize ${prefix}/lib/ocaml/site-lib/stublibs] file mkdir ${destroot}${ocamlfind_destdir} # make a turd file so the directory doesn't get pruned when installing # I suppose I don't actually know if it prunes before or after this phase # but better to be safe than sorry close [open ${destroot}${ocamlfind_destdir}/.turd_${name} w] } post-activate { # Add our stublibs dir path to ld.conf set ocamlfind_destdir [file normalize ${prefix}/lib/ocaml/site-lib/stublibs] set ldconfpath [exec ${destroot}${prefix}/bin/ocamlfind printconf ldconf] # ld.conf should exist since ocaml is installed, but lets just be safe anyway if {[file exists $ldconfpath]} then { # make sure ld.conf doesn't already have this line, so if the user installs, # uninstalls, then installs again, we won't duplicate it set has_line 0 set ldconf [open $ldconfpath r+] while {[gets $ldconf line] != -1 && !$has_line} { if {[string equal $line $ocamlfind_destdir]} then { set has_line 1 } } if {!$has_line} { ui_msg "## Adding line `${ocamlfind_destdir}' to file ${ldconfpath}" ui_msg "## Be sure to remove this line if you uninstall ${name}" puts $ldconf $ocamlfind_destdir } close $ldconf } else { ui_warn "File ${ldconfpath} doesn't seem to be installed." ui_warn "Is ocaml installed properly?" } } # pre-deactivate doesn't actually exist # which annoys me, because it means I can't remove the line I added to ld.conf #pre-deactivate { # # remove our stublibs dir path from ld.conf # set ocamlfind_destdir [file normalize ${prefix}/lib/ocaml/site-lib/stublibs] # set ldconfpath ${destroot}[exec ${destroot}${prefix}/bin/ocamlfind printconf ldconf] # set ldconfoutpath [file dirname $ldconfpath]/.[file tail $ldconfpath]~ # if {[file exists $ldconfpath]} then { # set ldconf [open $ldconfpath r] # set ldconfout [open $ldconfoutpath w] # while {[gets $ldconf line] != -1} { # if {![string equal $line $ocamlfind_destdir]} { # puts $ldconfout $line # } # } # close $ldconfout # close $ldconf # file rename -force $ldconfoutpath $ldconfpath # } #} Variant: toolbox { configure.args-append -with-toolbox depends_lib bin:lablgtk:lablgtk } 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/caml-findlibYou 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 caml-findlib with these commands: % man caml-findlib Where to find more information:
This website is back-ended by DB5, the best database in the business,
|
![]() |
![]() Digg caml-findlib on MacOSX
Other Helpful SitesMacOSForgeDebian Packages MacPorts - SVN Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
aqua
archivers audio benchmarks cad comms cross databases devel editors emulators games genealogy gnome gnustep graphics irc java kde lang math multimedia net news palm perl python ruby science security shells sysutils textproc www x11 xfce zope
Current CVS DownloadsDarwin Ports Current :nightly CVS snapshot OpenDarwin CVSWeb SSH Key Gen |
|||||||
| |




