]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/dialog/dialog-config.in
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / dialog / dialog-config.in
1 #!@SHELL@
2 # $Id: dialog-config.in,v 1.5 2011/01/06 09:38:03 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2007,2011 Thomas E. Dickey                                   #
5 #                                                                            #
6 # Permission is hereby granted, free of charge, to any person obtaining a    #
7 # copy of this software and associated documentation files (the "Software"), #
8 # to deal in the Software without restriction, including without limitation  #
9 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
10 # with modifications, sublicense, and/or sell copies of the Software, and to #
11 # permit persons to whom the Software is furnished to do so, subject to the  #
12 # following conditions:                                                      #
13 #                                                                            #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software.                        #
16 #                                                                            #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
20 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
23 # DEALINGS IN THE SOFTWARE.                                                  #
24 #                                                                            #
25 # Except as contained in this notice, the name(s) of the above copyright     #
26 # holders shall not be used in advertising or otherwise to promote the sale, #
27 # use or other dealings in this Software without prior written               #
28 # authorization.                                                             #
29 ##############################################################################
30
31 prefix="@prefix@"
32 exec_prefix="@exec_prefix@"
33
34 bindir="@bindir@"
35 libdir="@libdir@"
36 datadir="@datadir@"
37 mandir="@mandir@"
38
39 THIS="@PACKAGE@"
40
41 test $# = 0 && exec @SHELL@ $0 --error
42
43 while test $# -gt 0; do
44         case "$1" in
45         -*=*)
46                 ARG=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'`
47                 ;;
48         *)
49                 ARG=
50                 ;;
51         esac
52
53         case "$1" in
54         # basic configuration
55         --prefix=*)
56                 prefix="$ARG"
57                 test -z "$exec_prefix" && exec_prefix="$ARG"
58                 ;;
59         --prefix)
60                 echo "$prefix"
61                 ;;
62         --exec-prefix=*)
63                 exec_prefix="$ARG"
64                 ;;
65         --exec-prefix)
66                 echo "$exec_prefix"
67                 ;;
68         # compile/link
69         --cflags)
70                 INCS=
71                 if test "${prefix}/include" != /usr/include ; then
72                         INCS="-I${prefix}/include"
73                 fi
74                 sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
75                         $INCS
76 ENDECHO
77                 ;;
78         --libs)
79                 sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
80                         -L${exec_prefix}/lib -l${THIS} @LIBS@
81 ENDECHO
82                 ;;
83         # identification
84         --version)
85                 echo "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@"
86                 ;;
87         --abi-version)
88                 echo "@VERSION@" | sed -e 's/:/./g'
89                 ;;
90         # locations
91         --bindir)
92                 echo "${bindir}"
93                 ;;
94         --datadir)
95                 echo "${datadir}"
96                 ;;
97         --libdir)
98                 echo "${libdir}"
99                 ;;
100         --mandir)
101                 echo "${mandir}"
102                 ;;
103         # general info
104         --help)
105                 cat <<ENDHELP
106 Usage: ${THIS}-config [options]
107
108 Options:
109   --prefix           echos the package-prefix of ${THIS}
110   --prefix=ARG       sets the package-prefix of ${THIS}
111   --exec-prefix      echos the executable-prefix of ${THIS}
112   --exec-prefix=ARG  sets the executable-prefix of ${THIS}
113
114   --cflags           echos the C compiler flags needed to compile with ${THIS}
115   --libs             echos the libraries needed to link with ${THIS}
116
117   --version          echos the release+patchdate version of ${THIS}
118   --abi-version      echos the ABI version of ${THIS}
119
120   --bindir           echos the directory containing ${THIS} programs
121   --datadir          echos the directory containing ${THIS} data
122   --libdir           echos the directory containing ${THIS} libraries
123   --mandir           echos the directory containing ${THIS} manpages
124
125   --help             prints this message
126 ENDHELP
127                 ;;
128         --error|*)
129                 @SHELL@ $0 --help 1>&2
130                 exit 1
131                 ;;
132         esac
133         shift
134 done
135 # vile:shmode