summaryrefslogtreecommitdiff
path: root/ports-mgmt/portmk/scripts/options.sh
blob: ce3115e5d72a5b85760c01e3b2f870ab4d31cc87 (plain) (blame)
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
#!/bin/sh -e
#
# Copyright (c) 2004 Oliver Eikemeier.  All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright notice
#    this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the author nor the names of its contributors may be
#    used to endorse or promote products derived from this software without
#    specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# $FreeBSD$
#
# MAINTAINER=	eik@FreeBSD.org
#
# These variables are referenced and must be exported from the Makefile:
#
# CURDIR
# OBJDIR
# MASTERDIR
# OPTIONS_MASTER
# OPTIONS_OVERRIDE
# OPTIONS_FILE
# OPTIONS_CMD
# PKGNAME
#

# utilities

LOCALBASE="${LOCALBASE:-/usr/local}"

AWK=/usr/bin/awk
CAT=/bin/cat
CHMOD=/bin/chmod
CP=/bin/cp
CUT=/usr/bin/cut
DIALOG=/usr/bin/dialog
EXPR=/bin/expr
FETCH=/usr/bin/fetch
GREP=/usr/bin/grep
LS=/bin/ls
MKDIR='/bin/mkdir -p'
MKTEMP=/usr/bin/mktemp
MV=/bin/mv
REALPATH=/bin/realpath
RM=/bin/rm
SED=/usr/bin/sed
SETENV=/usr/bin/env
SORT=/usr/bin/sort
TR=/usr/bin/tr
WC=/usr/bin/wc

# global constants

### utility functions ###

###
# do_create generates default options for a master (or override) options files
###

do_create()
{
  local rc

  if [ -n "$OPTIONS_OVERRIDE" ]; then
    OVERRIDEFILE="$OPTIONS_DEFAULT"
  elif [ "$CURDIR" != `$REALPATH "$MASTERDIR"` ]; then
    if [ -f "$CURDIR/options" ]; then
      OVERRIDEFILE="$CURDIR/options"
    elif [ -n "$PKGNAMESUFFIX" -a -f "$MASTERDIR/options.${PKGNAMESUFFIX#-}" ]; then
      OVERRIDEFILE="$MASTERDIR/options.${PKGNAMESUFFIX#-}"
    else
      OVERRIDEFILE=
    fi
  else
    OVERRIDEFILE=
  fi

  if [ -n "$OPTIONS_MASTER" ]; then
    MASTERFILE="$OPTIONS_MASTER"
  elif [ -f "$MASTERDIR/options" ]; then
    MASTERFILE="$MASTERDIR/options"
  else
    echo ">> makeconfig: Can't find $MASTERDIR/options" >&2
    return 1
  fi

  if [ -n "$OVERRIDEFILE" ]; then
    SRCFILE="$OVERRIDEFILE"
  else
    SRCFILE="$MASTERFILE"
  fi

  if ! TMP_OPTIONS=`$MKTEMP -q "$SRCFILE.XXXXXX"`; then
    echo ">> makeconfig: Can't create temporary options file"
    return 1
  fi

  $SED -e '/^##/,$d' "$SRCFILE" > "$TMP_OPTIONS"

  echo "## AUTOMATICALLY GENERATED FILE - DO NOT CHANGE ANYTHING BELOW THIS LINE ##" >> "$TMP_OPTIONS"
  echo "# use \`make config' to edit the local configuration" >> "$TMP_OPTIONS"
  echo "# use \`make makeconfig' to edit the defaults (MAINTAINER only)" >> "$TMP_OPTIONS"
  echo >> "$TMP_OPTIONS"

  if $OPTIONS_CMD -p "default" -M "$MASTERFILE" -O "$OVERRIDEFILE" -o >> "$TMP_OPTIONS"; then
    $MV -f "$TMP_OPTIONS" "$SRCFILE"
    $CHMOD a+r "$SRCFILE"
  else
    $RM -f "$TMP_OPTIONS"
  fi
  
  return $rc
}

###
# do_delete removes a saved configuration
###

do_delete()
{
  local rc

  $RM -f "$OPTIONS_FILE"

  return $rc
}

###
# do_edit edits a custom configuration
###

do_edit()
{
  local rc

  OPTIONS_DIR="${OPTIONS_FILE%/*}"
  if [ ! -d "$OPTIONS_DIR" ] && ! $MKDIR "$OPTIONS_DIR"; then
    echo ">> config: Can't create $OPTIONS_DIR." 2>&1
    return 1
  fi

  if [ -n "$OPTIONS_OVERRIDE" ]; then
    OVERRIDE="$OPTIONS_DEFAULT"
  elif [ "$CURDIR" != `$REALPATH "$MASTERDIR"` ]; then
    if [ -f "$CURDIR/options" ]; then
      OVERRIDE="$CURDIR/options"
    elif [ -n "$PKGNAMESUFFIX" -a -f "$MASTERDIR/options.${PKGNAMESUFFIX#-}" ]; then
      OVERRIDE="$MASTERDIR/options.${PKGNAMESUFFIX#-}"
    else
      OVERRIDE=
    fi
  else
    OVERRIDE=
  fi

  if [ -n "$OPTIONS_MASTER" ]; then
    MASTER="$OPTIONS_MASTER"
  elif [ -f "$MASTERDIR/options" ]; then
    MASTER="$MASTERDIR/options"
  else
    echo ">> makeconfig: Can't find $MASTERDIR/options" >&2
    return 1
  fi

  TMP_OPTIONS=`$MKTEMP -t options`

  $OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -e > "$TMP_OPTIONS"

  ${EDITOR:-/usr/bin/vi} "$TMP_OPTIONS"

  TMP_OPTIONS_FILE=`$MKTEMP -q "$OPTIONS_FILE.XXXXXX"`
  echo "## AUTOMATICALLY GENERATED FILE - DO NOT EDIT ##" > "$TMP_OPTIONS_FILE"
  $OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -t "$TMP_OPTIONS" -o >> "$TMP_OPTIONS_FILE"
  $RM -f "$TMP_OPTIONS"

  $MV -f "$TMP_OPTIONS_FILE" "$OPTIONS_FILE"
  $CHMOD a+r "$OPTIONS_FILE"

  return $rc
}

###
# do_graphical displays a menu to generate a custom configuration
###

do_graphical()
{
  local rc

  if [ -n "$OPTIONS_OVERRIDE" ]; then
    OVERRIDE="$OPTIONS_DEFAULT"
  elif [ "$CURDIR" != `$REALPATH "$MASTERDIR"` ]; then
    if [ -f "$CURDIR/options" ]; then
      OVERRIDE="$CURDIR/options"
    elif [ -n "$PKGNAMESUFFIX" -a -f "$MASTERDIR/options.${PKGNAMESUFFIX#-}" ]; then
      OVERRIDE="$MASTERDIR/options.${PKGNAMESUFFIX#-}"
    else
      OVERRIDE=
    fi
  else
    OVERRIDE=
  fi

  if [ -n "$OPTIONS_MASTER" ]; then
    MASTER="$OPTIONS_MASTER"
  elif [ -f "$MASTERDIR/options" ]; then
    MASTER="$MASTERDIR/options"
  else
    echo ">> makeconfig: Can't find $MASTERDIR/options" >&2
    return 1
  fi

  TMP_OPTIONS=`$MKTEMP -t options`

  DIALOGRC=`$OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -d`

  /bin/sh -c "$DIALOG --checklist \"Options for $PKGNAME\" 21 70 15 $DIALOGRC 2>\"$TMP_OPTIONS\""

  #TMP_OPTIONS_FILE=`$MKTEMP -q "$OPTIONS_FILE.XXXXXX"`
  #echo "## AUTOMATICALLY GENERATED FILE - DO NOT EDIT ##" > "$TMP_OPTIONS_FILE"
  #$OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -t "$TMP_OPTIONS" -o >> "$TMP_OPTIONS_FILE"
  $CAT "$TMP_OPTIONS"

  $RM -f "$TMP_OPTIONS"
  #$MV -f "$TMP_OPTIONS_FILE" "$OPTIONS_FILE"

  return $rc
}

###
# do_list lists the current configuration
###

do_list()
{
  local rc

  return $rc
}

###
# main
###

opt_create=false
opt_delete=false
opt_edit=false
opt_graphical=false
opt_list=false

while getopts "cdegl" opt; do
  case "$opt" in
  c) opt_create=true;;
  d) opt_delete=true;;
  e) opt_edit=true;;
  g) opt_graphical=true;;
  l) opt_list=true;;
  ?) echo "Usage: $0 -cdegl"; exit 1;;
  esac
done

shift $(($OPTIND-1))

$opt_create &&
  { do_create || exit 1; }

$opt_delete &&
  { do_delete || exit 1; }

$opt_edit &&
  { do_edit || exit 1; }

$opt_graphical &&
  { do_graphical || exit 1; }

$opt_list &&
  { do_list || exit 1; }

exit 0