packaging: improve spec file
[platform/upstream/groff.git] / gendef.sh
1 #! /bin/sh
2 #
3 # Copyright (C) 1991, 2000, 2009
4 #   Free Software Foundation, Inc.
5
6 # This file is part of groff.
7
8 # groff is free software; you can redistribute it and/or modify it under
9 # the terms of the GNU General Public License as published by the Free
10 # Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12
13 # groff is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 # for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #
21 #
22 # gendef filename var=val var=val ...
23 #
24 # This script is used to generate src/include/defs.h.
25 #
26 file=$1
27 shift
28
29 defs="#define $1"
30 shift
31 for def
32 do
33         defs="$defs
34 #define $def"
35 done
36
37 # Use $TMPDIR if defined.  Default to cwd, for non-Unix systems
38 # which don't have /tmp on each drive (we are going to remove
39 # the file before we exit anyway).  Put the PID in the basename,
40 # since the extension can only hold 3 characters on MS-DOS.
41 t=${TMPDIR-.}/gro$$.tmp
42
43 sed -e 's/=/ /' >$t <<EOF
44 $defs
45 EOF
46
47 test -r $file && cmp -s $t $file || cp $t $file
48
49 rm -f $t
50
51 exit 0
52
53 # eof