]> git.ipfire.org Git - thirdparty/cups.git/blob - packaging/cups.spec.in
Merge changes from CUPS 1.7svn-r10710.
[thirdparty/cups.git] / packaging / cups.spec.in
1 #
2 # "$Id: cups.spec.in 7718 2008-07-10 23:04:22Z mike $"
3 #
4 # RPM "spec" file for CUPS.
5 #
6 # Original version by Jason McMullan <jmcc@ontv.com>.
7 #
8 # Copyright 2007-2012 by Apple Inc.
9 # Copyright 1999-2007 by Easy Software Products, all rights reserved.
10 #
11 # These coded instructions, statements, and computer programs are the
12 # property of Apple Inc. and are protected by Federal copyright
13 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
14 # which should have been included with this file. If this file is
15 # file is missing or damaged, see the license at "http://www.cups.org/".
16 #
17
18 # Conditional build options (--with name/--without name):
19 #
20 # dbus - Enable/disable DBUS support (default = enable)
21 # dnssd - Enable/disable DNS-SD support (default = enable)
22 # static - Enable/disable static libraries (default = enable)
23
24 %{!?_with_dbus: %{!?_without_dbus: %define _with_dbus --with-dbus}}
25 %{?_with_dbus: %define _dbus --enable-dbus}
26 %{!?_with_dbus: %define _dbus --disable-dbus}
27
28 %{!?_with_dnssd: %{!?_without_dnssd: %define _with_dnssd --with-dnssd}}
29 %{?_with_dnssd: %define _dnssd --enable-dnssd}
30 %{!?_with_dnssd: %define _dnssd --disable-dnssd}
31
32 %{!?_with_static: %{!?_without_static: %define _without_static --without-static}}
33 %{?_with_static: %define _static --enable-static}
34 %{!?_with_static: %define _static --disable-static}
35
36 Summary: CUPS
37 Name: cups
38 Version: @CUPS_VERSION@
39 Release: 0
40 Epoch: 1
41 License: GPL
42 Group: System Environment/Daemons
43 Source: http://ftp.cups.org/pub/cups/%{version}/cups-%{version}-source.tar.bz2
44 Url: http://www.cups.org
45 Packager: Anonymous <anonymous@foo.com>
46 Vendor: Apple Inc.
47
48 # Use buildroot so as not to disturb the version already installed
49 BuildRoot: /tmp/%{name}-root
50
51 # Dependencies...
52 Requires: %{name}-libs = %{epoch}:%{version}
53 Obsoletes: lpd, lpr, LPRng
54 Provides: lpd, lpr, LPRng
55 Obsoletes: cups-da, cups-de, cups-es, cups-et, cups-fi, cups-fr, cups-he
56 Obsoletes: cups-id, cups-it, cups-ja, cups-ko, cups-nl, cups-no, cups-pl
57 Obsoletes: cups-pt, cups-ru, cups-sv, cups-zh
58
59 %package devel
60 Summary: CUPS - development environment
61 Group: Development/Libraries
62 Requires: %{name}-libs = %{epoch}:%{version}
63
64 %package libs
65 Summary: CUPS - shared libraries
66 Group: System Environment/Libraries
67 Provides: libcups1
68
69 %package lpd
70 Summary: CUPS - LPD support
71 Group: System Environment/Daemons
72 Requires: %{name} = %{epoch}:%{version} xinetd
73
74 %description
75 CUPS is the standards-based, open source printing system developed by
76 Apple Inc. for OS X and other UNIX®-like operating systems.
77
78 %description devel
79 This package provides the CUPS headers and development environment.
80
81 %description libs
82 This package provides the CUPS shared libraries.
83
84 %description lpd
85 This package provides LPD client support.
86
87 %prep
88 %setup
89
90 %build
91 CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" \
92 ./configure %{_dbus} %{_dnssd} %{_static}
93 # If we got this far, all prerequisite libraries must be here.
94 make
95
96 %install
97 # Make sure the RPM_BUILD_ROOT directory exists.
98 rm -rf $RPM_BUILD_ROOT
99
100 make BUILDROOT=$RPM_BUILD_ROOT install
101
102 %post
103 /sbin/chkconfig --add cups
104 /sbin/chkconfig cups on
105
106 # Restart cupsd if we are upgrading...
107 if test $1 -gt 1; then
108 /sbin/service cups stop
109 /sbin/service cups start
110 fi
111
112 %post libs
113 /sbin/ldconfig
114
115 %preun
116 if test $1 = 0; then
117 /sbin/service cups stop
118 /sbin/chkconfig --del cups
119 fi
120
121 %postun
122 if test $1 -ge 1; then
123 /sbin/service cups stop
124 /sbin/service cups start
125 fi
126
127 %postun libs
128 /sbin/ldconfig
129
130 %clean
131 rm -rf $RPM_BUILD_ROOT
132
133 %files
134 %docdir /usr/share/doc/cups
135 %defattr(-,root,root)
136 %dir /etc/cups
137 %config(noreplace) /etc/cups/*.conf
138 /etc/cups/cups-files.conf.default
139 /etc/cups/cupsd.conf.default
140 %dir /etc/cups/interfaces
141 %dir /etc/cups/ppd
142 %attr(0700,root,root) %dir /etc/cups/ssl
143
144 %if %{?_with_dbus:1}%{!?_with_dbus:0}
145 # DBUS
146 /etc/dbus-1/system.d/*
147 %endif
148
149 # PAM
150 %dir /etc/pam.d
151 /etc/pam.d/*
152
153 # RC dirs are a pain under Linux... Uncomment the appropriate ones if you
154 # don't use Red Hat or Mandrake...
155
156 /etc/init.d/*
157 /etc/rc0.d/*
158 /etc/rc2.d/*
159 /etc/rc3.d/*
160 /etc/rc5.d/*
161
162 # OLD RedHat/Mandrake
163 #/etc/rc.d/init.d/*
164 #/etc/rc.d/rc0.d/*
165 #/etc/rc.d/rc2.d/*
166 #/etc/rc.d/rc3.d/*
167 #/etc/rc.d/rc5.d/*
168
169 #/sbin/rc.d/*
170 #/sbin/rc.d/rc0.d/*
171 #/sbin/rc.d/rc2.d/*
172 #/sbin/rc.d/rc3.d/*
173 #/sbin/rc.d/rc5.d/*
174
175 /usr/bin/cancel
176 /usr/bin/cupstestdsc
177 /usr/bin/cupstestppd
178 /usr/bin/ipptool
179 /usr/bin/lp*
180 %dir /usr/lib/cups
181 %dir /usr/lib/cups/backend
182 %if %{?_with_dnssd:1}%{!?_with_dnssd:0}
183 # DNS-SD
184 /usr/lib/cups/backend/dnssd
185 %endif
186 /usr/lib/cups/backend/http
187 /usr/lib/cups/backend/https
188 %attr(0700,root,root) /usr/lib/cups/backend/ipp
189 /usr/lib/cups/backend/ipps
190 %attr(0700,root,root) /usr/lib/cups/backend/lpd
191 /usr/lib/cups/backend/snmp
192 /usr/lib/cups/backend/socket
193 /usr/lib/cups/backend/usb
194 %dir /usr/lib/cups/cgi-bin
195 /usr/lib/cups/cgi-bin/*
196 %dir /usr/lib/cups/daemon
197 /usr/lib/cups/daemon/cups-deviced
198 /usr/lib/cups/daemon/cups-driverd
199 /usr/lib/cups/daemon/cups-exec
200 %dir /usr/lib/cups/driver
201 %dir /usr/lib/cups/filter
202 /usr/lib/cups/filter/*
203 %dir /usr/lib/cups/monitor
204 /usr/lib/cups/monitor/*
205 %dir /usr/lib/cups/notifier
206 /usr/lib/cups/notifier/*
207
208 /usr/sbin/*
209 %dir /usr/share/cups
210 %dir /usr/share/cups/banners
211 /usr/share/cups/banners/*
212 %dir /usr/share/cups/data
213 /usr/share/cups/data/*
214 %dir /usr/share/cups/drv
215 /usr/share/cups/drv/*
216 %dir /usr/share/cups/ipptool
217 /usr/share/cups/ipptool/*
218 %dir /usr/share/cups/mime
219 /usr/share/cups/mime/*
220 %dir /usr/share/cups/model
221 %dir /usr/share/cups/ppdc
222 /usr/share/cups/ppdc/*
223 %dir /usr/share/cups/templates
224 /usr/share/cups/templates/*
225 %dir /usr/share/doc/cups
226 /usr/share/doc/cups/*.*
227 %dir /usr/share/doc/cups/help
228 /usr/share/doc/cups/help/accounting.html
229 /usr/share/doc/cups/help/cgi.html
230 /usr/share/doc/cups/help/glossary.html
231 /usr/share/doc/cups/help/kerberos.html
232 /usr/share/doc/cups/help/license.html
233 /usr/share/doc/cups/help/man-*.html
234 /usr/share/doc/cups/help/network.html
235 /usr/share/doc/cups/help/options.html
236 /usr/share/doc/cups/help/overview.html
237 /usr/share/doc/cups/help/policies.html
238 /usr/share/doc/cups/help/ref-*.html
239 /usr/share/doc/cups/help/security.html
240 /usr/share/doc/cups/help/sharing.html
241 /usr/share/doc/cups/help/standard.html
242 /usr/share/doc/cups/help/translation.html
243 /usr/share/doc/cups/help/whatsnew.html
244 %dir /usr/share/doc/cups/images
245 /usr/share/doc/cups/images/*
246
247 %dir /usr/share/doc/cups/ca
248 /usr/share/doc/cups/ca/*
249 %dir /usr/share/doc/cups/es
250 /usr/share/doc/cups/es/*
251 %dir /usr/share/doc/cups/ja
252 /usr/share/doc/cups/ja/*
253
254 %dir /usr/share/locale/ca
255 /usr/share/locale/ca/cups_ca.po
256 %dir /usr/share/locale/es
257 /usr/share/locale/es/cups_es.po
258 %dir /usr/share/locale/ja
259 /usr/share/locale/ja/cups_ja.po
260
261 %dir /usr/share/man/man1
262 /usr/share/man/man1/cancel.1.gz
263 /usr/share/man/man1/cupstestdsc.1.gz
264 /usr/share/man/man1/cupstestppd.1.gz
265 /usr/share/man/man1/ipptool.1.gz
266 /usr/share/man/man1/lp.1.gz
267 /usr/share/man/man1/lpoptions.1.gz
268 /usr/share/man/man1/lppasswd.1.gz
269 /usr/share/man/man1/lpq.1.gz
270 /usr/share/man/man1/lpr.1.gz
271 /usr/share/man/man1/lprm.1.gz
272 /usr/share/man/man1/lpstat.1.gz
273 %dir /usr/share/man/man5
274 /usr/share/man/man5/*.conf.5.gz
275 /usr/share/man/man5/ipptoolfile.5.gz
276 /usr/share/man/man5/mime.*.5.gz
277 %dir /usr/share/man/man8
278 /usr/share/man/man8/accept.8.gz
279 /usr/share/man/man8/cupsaddsmb.8.gz
280 /usr/share/man/man8/cupsaccept.8.gz
281 /usr/share/man/man8/cupsctl.8.gz
282 /usr/share/man/man8/cupsfilter.8.gz
283 /usr/share/man/man8/cupsd.8.gz
284 /usr/share/man/man8/cupsdisable.8.gz
285 /usr/share/man/man8/cupsenable.8.gz
286 /usr/share/man/man8/cupsreject.8.gz
287 /usr/share/man/man8/cups-deviced.8.gz
288 /usr/share/man/man8/cups-driverd.8.gz
289 /usr/share/man/man8/cups-snmp.8.gz
290 /usr/share/man/man8/lpadmin.8.gz
291 /usr/share/man/man8/lpc.8.gz
292 /usr/share/man/man8/lpinfo.8.gz
293 /usr/share/man/man8/lpmove.8.gz
294 /usr/share/man/man8/reject.8.gz
295
296 %dir /var/cache/cups
297 %attr(0775,root,sys) %dir /var/cache/cups/rss
298 %dir /var/log/cups
299 %dir /var/run/cups
300 %attr(0711,lp,sys) %dir /var/run/cups/certs
301 %attr(0710,lp,sys) %dir /var/spool/cups
302 %attr(1770,lp,sys) %dir /var/spool/cups/tmp
303
304 # Desktop files
305 /usr/share/applications/*
306 /usr/share/icons/*
307
308 %files devel
309 %defattr(-,root,root)
310 %dir /usr/share/cups/examples
311 /usr/share/cups/examples/*
312 %dir /usr/share/man/man1
313 /usr/share/man/man1/cups-config.1.gz
314 /usr/share/man/man1/ppd*.1.gz
315 %dir /usr/share/man/man5
316 /usr/share/man/man5/ppdcfile.5.gz
317 /usr/share/man/man7/backend.7.gz
318 /usr/share/man/man7/filter.7.gz
319 /usr/share/man/man7/notifier.7.gz
320
321 /usr/bin/cups-config
322 /usr/bin/ppd*
323 %dir /usr/include/cups
324 /usr/include/cups/*
325 /usr/lib*/*.so
326
327 %if %{?_with_static:1}%{!?_with_static:0}
328 /usr/lib*/*.a
329 %endif
330
331 %dir /usr/share/doc/cups/help
332 /usr/share/doc/cups/help/api*.html
333 /usr/share/doc/cups/help/postscript-driver.html
334 /usr/share/doc/cups/help/ppd-compiler.html
335 /usr/share/doc/cups/help/raster-driver.html
336 /usr/share/doc/cups/help/spec*.html
337
338 %files libs
339 %defattr(-,root,root)
340 /usr/lib*/*.so.*
341
342 %files lpd
343 %defattr(-,root,root)
344 /etc/xinetd.d/cups-lpd
345 %dir /usr/lib/cups
346 %dir /usr/lib/cups/daemon
347 /usr/lib/cups/daemon/cups-lpd
348 %dir /usr/share/man/man8
349 /usr/share/man/man8/cups-lpd.8.gz
350
351
352 #
353 # End of "$Id: cups.spec.in 7718 2008-07-10 23:04:22Z mike $".
354 #