File: setup

package info (click to toggle)
draai 20100511-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 496 kB
  • ctags: 16
  • sloc: sh: 741; perl: 221; makefile: 33
file content (305 lines) | stat: -rwxr-xr-x 6,578 bytes parent folder | download
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
#!/bin/zsh

# This file is maintained at http://git.mdcc.cx/draai

# copyright:
COPYRIGHT='Copyright (C) 2007, 2008, 2009 Joost van Baal'

# This program is freely distributable per the following license:
LICENSE="
This file is part of draai.

Draai is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License, as published by the Free Software
Foundation on http://www.gnu.org/licenses/gpl.html.  You should have received
a copy of the GNU General Public License along with draai.

There is NO warranty."

PACKAGE=draai
prefix=/usr/local

typeset -a docfiles dist_docfiles man1files dist_man1files scriptfiles \
 dist_scriptfiles libexecfiles dist_libexecfiles zshfiles dist_zshfiles \
 dist_files

docfiles=(COPYING ChangeLog NEWS README)
dist_docfiles=($docfiles TODO INSTALL)

man1files=(man/draai.1 man/dr_cdrip.1 man/dr_permutate.1 man/dr_symlinks.1 \
  man/dr_unsort.1 man/dr_watch.1)
dist_man1files=($man1files man/include.zmm.in man/*.azm)

scriptfiles=(script/dr_cdrip script/draai script/dr_permutate \
  script/dr_watch script/dr_symlinks script/dr_unsort)
dist_scriptfiles=($scriptfiles script/draai.in)

libexecfiles=(script/dr_mount script/dr_push script/dr_file2tag \
  script/oggsymlinks script/draai123)
dist_libexecfiles=($libexecfiles)

zshfiles=(zsh/_draai)
dist_zshfiles=($zshfiles)

dist_helpfiles=(help/{command,option,shortoption}/*)

dist_files=($dist_docfiles $dist_man1files $dist_scriptfiles \
  $dist_libexecfiles $dist_zshfiles $dist_helpfiles VERSION \
  setup man/Makefile)

dist_subdirs=(man script zsh help/{command,option,shortoption})

prog=`basename $0`

usage()
{
cat <<EOT
Usage: $prog [--prefix=PREFIX] [--libexecdir=LIBEXECDIR] install|uninstall
Install draai.

Helper scripts are by default installed in LIBEXECDIR/PACKAGE, which is
PREFIX/libexec/draai, which is /usr/local/libexec/draai by default.

(Don't run as
 $prog dist|publish|configure
unless you really know what you are doing.)
EOT
}

init()
{
    if test -f VERSION
    then
        echo reusing version $version from file VERSION
        version=$(cat VERSION)
    else
        version=$(date +%Y%m%d)
        echo creating file VERSION
        echo $version >VERSION
    fi

    { cat <<EOT
year Y
month b
day d
EOT
} | while read p o
    do
        f=stamp.$p
        if test -f $f
        then
            echo reusing file $f
        else
            echo creating file $f
            date +%$o >$f
        fi
    done

    distdir=$PACKAGE-$version
    tgz=$distdir.tar.gz
}

buildhelp()
{
    cd help/command
    for f in *
    do
        # yes, we want a literal \n in the output: sed should be able to grok it 
        echo -n "$f:\\\n"
        while read l; do echo -n "   $l\\\n"; done < $f
        echo -n "\\\n"
    done
    cd -
}

build_cmds()
{
    cd help/command
    # create output like:
    #    draai:"play music (now or later)"
    #    init:"start a bunch of x terminals setting up some draai jobs"
    for f in *
    do
        echo -n "    $f:"'"'
        while read l; do echo -n "$l "; done < $f
        echo -n '"'"\\\n"
    done
    cd -
}

configure()
{
    buildhelp >help.txt
    build_cmds >cmds.txt

    for f in script/draai.in man/include.zmm.in zsh/_draai.in
    do
       sed "s/@VERSION@/$version/; s|@top_srcdir@|`pwd`|;
         s/@HELPTEXT@/`cat help.txt`/; s/@CMDSTEXT@/`cat cmds.txt`/" $f > ${f%.in}
       echo generated ${f%.in} from $f
    done
    # rm help.txt cmds.txt
}

all()
{
    ( cd man && make )
}


OPTS=$(getopt -o h,l,p: --long help,license,prefix:,libexecdir: -- "$@")
eval set -- "$OPTS"

while true; do
    case "$1" in
      -h|--help)
        usage
        exit 0
        ;;
      -p|--prefix)
        prefix="$2"
        shift 2
        ;;
      --libexecdir)
        libexecdir="$2"
        shift 2
        ;;
      -l|--license)
        echo $COPYRIGHT
        echo $LICENSE
        exit 0
        ;;
      --)
        shift
        break
        ;;
      *)
        usage
        exit 1
        ;;
    esac
done

shift $(($OPTIND - 1))

command=$1
shift

exec_prefix=${prefix}

bindir=${exec_prefix}/bin
mandir=${prefix}/man
man1dir=$mandir/man1

datarootdir=${prefix}/share
datadir=${datarootdir}
docdir=${datadir}/doc/$PACKAGE

: ${libexecdir:=${exec_prefix}/libexec}
libexecpdir=${libexecdir}/$PACKAGE

zshdir=${datadir}/zsh/site-functions

case $command in
  install)

    for d in $DESTDIR$bindir $DESTDIR$man1dir $DESTDIR$docdir $DESTDIR$libexecpdir $DESTDIR$zshdir
    do
        test -d "$d" || { mkdir -p "$d" && echo created $d }
    done
    for p in $scriptfiles
    do
        if test -f $p
        then
            install -c "$p" "${DESTDIR}${bindir}/$(basename $p)" && \
              echo installed ${DESTDIR}${bindir}/$(basename $p)
        fi
    done
    for p in $man1files
    do
        if test -f $p
        then
            install -c -m 644 "$p" "${DESTDIR}${man1dir}/$(basename $p)" && \
              echo installed ${DESTDIR}${man1dir}/$(basename $p)
        fi
    done
    for p in $docfiles
    do
        if test -f $p
        then
            install -c -m 644 "$p" "${DESTDIR}${docdir}/$(basename $p)" && \
              echo installed ${DESTDIR}${docdir}/$(basename $p)
        fi
    done
    for p in $libexecfiles
    do
        if test -f $p
        then
            install -c "$p" "${DESTDIR}${libexecpdir}/$(basename $p)" && \
              echo installed ${DESTDIR}${libexecpdir}/$(basename $p)
        fi
    done
    for p in $zshfiles
    do
        if test -f $p
        then
            install -c -m 644 "$p" "${DESTDIR}${zshdir}/$(basename $p)" && \
              echo installed ${DESTDIR}${zshdir}/$(basename $p)
        fi
    done

    ;;
  uninstall)
    # FIXME
    echo not yet implemented
    ;;
  dist)

    cp /usr/share/common-licenses/GPL COPYING

    init
    echo $version > VERSION

    configure
    all

    if head NEWS | grep -q $version
    then
        :
    else
        echo error: NEWS does not mention release $version
        exit 1
    fi

    rm -rf $distdir
    mkdir $distdir
    for dir in $dist_subdirs
    do
        mkdir -p $distdir/$dir
    done

    for file in $dist_files
    do
        dir=$(echo "$file" | sed -e 's,/[^/]*$,,')
        cp -pR $file $distdir/$dir
    done

    tar chof - $distdir | gzip -c >$distdir.tar.gz

    ls -l $distdir.tar.gz
    ;;
  publish)
    init
    scp $tgz opal:www/mdcc.cx/pub/draai/
    ;;
  configure)
    # not for users, merely convenience for developers
    init
    configure
    ;;
  *)
    usage
    exit 1
    ;;
esac