-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal-ports.tar
More file actions
142 lines (121 loc) · 10 KB
/
local-ports.tar
File metadata and controls
142 lines (121 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
local-ports/ 000755 000765 000120 00000000000 11462650731 013236 5 ustar 00nrh admin 000000 000000 local-ports/java/ 000755 000765 000120 00000000000 11457372624 014165 5 ustar 00nrh admin 000000 000000 local-ports/java/zookeeper-server/ 000755 000765 000120 00000000000 11457402457 017472 5 ustar 00nrh admin 000000 000000 local-ports/java/zookeeper-server/files/ 000755 000765 000120 00000000000 11457402431 020564 5 ustar 00nrh admin 000000 000000 local-ports/java/zookeeper-server/Portfile 000644 000765 000120 00000004202 11457372724 021202 0 ustar 00nrh admin 000000 000000 # -*- 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
# $Id: Portfile 72252 2010-10-08 23:20:28Z [email protected] $
PortSystem 1.0
name zookeeper-server
version 3.3.1
revision 1
categories java
maintainers ikami.com:nrh
platforms darwin
description ZooKeeper: Because coordinating distributed systems is a Zoo
long_description \
ZooKeeper allows distributed processes to coordinate with each other \
through a shared hierarchal name space of data registers (we call \
these registers znodes), much like a file system. Unlike normal file \
systems ZooKeeper provides its clients with high throughput, low \
latency, highly available, strictly ordered access to the znodes. \
The performance aspects of ZooKeeper allows it to be used in large \
distributed systems. The reliability aspects prevent it from \
becoming the single point of failure in big systems. Its strict \
ordering allows sophisticated synchronization primitives to be \
implemented at the client.
homepage http://hadoop.apache.org/zookeeper/
master_sites apache:hadoop/zookeeper/zookeeper-${version}/
checksums md5 bdcd73634e3f6623a025854f853c3d0d \
sha1 683f439c149fdeaad996eb88d84caa2f2fc756c5
distname zookeeper-${version}
depends_build bin:ant:apache-ant
use_configure no
build.cmd ant
build.target-delete all
test.run yes
patchfiles zkServer.sh.patch zoo.cfg.patch
destroot {
xinstall -m 755 -d ${destroot}${prefix}/share/java/${name}
file copy ${worksrcpath}/zookeeper-${version}.jar \
${destroot}${prefix}/share/java/${name}
file copy \
${worksrcpath}/lib \
${worksrcpath}/bin \
${worksrcpath}/conf \
${worksrcpath}/docs \
${destroot}${prefix}/share/java/${name}
ln -sf ${prefix}/share/java/${name}/bin/zkServer.sh \
${destroot}${prefix}/bin/zookeeper-server.sh
}
startupitem.create yes
startupitem.executable "${prefix}/bin/zookeeper-server.sh" start-foreground