# HG changeset patch
# User Sean Farley <sean@farley.io>
# Date 1442902601 25200
# Mon Sep 21 23:16:41 2015 -0700
# Node ID ce1d9dc97c7a2e2075ca3c7aa1ccc314dbc914df
# Parent f3e2b24a0e2b73c6ef3ce9daf22bd311dfb23a2a
nodejs: update to 4.0.0
diff --git a/dports/devel/nodejs/Portfile b/dports/devel/nodejs/Portfile
a
|
b
|
|
3 | 3 | |
4 | 4 | PortSystem 1.0 |
5 | 5 | PortGroup compiler_blacklist_versions 1.0 |
6 | 6 | |
7 | 7 | name nodejs |
8 | | version 0.12.7 |
| 8 | version 4.0.0 |
9 | 9 | |
10 | 10 | categories devel net |
11 | 11 | platforms darwin |
12 | 12 | license {MIT BSD} |
13 | 13 | maintainers ciserlohn |
… |
… |
long_description Node's goal is t |
22 | 22 | conflicts nodejs-devel iojs |
23 | 23 | |
24 | 24 | homepage http://nodejs.org/ |
25 | 25 | master_sites ${homepage}dist/v${version} |
26 | 26 | |
27 | | checksums rmd160 947daa1eac347a0c42fb67c5e316f85a12d8bd26 \ |
28 | | sha256 b23d64df051c9c969b0c583f802d5d71de342e53067127a5061415be7e12f39d |
| 27 | checksums rmd160 d63849be4143fe5af829c43e4ffbcab8ebddb1eb \ |
| 28 | sha256 e110e5a066f3a6fe565ede7dd66f3727384b9b5c5fbf46f8db723d726e2f5900 |
29 | 29 | |
30 | 30 | distname node-v${version} |
31 | 31 | |
32 | 32 | depends_build port:pkgconfig |
33 | 33 | |
… |
… |
destroot { |
175 | 175 | src/node_stat_watcher.h \ |
176 | 176 | src/node_version.h \ |
177 | 177 | src/node_watchdog.h \ |
178 | 178 | src/node_wrap.h \ |
179 | 179 | src/pipe_wrap.h \ |
180 | | src/queue.h \ |
181 | | src/req_wrap.h \ |
182 | | src/smalloc.h \ |
183 | 180 | src/spawn_sync.h \ |
184 | 181 | src/stream_wrap.h \ |
185 | 182 | src/string_bytes.h \ |
186 | 183 | src/tcp_wrap.h \ |
187 | 184 | src/tls_wrap.h \ |
… |
… |
destroot { |
220 | 217 | ${destroot}${prefix}/share/man/man1 |
221 | 218 | |
222 | 219 | # install docs |
223 | 220 | xinstall -m 644 -W ${worksrcpath} \ |
224 | 221 | AUTHORS \ |
225 | | ChangeLog \ |
| 222 | ChangeLog.md \ |
| 223 | COLLABORATOR_GUIDE.md \ |
| 224 | CONTRIBUTING.md \ |
| 225 | GOVERNANCE.md \ |
226 | 226 | LICENSE \ |
227 | 227 | README.md \ |
228 | 228 | ${docdir} |
229 | 229 | } |
230 | 230 | |