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 | |
---|
6 | name node |
---|
7 | version 0.1.25 |
---|
8 | categories javascript |
---|
9 | maintainers gmail.com:ceager openmaintainer |
---|
10 | description Evented I/O for V8 javascript |
---|
11 | long_description Node's goal is to provide an easy way to build scalable network programs. \ |
---|
12 | Node is similar in design to and influenced by systems like Ruby's Event \ |
---|
13 | Machine or Python's Twisted. Node takes the event model a bit further—it \ |
---|
14 | presents the event loop as a language construct instead of as a library. |
---|
15 | homepage http://nodejs.org |
---|
16 | platforms darwin |
---|
17 | master_sites http://s3.amazonaws.com/four.livejournal/20100109/ |
---|
18 | |
---|
19 | checksums md5 17ef9f59b583b2159a6d40e88e767675 \ |
---|
20 | sha1 62f8815a4f2bfe371578f7fd69b43d6e20a6414b \ |
---|
21 | rmd160 06bd878ad8cf53666def5f95f188d9d7a76003c7 |
---|
22 | distname ${name}-v${version} |
---|
23 | extract.suffix .tar.gz |
---|
24 | worksrcdir ${distname} |
---|
25 | |
---|
26 | depends_build bin:python:python26 |
---|
27 | |
---|
28 | depends_lib-append port:gnutls |
---|
29 | |
---|
30 | # v8 only compiles on arm and ia32 |
---|
31 | universal_variant no |
---|
32 | |
---|
33 | configure.env-append LDFLAGS="-L${prefix}/lib" |
---|
34 | |
---|
35 | test.run yes |
---|
36 | test.target test |
---|
37 | |
---|
38 | # TODO: Fix the doc installation |
---|
39 | #variant doc description {Builds and installs manpages} { |
---|
40 | # use_configure no |
---|
41 | # build {} |
---|
42 | # destroot.target doc install |
---|
43 | # |
---|
44 | # depends_lib-append port:asciidoc \ |
---|
45 | # port:libxslt |
---|
46 | #} |
---|