From 7bc5229d2eb51535efc743df90ece6cd888e2bdd Mon Sep 17 00:00:00 2001
From: Tony Metzidis <tonym@tonym.us>
Date: Sat, 18 Sep 2010 15:43:52 -0700
Subject: [PATCH] - update to 0.2.2
- include +no_ssl variant
- patch-wscript.diff no longer needed--it's included in 0.2.2
---
devel/nodejs/Portfile | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/devel/nodejs/Portfile b/devel/nodejs/Portfile
index 58ee86b..45c9318 100644
a
|
b
|
|
4 | 4 | PortSystem 1.0 |
5 | 5 | |
6 | 6 | name nodejs |
7 | | version 0.2.0 |
| 7 | version 0.2.2 |
8 | 8 | categories devel net |
9 | 9 | platforms darwin |
10 | 10 | maintainers gmail.com:ceager openmaintainer |
… |
… |
long_description Node's goal is to provide an easy way to build scalable |
19 | 19 | homepage http://nodejs.org/ |
20 | 20 | master_sites ${homepage}dist/ |
21 | 21 | |
22 | | checksums md5 99a6dacc44b3f9c6ec376ccb446dd0b8 \ |
23 | | sha1 79e52937f5fa6f233985d766f137b4b8f22481b2 \ |
24 | | rmd160 265fdb4788dbc1278aaec9d1b2b64ba2c331e1ab |
| 22 | checksums md5 cccdad01d9c7bc2d62190e3146e43396 \ |
| 23 | sha1 4b8a734008ed3e9ba10d72c4f8a60ae56395d992 \ |
| 24 | rmd160 59ff652d0c484e7cb1a9da40215e47df82deb661 |
| 25 | |
25 | 26 | |
26 | 27 | distname node-v${version} |
27 | 28 | |
… |
… |
test.run yes |
42 | 43 | # depends_lib-append port:asciidoc \ |
43 | 44 | # port:libxslt |
44 | 45 | #} |
| 46 | variant no_ssl description {build without ssl} { |
| 47 | configure.args-append --without-ssl |
| 48 | depends_lib-delete port:gnutls \ |
| 49 | port:openssl |
| 50 | } |
| 51 | |