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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
|
#!/bin/sh -e
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# cd into this script’s directory
rootdir="$(cd "${0%/*}" 2>/dev/null; echo "$PWD")"
basename=`basename $0`
TEST=0
WITH_CURL="false"
PREFIX=
DEFAULT_PREFIX=/usr/local
EXEC_PREFIX=
BINDIR=
LIBEXECDIR=
SYSCONFDIR=
DATAROOTDIR=
DATADIR=
LOCALSTATEDIR=
RUNSTATEDIR=
DOCDIR=
LIBDIR=
DATABASEDIR=
VIEWDIR=
LOGDIR=
display_help () {
cat << EOF
Usage: $basename [OPTION]
The $basename command is responsible for generating the build
system for Apache CouchDB.
Options:
-h | --help display a short help message and exit
# -u USER set the username to run as (defaults to $COUCHDB_USER)
--prefix=DIRECTORY set the installation prefix (defaults to $DEFAULT_PREFIX)
--databasedir DIRECTORY specify the data directory (defaults to /var/lib/couchdb)
--viewindexdir DIRECTORY specify the view directory (defaults to /var/lib/couchdb)
--logdir DIRECTORY specify the log file (defaults to /var/log/couchdb.log)
-c | --with-curl request that couchjs is linked to cURL (default false)
Installation directories:
--prefix=PREFIX install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
[PREFIX]
Fine tuning of the installation directories:
--bindir=DIR user executables [EPREFIX/bin]
--libexecdir=DIR program executables [EPREFIX/libexec]
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--libdir=DIR object code libraries [EPREFIX/lib]
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
# --infodir=DIR info documentation [DATAROOTDIR/info]
# --mandir=DIR man documentation [DATAROOTDIR/man]
# --docdir=DIR documentation root [DATAROOTDIR/doc/apache-couchdb]
# --htmldir=DIR html documentation [DOCDIR]
# --dvidir=DIR dvi documentation [DOCDIR]
# --pdfdir=DIR pdf documentation [DOCDIR]
# --psdir=DIR ps documentation [DOCDIR]
EOF
}
parse_opts() {
while :; do
case $1 in
-h|--help)
display_help
exit
;;
--test)
TEST=1
shift
continue
;;
--with-curl|-c)
WITH_CURL="true"
shift
continue
;;
--prefix)
if [ -n "$2" ]; then
PREFIX=$2
shift 2
continue
else
printf 'ERROR: "--prefix" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--prefix=?*)
PREFIX=${1#*=}
;;
--prefix=)
printf 'ERROR: "--prefix" requires a non-empty argument.\n' >&2
exit 1
;;
--exec-prefix)
if [ -n "$2" ]; then
EXEC_PREFIX=$2
shift 2
continue
else
printf 'ERROR: "--exec-prefix" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--exec-prefix=?*)
EXEC_PREFIX=${1#*=}
;;
--exec-prefix=)
printf 'ERROR: "--exec-prefix" requires a non-empty argument.\n' >&2
exit 1
;;
--bindir)
if [ -n "$2" ]; then
BINDIR=$2
shift 2
continue
else
printf 'ERROR: "--bindir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--bindir=?*)
BINDIR=${1#*=}
;;
--bindir=)
printf 'ERROR: "--bindir" requires a non-empty argument.\n' >&2
exit 1
;;
--libexecdir)
if [ -n "$2" ]; then
LIBEXECDIR=$2
shift 2
continue
else
printf 'ERROR: "--libexecdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--libexecdir=?*)
LIBEXECDIR=${1#*=}
;;
--libexecdir=)
printf 'ERROR: "--libexecdir" requires a non-empty argument.\n' >&2
exit 1
;;
--sysconfdir)
if [ -n "$2" ]; then
SYSCONFDIR=$2
shift 2
continue
else
printf 'ERROR: "--sysconfdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--sysconfdir=?*)
SYSCONFDIR=${1#*=}
;;
--sysconfdir=)
printf 'ERROR: "--sysconfdir" requires a non-empty argument.\n' >&2
exit 1
;;
--datarootdir)
if [ -n "$2" ]; then
DATAROOTDIR=$2
shift 2
continue
else
printf 'ERROR: "--datarootdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--datarootdir=?*)
DATAROOTDIR=${1#*=}
;;
--datarootdir=)
printf 'ERROR: "--datarootdir" requires a non-empty argument.\n' >&2
exit 1
;;
--datadir)
if [ -n "$2" ]; then
DATADIR=$2
shift 2
continue
else
printf 'ERROR: "--datadir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--datadir=?*)
DATADIR=${1#*=}
;;
--datadir=)
printf 'ERROR: "--datadir" requires a non-empty argument.\n' >&2
exit 1
;;
--localstatedir)
if [ -n "$2" ]; then
LOCALSTATEDIR=$2
shift 2
continue
else
printf 'ERROR: "--localstatedir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--localstatedir=?*)
LOCALSTATEDIR=${1#*=}
;;
--localstatedir=)
printf 'ERROR: "--localstatedir" requires a non-empty argument.\n' >&2
exit 1
;;
--runstatedir)
if [ -n "$2" ]; then
RUNSTATEDIR=$2
shift 2
continue
else
printf 'ERROR: "--runstatedir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--runstatedir=?*)
RUNSTATEDIR=${1#*=}
;;
--runstatedir=)
printf 'ERROR: "--runstatedir" requires a non-empty argument.\n' >&2
exit 1
;;
--docdir)
if [ -n "$2" ]; then
DOCDIR=$2
shift 2
continue
else
printf 'ERROR: "--docdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--docdir=?*)
DOCDIR=${1#*=}
;;
--docdir=)
printf 'ERROR: "--docdir" requires a non-empty argument.\n' >&2
exit 1
;;
--libdir)
if [ -n "$2" ]; then
LIBDIR=$2
shift 2
continue
else
printf 'ERROR: "--libdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--libdir=?*)
LIBDIR=${1#*=}
;;
--libdir=)
printf 'ERROR: "--libdir" requires a non-empty argument.\n' >&2
exit 1
;;
--databasedir)
if [ -n "$2" ]; then
DATABASEDIR=$2
shift 2
continue
else
printf 'ERROR: "--databasedir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--databasedir=?*)
DATABASEDIR=${1#*=}
;;
--databasedir=)
printf 'ERROR: "--databasedir" requires a non-empty argument.\n' >&2
exit 1
;;
--viewindexdir)
if [ -n "$2" ]; then
VIEWDIR=$2
shift 2
continue
else
printf 'ERROR: "--viewindexdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--viewindexdir=?*)
VIEWDIR=${1#*=}
;;
--viewindexdir=)
printf 'ERROR: "--viewindexdir" requires a non-empty argument.\n' >&2
exit 1
;;
--logdir)
if [ -n "$2" ]; then
LOGDIR=$2
shift 2
continue
else
printf 'ERROR: "--logdir" requires a non-empty argument.\n' >&2
exit 1
fi
;;
--logdir=?*)
LOGDIR=${1#*=}
;;
--logdir=)
printf 'ERROR: "--logdir" requires a non-empty argument.\n' >&2
exit 1
;;
--) # End of options
shift
break
;;
-?*)
echo "WARNING: Unkonwn option '$1', ignoring" >&2
shift
;;
*) # Done
break
esac
shift
done
# defaults
if test -z "$PREFIX"; then
PREFIX="$DEFAULT_PREFIX";
fi
if test -z "$EXEC_PREFIX"; then
EXEC_PREFIX="$PREFIX";
fi
if test -z "$BINDIR"; then
BINDIR="$EXEC_PREFIX/bin";
fi
if test -z "$LIBEXECDIR"; then
LIBEXECDIR="$EXEC_PREFIX/libexec";
fi
if test -z "$SYSCONFDIR"; then
SYSCONFDIR="$PREFIX/etc";
fi
if test -z "$DATAROOTDIR"; then
DATAROOTDIR="$PREFIX/share";
fi
if test -z "$DATADIR"; then
DATADIR="$DATAROOTDIR";
fi
if test -z "$LOCALSTATEDIR"; then
LOCALSTATEDIR="$PREFIX/var";
fi
if test -z "$RUNSTATEDIR"; then
RUNSTATEDIR="$LOCALSTATEDIR/run";
fi
if test -z "$DOCDIR"; then
DOCDIR="$DATAROOTDIR/doc";
fi
if test -z "$LIBDIR"; then
LIBDIR="$EXEC_PREFIX/lib";
fi
if test -z "$DATABASEDIR"; then
DATABASEDIR="$LOCALSTATEDIR/lib";
fi
if test -z "$VIEWDIR"; then
VIEWDIR="$LOCALSTATEDIR/lib";
fi
if test -z "$LOGDIR"; then
LOGDIR="$LOCALSTATEDIR/log";
fi
}
parse_opts $@
# We use this for testing this script
# The test script lives in test/build/test-configure.sh
if [ "$TEST" = "1" ]; then
echo $PREFIX $EXEC_PREFIX $BINDIR $LIBEXECDIR $SYSCONFDIR $DATAROOTDIR \
$DATADIR $LOCALSTATEDIR $RUNSTATEDIR $DOCDIR $LIBDIR $DATABASEDIR \
$VIEWDIR $LOGDIR
exit 0
fi
# Translate ./configure variables to CouchDB variables
INSTALLDIR=$LIBDIR/couchdb
LOG_FILE=$LOGDIR/couch.log
echo "==> configuring couchdb in rel/couchdb.config"
cat > rel/couchdb.config << EOF
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.
%
% The contents of this file are auto-generated by configure
%
{package_author_name, "$PACKAGE_AUTHOR_NAME"}.
{prefix, "$INSTALLDIR"}.
{data_dir, "$DATABASEDIR"}.
{view_index_dir, "$VIEWDIR"}.
{log_file, "$LOG_FILE"}.
{user, "$COUCHDB_USER"}.
{node_name, "-name couchdb"}.
{cluster_port, 5984}.
{backend_port, 5986}.
EOF
cat > install.mk << EOF
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
# The contents of this file are auto-generated by configure
#
package_author_name = $PACKAGE_AUTHOR_NAME
install_dir = $INSTALL_DIR
bin_dir = $BINDIR
libexec_dir = $LIBEXECDIR/couchdb
doc_dir = $DOCDIR/couchdb
sysconf_dir = $SYSCONFDIR/couchdb
data_dir = $DATADIR/couchdb
database_dir = $DATABASE_DIR
view_index_dir = $VIEW_DIR
log_file = $LOG_FILE
user = $COUCHDB_USER
EOF
cat > $rootdir/config.erl << EOF
{with_curl, $WITH_CURL}.
EOF
# only update dependencies, when we are not in a release tarball
if [ -d .git ]; then
echo "==> updating dependencies"
rebar get-deps update-deps
fi
|