]> git.ipfire.org Git - thirdparty/cups.git/blob - cups-config.in
Load cups into easysw/current.
[thirdparty/cups.git] / cups-config.in
1 #! /bin/sh
2 #
3 # "$Id: cups-config.in 6649 2007-07-11 21:46:42Z mike $"
4 #
5 # CUPS configuration utility.
6 #
7 # Copyright 2007 by Apple Inc.
8 # Copyright 2001-2006 by Easy Software Products, all rights reserved.
9 #
10 # These coded instructions, statements, and computer programs are the
11 # property of Apple Inc. and are protected by Federal copyright
12 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
13 # which should have been included with this file. If this file is
14 # file is missing or damaged, see the license at "http://www.cups.org/".
15 #
16
17 VERSION="@CUPS_VERSION@"
18 APIVERSION="1.3"
19
20 prefix=@prefix@
21 exec_prefix=@exec_prefix@
22 bindir=@bindir@
23 includedir=@includedir@
24 libdir=@libdir@
25 imagelibdir=@libdir@
26 datarootdir=@datadir@
27 datadir=@datadir@
28 sysconfdir=@sysconfdir@
29 cups_datadir=@CUPS_DATADIR@
30 cups_serverbin=@CUPS_SERVERBIN@
31 cups_serverroot=@CUPS_SERVERROOT@
32 INSTALLSTATIC=@INSTALLSTATIC@
33
34 # flags for C++ compiler:
35 CFLAGS=""
36 LDFLAGS="@EXPORT_LDFLAGS@"
37 LIBS="@LIBGSSAPI@ @EXPORT_SSLLIBS@ @EXPORT_LIBZ@ @LIBS@"
38 IMGLIBS="@EXPORT_LIBTIFF@ @EXPORT_LIBJPEG@ @EXPORT_LIBPNG@"
39
40 # Check for local invocation...
41 selfdir=`dirname $0`
42
43 if test -f "$selfdir/cups/cups.h"; then
44 CFLAGS="-I$selfdir"
45 LDFLAGS="-L$selfdir/cups -L$selfdir/filter $LDFLAGS"
46 libdir="$selfdir/cups"
47 imagelibdir="$selfdir/filter"
48 if test ! -f "$selfdir/cups/raster.h"; then
49 ln -s ../filter/raster.h "$selfdir/cups"
50 fi
51 else
52 if test $includedir != /usr/include; then
53 CFLAGS="$CFLAGS -I$includedir"
54 fi
55
56 if test $libdir != /usr/lib -a $libdir != /usr/lib32 -a $libdir != /usr/lib64; then
57 LDFLAGS="$LDFLAGS -L$libdir"
58 fi
59 fi
60
61
62 usage ()
63 {
64 echo "Usage: cups-config --api-version"
65 echo " cups-config --cflags"
66 echo " cups-config --datadir"
67 echo " cups-config --help"
68 echo " cups-config --ldflags"
69 echo " cups-config [--image] [--static] --libs"
70 echo " cups-config --serverbin"
71 echo " cups-config --serverroot"
72 echo " cups-config --version"
73
74 exit $1
75 }
76
77 if test $# -eq 0; then
78 usage 1
79 fi
80
81 # Parse command line options
82 static=no
83 image=no
84
85 while test $# -gt 0; do
86 case $1 in
87 --api-version)
88 echo $APIVERSION
89 ;;
90 --cflags)
91 echo $CFLAGS
92 ;;
93 --datadir)
94 echo $cups_datadir
95 ;;
96 --help)
97 usage 0
98 ;;
99 --image)
100 image=yes
101 ;;
102 --ldflags)
103 echo $LDFLAGS
104 ;;
105 --libs)
106 if test $static = no; then
107 if test $image = no; then
108 echo -lcups $LIBS
109 else
110 echo -lcupsimage -lcups $IMGLIBS $LIBS
111 fi
112 else
113 if test $image = no; then
114 echo $libdir/libcups.a $LIBS
115 else
116 echo $imagelibdir/libcupsimage.a $libdir/libcups.a $IMGLIBS $LIBS
117 fi
118 fi
119 ;;
120 --serverbin)
121 echo $cups_serverbin
122 ;;
123 --serverroot)
124 echo $cups_serverroot
125 ;;
126 --static)
127 if test -z "$INSTALLSTATIC"; then
128 echo "WARNING: Static libraries not installed!" >&2
129 else
130 static=yes
131 fi
132 ;;
133 --version)
134 echo $VERSION
135 ;;
136 *)
137 usage 1
138 ;;
139 esac
140
141 shift
142 done
143
144 #
145 # End of "$Id: cups-config.in 6649 2007-07-11 21:46:42Z mike $".
146 #