Improve wording in `libguile/Makefile.am' regarding stack calibration.
[bpt/guile.git] / guile-tools.in
1 #!/bin/sh
2
3 # Copyright (C) 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License as
7 # published by the Free Software Foundation; either version 2, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this software; see the file COPYING. If not, write to
17 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 # Boston, MA 02110-1301 USA
19
20 # Usage: See `help' func below.
21 #
22 # TODO
23 # - handle pre-install invocation
24 # - "full" option processing (but see comment below)
25 #
26 # Author: Thien-Thi Nguyen
27
28 help ()
29 {
30 cat <<EOF
31 Usage: guile-tools --version
32 guile-tools --help
33 guile-tools [OPTION] PROGRAM [ARGS]
34
35 If PROGRAM is "list" or omitted, display contents of scripts dir, otherwise
36 PROGRAM is run w/ ARGS. Options (only one of which may be used at a time):
37 --scriptsdir DIR -- Look in DIR for scripts
38 --guileversion VERS -- Look in $pkgdatadir/VERS/scripts for scripts
39 --source -- Display PROGRAM source (ignore ARGS) to stdout
40
41 Default scripts dir: $default_scriptsdir
42 EOF
43 }
44
45 prefix="@prefix@"
46 datarootdir="@datarootdir@"
47 pkgdatadir="@datadir@/@PACKAGE@"
48 guileversion="@GUILE_EFFECTIVE_VERSION@"
49 default_scriptsdir=$pkgdatadir/$guileversion/scripts
50
51 top_srcdir="@top_srcdir_absolute@"
52 top_builddir="@top_builddir_absolute@"
53
54 # pre-install invocation frob
55 mydir=$(cd $(dirname $0) && pwd)
56 if [ "$mydir" = "$top_builddir" ] ; then
57 default_scriptsdir=$top_srcdir/scripts
58 fi
59
60 # option processing -- basically, you can override either the script dir
61 # completely, or just the guile version. we choose implementation simplicity
62 # over orthogonality.
63
64 case x"$1" in
65 x--version)
66 echo $0 $guileversion
67 exit 0
68 ;;
69 x--help)
70 help
71 exit 0
72 ;;
73 esac
74
75 if [ x"$1" = x--scriptsdir ] ; then
76 user_scriptsdir=$2
77 shift
78 shift
79 elif [ x"$1" = x--guileversion ] ; then
80 user_scriptsdir=$pkgdatadir/$2/scripts
81 shift
82 shift
83 fi
84
85 scriptsdir=${user_scriptsdir-$default_scriptsdir}
86
87 if [ ! -d $scriptsdir ] ; then
88 echo $0: no such directory: $scriptsdir
89 exit 1
90 fi
91
92 if [ x"$1" = x -o x"$1" = xlist ] ; then
93 ls $scriptsdir
94 exit 0
95 fi
96
97 if [ x"$1" = x--source ] ; then
98 if [ x"$2" = x ] ; then echo $0: need to specify program ; exit 1 ; fi
99 if [ -x $scriptsdir/$2 ] ; then
100 cat $scriptsdir/$2
101 exit 0
102 else
103 echo $0: no such program: $2
104 exit 1
105 fi
106 fi
107
108 program=$scriptsdir/$1
109 shift
110
111 if [ -x $program ] ; then
112 exec $program "$@"
113 else
114 echo $0: no such program: $program
115 exit 1
116 fi
117
118 # guile-tools ends here