]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-directories.m4
Load cups into easysw/current.
[thirdparty/cups.git] / config-scripts / cups-directories.m4
1 dnl
2 dnl "$Id: cups-directories.m4 5547 2006-05-19 12:44:29Z mike $"
3 dnl
4 dnl Directory stuff for the Common UNIX Printing System (CUPS).
5 dnl
6 dnl Copyright 1997-2006 by Easy Software Products, all rights reserved.
7 dnl
8 dnl These coded instructions, statements, and computer programs are the
9 dnl property of Easy Software Products and are protected by Federal
10 dnl copyright law. Distribution and use rights are outlined in the file
11 dnl "LICENSE.txt" which should have been included with this file. If this
12 dnl file is missing or damaged please contact Easy Software Products
13 dnl at:
14 dnl
15 dnl Attn: CUPS Licensing Information
16 dnl Easy Software Products
17 dnl 44141 Airport View Drive, Suite 204
18 dnl Hollywood, Maryland 20636 USA
19 dnl
20 dnl Voice: (301) 373-9600
21 dnl EMail: cups-info@cups.org
22 dnl WWW: http://www.cups.org
23 dnl
24
25 AC_PREFIX_DEFAULT(/)
26
27 dnl Fix "prefix" variable if it hasn't been specified...
28 if test "$prefix" = "NONE"; then
29 prefix="/"
30 fi
31
32 dnl Fix "exec_prefix" variable if it hasn't been specified...
33 if test "$exec_prefix" = "NONE"; then
34 if test "$prefix" = "/"; then
35 exec_prefix="/usr"
36 else
37 exec_prefix="$prefix"
38 fi
39 fi
40
41 dnl Fix "bindir" variable...
42 if test "$bindir" = "\${exec_prefix}/bin"; then
43 bindir="$exec_prefix/bin"
44 fi
45
46 AC_DEFINE_UNQUOTED(CUPS_BINDIR, "$bindir")
47
48 dnl Fix "sbindir" variable...
49 if test "$sbindir" = "\${exec_prefix}/sbin"; then
50 sbindir="$exec_prefix/sbin"
51 fi
52
53 AC_DEFINE_UNQUOTED(CUPS_SBINDIR, "$sbindir")
54
55 dnl Fix "sharedstatedir" variable if it hasn't been specified...
56 if test "$sharedstatedir" = "\${prefix}/com" -a "$prefix" = "/"; then
57 sharedstatedir="/usr/com"
58 fi
59
60 dnl Fix "datadir" variable if it hasn't been specified...
61 if test "$datadir" = "\${prefix}/share"; then
62 if test "$prefix" = "/"; then
63 datadir="/usr/share"
64 else
65 datadir="$prefix/share"
66 fi
67 fi
68
69 dnl Fix "includedir" variable if it hasn't been specified...
70 if test "$includedir" = "\${prefix}/include" -a "$prefix" = "/"; then
71 includedir="/usr/include"
72 fi
73
74 dnl Fix "localstatedir" variable if it hasn't been specified...
75 if test "$localstatedir" = "\${prefix}/var"; then
76 if test "$prefix" = "/"; then
77 if test "$uname" = Darwin; then
78 localstatedir="/private/var"
79 else
80 localstatedir="/var"
81 fi
82 else
83 localstatedir="$prefix/var"
84 fi
85 fi
86
87 dnl Fix "sysconfdir" variable if it hasn't been specified...
88 if test "$sysconfdir" = "\${prefix}/etc"; then
89 if test "$prefix" = "/"; then
90 if test "$uname" = Darwin; then
91 sysconfdir="/private/etc"
92 else
93 sysconfdir="/etc"
94 fi
95 else
96 sysconfdir="$prefix/etc"
97 fi
98 fi
99
100 dnl Fix "libdir" variable for IRIX 6.x...
101 if test "$libdir" = "\${exec_prefix}/lib"; then
102 if test "$uname" = "IRIX"; then
103 libdir="$exec_prefix/lib32"
104 else
105 if test "$uname" = Linux -a -d /usr/lib64; then
106 libdir="$exec_prefix/lib64"
107 else
108 libdir="$exec_prefix/lib"
109 fi
110 fi
111 fi
112
113 dnl Setup init.d locations...
114 AC_ARG_WITH(rcdir, [ --with-rcdir set path for rc scripts],rcdir="$withval",rcdir="")
115
116 if test x$rcdir = x; then
117 case "$uname" in
118 FreeBSD* | OpenBSD*)
119 # FreeBSD and OpenBSD
120 INITDIR=""
121 INITDDIR=""
122 ;;
123
124 NetBSD*)
125 # NetBSD
126 INITDIR=""
127 INITDDIR="/etc/rc.d"
128 ;;
129
130 Darwin*)
131 # Darwin and MacOS X...
132 INITDIR=""
133 if test -x /sbin/launchd; then
134 INITDDIR="/System/Library/LaunchDaemons"
135 else
136 INITDDIR="/System/Library/StartupItems/PrintingServices"
137 fi
138 ;;
139
140 Linux | GNU)
141 # Linux/HURD seems to choose an init.d directory at random...
142 if test -d /sbin/init.d; then
143 # SuSE
144 INITDIR="/sbin/init.d"
145 INITDDIR=".."
146 else
147 if test -d /etc/init.d; then
148 # Others
149 INITDIR="/etc"
150 INITDDIR="../init.d"
151 else
152 # RedHat
153 INITDIR="/etc/rc.d"
154 INITDDIR="../init.d"
155 fi
156 fi
157 ;;
158
159 OSF1* | HP-UX*)
160 INITDIR="/sbin"
161 INITDDIR="../init.d"
162 ;;
163
164 AIX*)
165 INITDIR="/etc/rc.d"
166 INITDDIR=".."
167 ;;
168
169 *)
170 INITDIR="/etc"
171 INITDDIR="../init.d"
172 ;;
173
174 esac
175 else
176 INITDIR=""
177 INITDDIR="$rcdir"
178 fi
179
180 AC_SUBST(INITDIR)
181 AC_SUBST(INITDDIR)
182
183 dnl Xinetd support...
184 XINETD=""
185 for dir in /private/etc/xinetd.d /etc/xinetd.d /usr/local/etc/xinetd.d; do
186 if test -d $dir; then
187 XINETD="$dir"
188 break
189 fi
190 done
191
192 AC_SUBST(XINETD)
193
194 dnl Setup default locations...
195 # Cache data...
196 AC_ARG_WITH(cachedir, [ --with-cachedir set path for cache files],cachedir="$withval",cachedir="")
197
198 if test x$cachedir = x; then
199 if test "x$uname" = xDarwin; then
200 CUPS_CACHEDIR="$localstatedir/tmp/cups"
201 else
202 CUPS_CACHEDIR="$localstatedir/cache/cups"
203 fi
204 else
205 CUPS_CACHEDIR="$cachedir"
206 fi
207 AC_DEFINE_UNQUOTED(CUPS_CACHEDIR, "$CUPS_CACHEDIR")
208 AC_SUBST(CUPS_CACHEDIR)
209
210 # Data files
211 CUPS_DATADIR="$datadir/cups"
212 AC_DEFINE_UNQUOTED(CUPS_DATADIR, "$datadir/cups")
213 AC_SUBST(CUPS_DATADIR)
214
215 # Documentation files
216 AC_ARG_WITH(docdir, [ --with-docdir set path for documentation],docdir="$withval",docdir="")
217
218 if test x$docdir = x; then
219 CUPS_DOCROOT="$datadir/doc/cups"
220 docdir="$datadir/doc/cups"
221 else
222 CUPS_DOCROOT="$docdir"
223 fi
224
225 AC_DEFINE_UNQUOTED(CUPS_DOCROOT, "$docdir")
226 AC_SUBST(CUPS_DOCROOT)
227
228 # Fonts
229 AC_ARG_WITH(fontpath, [ --with-fontpath set font path for pstoraster],fontpath="$withval",fontpath="")
230
231 if test "x$fontpath" = "x"; then
232 CUPS_FONTPATH="$datadir/cups/fonts"
233 else
234 CUPS_FONTPATH="$fontpath"
235 fi
236
237 AC_SUBST(CUPS_FONTPATH)
238 AC_DEFINE_UNQUOTED(CUPS_FONTPATH, "$CUPS_FONTPATH")
239
240 # Locale data
241 case "$uname" in
242 Linux | GNU | *BSD* | Darwin*)
243 CUPS_LOCALEDIR="$datadir/locale"
244 ;;
245
246 OSF1* | AIX*)
247 CUPS_LOCALEDIR="$exec_prefix/lib/nls/msg"
248 ;;
249
250 *)
251 # This is the standard System V location...
252 CUPS_LOCALEDIR="$exec_prefix/lib/locale"
253 ;;
254 esac
255
256 AC_DEFINE_UNQUOTED(CUPS_LOCALEDIR, "$CUPS_LOCALEDIR")
257 AC_SUBST(CUPS_LOCALEDIR)
258
259 # Log files...
260 AC_ARG_WITH(logdir, [ --with-logdir set path for log files],logdir="$withval",logdir="")
261
262 if test x$logdir = x; then
263 CUPS_LOGDIR="$localstatedir/log/cups"
264 AC_DEFINE_UNQUOTED(CUPS_LOGDIR, "$localstatedir/log/cups")
265 else
266 CUPS_LOGDIR="$logdir"
267 fi
268 AC_DEFINE_UNQUOTED(CUPS_LOGDIR, "$CUPS_LOGDIR")
269 AC_SUBST(CUPS_LOGDIR)
270
271 # Longer-term spool data
272 CUPS_REQUESTS="$localstatedir/spool/cups"
273 AC_DEFINE_UNQUOTED(CUPS_REQUESTS, "$localstatedir/spool/cups")
274 AC_SUBST(CUPS_REQUESTS)
275
276 # Server executables...
277 case "$uname" in
278 *BSD* | Darwin*)
279 # *BSD and Darwin (MacOS X)
280 INSTALL_SYSV=""
281 CUPS_SERVERBIN="$exec_prefix/libexec/cups"
282 ;;
283 *)
284 # All others
285 INSTALL_SYSV="install-sysv"
286 CUPS_SERVERBIN="$exec_prefix/lib/cups"
287 ;;
288 esac
289
290 AC_DEFINE_UNQUOTED(CUPS_SERVERBIN, "$CUPS_SERVERBIN")
291 AC_SUBST(CUPS_SERVERBIN)
292 AC_SUBST(INSTALL_SYSV)
293
294 # Configuration files
295 CUPS_SERVERROOT="$sysconfdir/cups"
296 AC_DEFINE_UNQUOTED(CUPS_SERVERROOT, "$sysconfdir/cups")
297 AC_SUBST(CUPS_SERVERROOT)
298
299 # Transient run-time state
300 CUPS_STATEDIR="$localstatedir/run/cups"
301 AC_DEFINE_UNQUOTED(CUPS_STATEDIR, "$localstatedir/run/cups")
302 AC_SUBST(CUPS_STATEDIR)
303
304 dnl
305 dnl End of "$Id: cups-directories.m4 5547 2006-05-19 12:44:29Z mike $".
306 dnl