1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | name mongodb |
---|
6 | categories databases |
---|
7 | maintainers 10gen.com:mike |
---|
8 | description A high-performance, schema-free, document-oriented database. |
---|
9 | long_description A high-performance, schema-free, document-oriented \ |
---|
10 | database. A key goal of MongoDB is to bridge the gap \ |
---|
11 | between key/value stores (which are fast and highly \ |
---|
12 | scalable) and traditional RDBMS systems (which are deep in \ |
---|
13 | functionality). |
---|
14 | homepage http://www.mongodb.org/ |
---|
15 | platforms darwin |
---|
16 | |
---|
17 | version 0.9.6 |
---|
18 | set git_hash b57918b3a468ba5882f226fc54e00321c20d7f0d |
---|
19 | master_sites http://github.com/mongodb/mongo/tarball/r${version} |
---|
20 | checksums md5 fde6a2b636409269207520dcb106af60 \ |
---|
21 | sha1 cc3552724d3c5e4179dfbd3a509276a0acdc8617 \ |
---|
22 | rmd160 596295f9c572bfecad5fa03461a9aad21bb4742f |
---|
23 | |
---|
24 | depends_build port:scons |
---|
25 | depends_lib port:boost port:pcre port:spidermonkey port:libpcap \ |
---|
26 | port:readline |
---|
27 | |
---|
28 | worksrcdir ${name}-mongo-${git_hash} |
---|
29 | |
---|
30 | use_configure no |
---|
31 | build.cmd scons |
---|
32 | destroot.cmd scons |
---|
33 | destroot.destdir --prefix=${destroot}${prefix} |
---|