View | Details | Raw Unified | Return to bug 152317
Collapse All | Expand All

(-)/usr/ports/www/node/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	node
8
PORTNAME=	node
9
PORTVERSION=	0.2.4
9
PORTVERSION=	0.2.5
10
CATEGORIES=	www
10
CATEGORIES=	www
11
MASTER_SITES=	http://nodejs.org/dist/
11
MASTER_SITES=	http://nodejs.org/dist/
12
DISTNAME=	${PORTNAME}-v${PORTVERSION}
12
DISTNAME=	${PORTNAME}-v${PORTVERSION}
(-)/usr/ports/www/node/distinfo (-3 / +2 lines)
Lines 1-3 Link Here
1
MD5 (node-v0.2.4.tar.gz) = 413c8f648be1cb9f6f6db615894c75a2
1
SHA256 (node-v0.2.5.tar.gz) = 6c964096e2fb7bfa9108b31bdd2a920465a1b7f7a603e3937128eee9538b44bb
2
SHA256 (node-v0.2.4.tar.gz) = e6952007dacf18d9d85ae8ede8228e25cfe46e00be21b31c4d166239ec1fa533
2
SIZE (node-v0.2.5.tar.gz) = 4008314
3
SIZE (node-v0.2.4.tar.gz) = 4002347
(-)/usr/ports/www/node/files/patch-wafadmin-Node.py (+15 lines)
Line 0 Link Here
1
--- tools/wafadmin/Node.py.orig	2010-10-25 05:45:39.000000000 +0800
2
+++ tools/wafadmin/Node.py	2010-10-27 18:30:12.000000000 +0800
3
@@ -349,6 +349,12 @@
4
 		if self == from_node: return '.'
5
 		if from_node.parent == self: return '..'
6
 
7
+		from_node_path = from_node.abspath()
8
+		from_node_realpath = os.path.realpath(from_node_path)
9
+		if from_node_path != from_node_realpath:
10
+			from_node = self.__class__.bld.root.find_dir(from_node_realpath)
11
+			return self.relpath_gen(from_node)
12
+
13
 		# up_path is '../../../' and down_path is 'dir/subdir/subdir/file'
14
 		ancestor = self.find_ancestor(from_node)
15
 		lst = []

Return to bug 152317