]> git.ipfire.org Git - thirdparty/cups.git/blob - packaging/cups.spec.in
Fix up svn:keywords for all files.
[thirdparty/cups.git] / packaging / cups.spec.in
1 #
2 # "$Id$"
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/cupsd.conf.default
139 %dir /etc/cups/interfaces
140 %dir /etc/cups/ppd
141 %attr(0700,root,root) %dir /etc/cups/ssl
142
143 %if %{?_with_dbus:1}%{!?_with_dbus:0}
144 # DBUS
145 /etc/dbus-1/system.d/*
146 %endif
147
148 # PAM
149 %dir /etc/pam.d
150 /etc/pam.d/*
151
152 # RC dirs are a pain under Linux... Uncomment the appropriate ones if you
153 # don't use Red Hat or Mandrake...
154
155 /etc/init.d/*
156 /etc/rc0.d/*
157 /etc/rc2.d/*
158 /etc/rc3.d/*
159 /etc/rc5.d/*
160
161 # OLD RedHat/Mandrake
162 #/etc/rc.d/init.d/*
163 #/etc/rc.d/rc0.d/*
164 #/etc/rc.d/rc2.d/*
165 #/etc/rc.d/rc3.d/*
166 #/etc/rc.d/rc5.d/*
167
168 #/sbin/rc.d/*
169 #/sbin/rc.d/rc0.d/*
170 #/sbin/rc.d/rc2.d/*
171 #/sbin/rc.d/rc3.d/*
172 #/sbin/rc.d/rc5.d/*
173
174 /usr/bin/cancel
175 /usr/bin/cupstestdsc
176 /usr/bin/cupstestppd
177 /usr/bin/ipptool
178 /usr/bin/lp*
179 %dir /usr/lib/cups
180 %dir /usr/lib/cups/backend
181 %if %{?_with_dnssd:1}%{!?_with_dnssd:0}
182 # DNS-SD
183 /usr/lib/cups/backend/dnssd
184 %endif
185 /usr/lib/cups/backend/http
186 /usr/lib/cups/backend/https
187 %attr(0700,root,root) /usr/lib/cups/backend/ipp
188 /usr/lib/cups/backend/ipps
189 %attr(0700,root,root) /usr/lib/cups/backend/lpd
190 /usr/lib/cups/backend/snmp
191 /usr/lib/cups/backend/socket
192 /usr/lib/cups/backend/usb
193 %dir /usr/lib/cups/cgi-bin
194 /usr/lib/cups/cgi-bin/*
195 %dir /usr/lib/cups/daemon
196 /usr/lib/cups/daemon/cups-deviced
197 /usr/lib/cups/daemon/cups-driverd
198 /usr/lib/cups/daemon/cups-exec
199 %dir /usr/lib/cups/driver
200 %dir /usr/lib/cups/filter
201 /usr/lib/cups/filter/*
202 %dir /usr/lib/cups/monitor
203 /usr/lib/cups/monitor/*
204 %dir /usr/lib/cups/notifier
205 /usr/lib/cups/notifier/*
206
207 /usr/sbin/*
208 %dir /usr/share/cups
209 %dir /usr/share/cups/banners
210 /usr/share/cups/banners/*
211 %dir /usr/share/cups/data
212 /usr/share/cups/data/*
213 %dir /usr/share/cups/drv
214 /usr/share/cups/drv/*
215 %dir /usr/share/cups/ipptool
216 /usr/share/cups/ipptool/*
217 %dir /usr/share/cups/mime
218 /usr/share/cups/mime/*
219 %dir /usr/share/cups/model
220 %dir /usr/share/cups/ppdc
221 /usr/share/cups/ppdc/*
222 %dir /usr/share/cups/templates
223 /usr/share/cups/templates/*
224 %dir /usr/share/doc/cups
225 /usr/share/doc/cups/*.*
226 %dir /usr/share/doc/cups/help
227 /usr/share/doc/cups/help/accounting.html
228 /usr/share/doc/cups/help/cgi.html
229 /usr/share/doc/cups/help/glossary.html
230 /usr/share/doc/cups/help/kerberos.html
231 /usr/share/doc/cups/help/license.html
232 /usr/share/doc/cups/help/man-*.html
233 /usr/share/doc/cups/help/network.html
234 /usr/share/doc/cups/help/options.html
235 /usr/share/doc/cups/help/overview.html
236 /usr/share/doc/cups/help/policies.html
237 /usr/share/doc/cups/help/ref-*.html
238 /usr/share/doc/cups/help/security.html
239 /usr/share/doc/cups/help/sharing.html
240 /usr/share/doc/cups/help/standard.html
241 /usr/share/doc/cups/help/translation.html
242 /usr/share/doc/cups/help/whatsnew.html
243 %dir /usr/share/doc/cups/images
244 /usr/share/doc/cups/images/*
245
246 %dir /usr/share/doc/cups/ca
247 /usr/share/doc/cups/ca/*
248 %dir /usr/share/doc/cups/cs
249 /usr/share/doc/cups/cs/*
250 %dir /usr/share/doc/cups/es
251 /usr/share/doc/cups/es/*
252 %dir /usr/share/doc/cups/fr
253 /usr/share/doc/cups/fr/*
254 %dir /usr/share/doc/cups/ja
255 /usr/share/doc/cups/ja/*
256 %dir /usr/share/doc/cups/ru
257 /usr/share/doc/cups/ru/*
258
259 %dir /usr/share/locale/ca
260 /usr/share/locale/ca/cups_ca.po
261 %dir /usr/share/locale/cs
262 /usr/share/locale/cs/cups_cs.po
263 %dir /usr/share/locale/es
264 /usr/share/locale/es/cups_es.po
265 %dir /usr/share/locale/fr
266 /usr/share/locale/fr/cups_fr.po
267 %dir /usr/share/locale/ja
268 /usr/share/locale/ja/cups_ja.po
269 %dir /usr/share/locale/ru
270 /usr/share/locale/ru/cups_ru.po
271
272 %dir /usr/share/man/man1
273 /usr/share/man/man1/cancel.1.gz
274 /usr/share/man/man1/cupstestdsc.1.gz
275 /usr/share/man/man1/cupstestppd.1.gz
276 /usr/share/man/man1/ipptool.1.gz
277 /usr/share/man/man1/lp.1.gz
278 /usr/share/man/man1/lpoptions.1.gz
279 /usr/share/man/man1/lppasswd.1.gz
280 /usr/share/man/man1/lpq.1.gz
281 /usr/share/man/man1/lpr.1.gz
282 /usr/share/man/man1/lprm.1.gz
283 /usr/share/man/man1/lpstat.1.gz
284 %dir /usr/share/man/man5
285 /usr/share/man/man5/*.conf.5.gz
286 /usr/share/man/man5/ipptoolfile.5.gz
287 /usr/share/man/man5/mime.*.5.gz
288 %dir /usr/share/man/man8
289 /usr/share/man/man8/accept.8.gz
290 /usr/share/man/man8/cupsaddsmb.8.gz
291 /usr/share/man/man8/cupsaccept.8.gz
292 /usr/share/man/man8/cupsctl.8.gz
293 /usr/share/man/man8/cupsfilter.8.gz
294 /usr/share/man/man8/cupsd.8.gz
295 /usr/share/man/man8/cupsdisable.8.gz
296 /usr/share/man/man8/cupsenable.8.gz
297 /usr/share/man/man8/cupsreject.8.gz
298 /usr/share/man/man8/cups-deviced.8.gz
299 /usr/share/man/man8/cups-driverd.8.gz
300 /usr/share/man/man8/cups-snmp.8.gz
301 /usr/share/man/man8/lpadmin.8.gz
302 /usr/share/man/man8/lpc.8.gz
303 /usr/share/man/man8/lpinfo.8.gz
304 /usr/share/man/man8/lpmove.8.gz
305 /usr/share/man/man8/reject.8.gz
306
307 %dir /var/cache/cups
308 %attr(0775,root,sys) %dir /var/cache/cups/rss
309 %dir /var/log/cups
310 %dir /var/run/cups
311 %attr(0711,lp,sys) %dir /var/run/cups/certs
312 %attr(0710,lp,sys) %dir /var/spool/cups
313 %attr(1770,lp,sys) %dir /var/spool/cups/tmp
314
315 # Desktop files
316 /usr/share/applications/*
317 /usr/share/icons/*
318
319 %files devel
320 %defattr(-,root,root)
321 %dir /usr/share/cups/examples
322 /usr/share/cups/examples/*
323 %dir /usr/share/man/man1
324 /usr/share/man/man1/cups-config.1.gz
325 /usr/share/man/man1/ppd*.1.gz
326 %dir /usr/share/man/man5
327 /usr/share/man/man5/ppdcfile.5.gz
328 /usr/share/man/man7/backend.7.gz
329 /usr/share/man/man7/filter.7.gz
330 /usr/share/man/man7/notifier.7.gz
331
332 /usr/bin/cups-config
333 /usr/bin/ppd*
334 %dir /usr/include/cups
335 /usr/include/cups/*
336 /usr/lib*/*.so
337
338 %if %{?_with_static:1}%{!?_with_static:0}
339 /usr/lib*/*.a
340 %endif
341
342 %dir /usr/share/doc/cups/help
343 /usr/share/doc/cups/help/api*.html
344 /usr/share/doc/cups/help/postscript-driver.html
345 /usr/share/doc/cups/help/ppd-compiler.html
346 /usr/share/doc/cups/help/raster-driver.html
347 /usr/share/doc/cups/help/spec*.html
348
349 %files libs
350 %defattr(-,root,root)
351 /usr/lib*/*.so.*
352
353 %files lpd
354 %defattr(-,root,root)
355 /etc/xinetd.d/cups-lpd
356 %dir /usr/lib/cups
357 %dir /usr/lib/cups/daemon
358 /usr/lib/cups/daemon/cups-lpd
359 %dir /usr/share/man/man8
360 /usr/share/man/man8/cups-lpd.8.gz
361
362
363 #
364 # End of "$Id$".
365 #