]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - packaging/cups.spec.in
More svn:properties changes.
[thirdparty/cups.git] / packaging / cups.spec.in
index 21cbb1fe8523f0d46328e3fd0d4a3fd15acda201..fd5d95567a2c3df84b68504be39004449df074e4 100644 (file)
@@ -1,5 +1,5 @@
 #
-# "$Id: cups.spec 4787 2005-10-13 20:13:21Z mike $"
+# "$Id$"
 #
 #   RPM "spec" file for the Common UNIX Printing System (CUPS).
 #
 #         WWW: http://www.cups.org
 #
 
-Summary: Common Unix Printing System
+# Conditional build options (--with name/--without name):
+#
+#   dbus     - Enable/disable DBUS support (default = enable)
+#   php      - Enable/disable PHP support (default = enable)
+
+%{!?_with_dbus: %{!?_without_dbus: %define _with_dbus --with-dbus}}
+%{?_with_dbus: %define _dbus --enable-dbus}
+%{!?_with_dbus: %define _dbus --disable-dbus}
+
+%{!?_with_php: %{!?_without_php: %define _with_php --with-php}}
+%{?_with_php: %define _php --with-php}
+%{!?_with_php: %define _php --without-php}
+
+%{!?_with_static: %{!?_without_static: %define _without_static --without-static}}
+%{?_with_static: %define _static --enable-static}
+%{!?_with_static: %define _static --disable-static}
+
+Summary: Common UNIX Printing System
 Name: cups
 Version: @CUPS_VERSION@
 Release: 0
@@ -45,20 +62,47 @@ Obsoletes: lpd, lpr, LPRng
 Provides: lpd, lpr, LPRng
 
 %package devel
-Summary: Common Unix Printing System - development environment
+Summary: Common UNIX Printing System - development environment
 Group: Development/Libraries
 Requires: %{name}-libs = %{epoch}:%{version}
 
 %package libs
-Summary: Common Unix Printing System - shared libraries
+Summary: Common UNIX Printing System - shared libraries
 Group: System Environment/Libraries
 Provides: libcups1
 
 %package lpd
-Summary: Common Unix Printing System - LPD support
+Summary: Common UNIX Printing System - LPD support
 Group: System Environment/Daemons
 Requires: %{name} = %{epoch}:%{version} xinetd
 
+%package es
+Summary: Common UNIX Printing System - Spanish support
+Group: System Environment/Daemons
+Requires: %{name} = %{epoch}:%{version}
+
+%package ja
+Summary: Common UNIX Printing System - Japanese support
+Group: System Environment/Daemons
+Requires: %{name} = %{epoch}:%{version}
+
+%package pl
+Summary: Common UNIX Printing System - Polish support
+Group: System Environment/Daemons
+Requires: %{name} = %{epoch}:%{version}
+
+%package sv
+Summary: Common UNIX Printing System - Swedish support
+Group: System Environment/Daemons
+Requires: %{name} = %{epoch}:%{version}
+
+%if %{?_with_php:1}%{!?_with_php:0}
+%package php
+Summary: Common UNIX Printing System - PHP support
+Group: Development/Languages
+Requires: %{name}-libs = %{epoch}:%{version}
+%endif
+
 %description
 The Common UNIX Printing System provides a portable printing layer for 
 UNIX® operating systems. It has been developed by Easy Software Products 
@@ -78,12 +122,38 @@ UNIX
 The Common UNIX Printing System provides a portable printing layer for 
 UNIX® operating systems. This package provides LPD client support.
 
+%description es
+The Common UNIX Printing System provides a portable printing layer for 
+UNIX® operating systems. This package provides Spanish support.
+
+%description ja
+The Common UNIX Printing System provides a portable printing layer for 
+UNIX® operating systems. This package provides Japanese support.
+
+%description pl
+The Common UNIX Printing System provides a portable printing layer for 
+UNIX® operating systems. This package provides Polish support.
+
+%description sv
+The Common UNIX Printing System provides a portable printing layer for 
+UNIX® operating systems. This package provides Swedish support.
+
+%if %{?_with_php:1}%{!?_with_php:0}
+%description php
+The Common UNIX Printing System provides a portable printing layer for 
+UNIX® operating systems. This package provides PHP support.
+%endif
+
 %prep
 %setup
 
 %build
-CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" ./configure
-
+%ifarch x86_64
+./configure --enable-32bit %{_dbus} %{_php} %{_static}
+%else
+CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" \
+    ./configure %{_dbus} %{_php} %{_static}
+%endif
 # If we got this far, all prerequisite libraries must be here.
 make
 
@@ -94,44 +164,38 @@ rm -rf $RPM_BUILD_ROOT
 make BUILDROOT=$RPM_BUILD_ROOT install
 
 %post
-ldconfig
+/sbin/chkconfig --add cups
+/sbin/chkconfig cups on
 
-if test -x /sbin/chkconfig; then
-       /sbin/chkconfig --add cups
-       /sbin/chkconfig cups on
+# Restart cupsd if we are upgrading...
+if test $1 -gt 1; then
+       /sbin/service cups stop
+       /sbin/service cups start
 fi
 
-# these lines automatically start cupsd after installation; commented out
-# by request...
-#if test -f /sbin/init.d/cups; then
-#      /sbin/init.d/cups start
-#fi
-#if test -f /etc/rc.d/init.d/cups; then
-#      /etc/rc.d/init.d/cups start
-#fi
-#if test -f /etc/init.d/cups; then
-#      /etc/init.d/cups start
-#fi
+%post libs
+/sbin/ldconfig
 
 %preun
-if test -f /sbin/init.d/cups; then
-       /sbin/init.d/cups stop
-fi
-if test -f /etc/rc.d/init.d/cups; then
-       /etc/rc.d/init.d/cups stop
-fi
-if test -f /etc/init.d/cups; then
-       /etc/init.d/cups stop
+if test $1 = 0; then
+       /sbin/service cups stop
+       /sbin/chkconfig --del cups
 fi
 
-if test -x /sbin/chkconfig; then
-       /sbin/chkconfig --del cups
+%postun
+if test $1 -ge 1; then
+       /sbin/service cups stop
+       /sbin/service cups start
 fi
 
+%postun libs
+/sbin/ldconfig
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
+%docdir /usr/share/doc/cups
 %defattr(-,root,root)
 %dir /etc/cups
 %config(noreplace) /etc/cups/*.conf
@@ -140,6 +204,13 @@ rm -rf $RPM_BUILD_ROOT
 /etc/cups/mime.types
 /etc/cups/mime.convs
 %dir /etc/cups/ppd
+
+%if %{?_with_dbus:1}%{!?_with_dbus:0}
+# DBUS
+/etc/dbus-1/system.d/*
+%endif
+
+# PAM
 %dir /etc/pam.d
 /etc/pam.d/*
 
@@ -166,11 +237,20 @@ rm -rf $RPM_BUILD_ROOT
 #/sbin/rc.d/rc5.d/*
 
 /usr/bin/cancel
+/usr/bin/cupstestdsc
 /usr/bin/cupstestppd
 /usr/bin/lp*
 %dir /usr/lib/cups
 %dir /usr/lib/cups/backend
-/usr/lib/cups/backend/*
+/usr/lib/cups/backend/http
+/usr/lib/cups/backend/ipp
+%attr(0700,root,root) /usr/lib/cups/backend/lpd
+/usr/lib/cups/backend/parallel
+/usr/lib/cups/backend/scsi
+/usr/lib/cups/backend/serial
+/usr/lib/cups/backend/snmp
+/usr/lib/cups/backend/socket
+/usr/lib/cups/backend/usb
 %dir /usr/lib/cups/cgi-bin
 /usr/lib/cups/cgi-bin/*
 %dir /usr/lib/cups/daemon
@@ -180,28 +260,48 @@ rm -rf $RPM_BUILD_ROOT
 %dir /usr/lib/cups/driver
 %dir /usr/lib/cups/filter
 /usr/lib/cups/filter/*
+%dir /usr/lib/cups/monitor
+/usr/lib/cups/monitor/*
 %dir /usr/lib/cups/notifier
 /usr/lib/cups/notifier/*
 
 /usr/sbin/*
 %dir /usr/share/cups
-/usr/share/cups/*
+%dir /usr/share/cups/banners
+/usr/share/cups/banners/*
+%dir /usr/share/cups/charmaps
+/usr/share/cups/charmaps/*
+%dir /usr/share/cups/charsets
+/usr/share/cups/charsets/*
+%dir /usr/share/cups/data
+/usr/share/cups/data/*
+%dir /usr/share/cups/fonts
+/usr/share/cups/fonts/*
+%dir /usr/share/cups/model
+/usr/share/cups/model/*
+%dir /usr/share/cups/templates
+/usr/share/cups/templates/*.tmpl
 %dir /usr/share/doc/cups
 /usr/share/doc/cups/*.*
 %dir /usr/share/doc/cups/help
-/usr/share/doc/cups/help/*-reference.html
+/usr/share/doc/cups/help/cgi.html
+/usr/share/doc/cups/help/glossary.html
+/usr/share/doc/cups/help/license.html
 /usr/share/doc/cups/help/man-*.html
 /usr/share/doc/cups/help/network.html
+/usr/share/doc/cups/help/options.html
 /usr/share/doc/cups/help/overview.html
+/usr/share/doc/cups/help/ref-*.html
+/usr/share/doc/cups/help/security.html
 /usr/share/doc/cups/help/standard.html
+/usr/share/doc/cups/help/translation.html
 /usr/share/doc/cups/help/whatsnew.html
 %dir /usr/share/doc/cups/images
 /usr/share/doc/cups/images/*
-%dir /usr/share/locale
-/usr/share/locale/*
 
 %dir /usr/share/man/man1
 /usr/share/man/man1/cancel.1.gz
+/usr/share/man/man1/cupstestdsc.1.gz
 /usr/share/man/man1/cupstestppd.1.gz
 /usr/share/man/man1/lp.1.gz
 /usr/share/man/man1/lpoptions.1.gz
@@ -218,6 +318,8 @@ rm -rf $RPM_BUILD_ROOT
 /usr/share/man/man8/cupsd.8.gz
 /usr/share/man/man8/cupsdisable.8.gz
 /usr/share/man/man8/cupsenable.8.gz
+/usr/share/man/man8/cups-deviced.8.gz
+/usr/share/man/man8/cups-driverd.8.gz
 /usr/share/man/man8/cups-polld.8.gz
 /usr/share/man/man8/lpadmin.8.gz
 /usr/share/man/man8/lpc.8.gz
@@ -226,25 +328,31 @@ rm -rf $RPM_BUILD_ROOT
 /usr/share/man/man8/reject.8.gz
 
 %dir /var/cache/cups
-%dir /var/cache/cups/ppd
 %dir /var/log/cups
 %dir /var/run/cups
-%attr(0711,lp,root) %dir /var/run/cups/certs
-%attr(0700,lp,root) %dir /var/spool/cups
-%attr(1700,lp,root) %dir /var/spool/cups/tmp
+%attr(0711,lp,sys) %dir /var/run/cups/certs
+%attr(0710,lp,sys) %dir /var/spool/cups
+%attr(1770,lp,sys) %dir /var/spool/cups/tmp
+
+# Desktop files
+/usr/share/applications/*
+/usr/share/icons/*
 
 %files devel
 %defattr(-,root,root)
 %dir /usr/share/man/man1
-/usr/share/man/man1/backend.1.gz
 /usr/share/man/man1/cups-config.1.gz
-/usr/share/man/man1/filter.1.gz
+%dir /usr/share/man/man7
+/usr/share/man/man7/*
 
 /usr/bin/cups-config
 %dir /usr/include/cups
 /usr/include/cups/*
-/usr/lib/*.a
-/usr/lib/*.so
+/usr/lib*/*.so
+
+%if %{?_with_static:1}%{!?_with_static:0}
+/usr/lib*/*.a
+%endif
 
 %dir /usr/share/doc/cups/help
 /usr/share/doc/cups/help/api*.html
@@ -252,17 +360,64 @@ rm -rf $RPM_BUILD_ROOT
 
 %files libs
 %defattr(-,root,root)
-/usr/lib/*.so.*
+/usr/lib*/*.so.*
 
 %files lpd
 %defattr(-,root,root)
-#/etc/xinetd.d/cups-lpd
+/etc/xinetd.d/cups-lpd
 %dir /usr/lib/cups
 %dir /usr/lib/cups/daemon
 /usr/lib/cups/daemon/cups-lpd
 %dir /usr/share/man/man8
 /usr/share/man/man8/cups-lpd.8.gz
 
+%files es
+%defattr(-,root,root)
+%dir /usr/share/doc/cups/es
+/usr/share/doc/cups/es/index.html
+%dir /usr/share/doc/cups/es/images
+/usr/share/doc/cups/es/images/*
+%dir /usr/share/cups/templates/es
+/usr/share/cups/templates/es/*
+/usr/share/locale/es/cups_es.po
+
+%files ja
+%defattr(-,root,root)
+%dir /usr/share/doc/cups/ja
+/usr/share/doc/cups/ja/index.html
+%dir /usr/share/doc/cups/ja/images
+/usr/share/doc/cups/ja/images/*
+%dir /usr/share/cups/templates/ja
+/usr/share/cups/templates/ja/*
+/usr/share/locale/ja/cups_ja.po
+
+%files pl
+%defattr(-,root,root)
+%dir /usr/share/doc/cups/pl
+/usr/share/doc/cups/pl/index.html
+%dir /usr/share/doc/cups/pl/images
+/usr/share/doc/cups/pl/images/*
+%dir /usr/share/cups/templates/pl
+/usr/share/cups/templates/pl/*
+#/usr/share/locale/pl/cups_pl.po
+
+%files sv
+%defattr(-,root,root)
+%dir /usr/share/doc/cups/sv
+/usr/share/doc/cups/sv/index.html
+%dir /usr/share/doc/cups/sv/images
+/usr/share/doc/cups/sv/images/*
+%dir /usr/share/cups/templates/sv
+/usr/share/cups/templates/sv/*
+/usr/share/locale/sv/cups_sv.po
+
+%if %{?_with_php:1}%{!?_with_php:0}
+%files php
+# PHP
+/usr/lib*/php*
+%endif
+
+
 #
-# End of "$Id: cups.spec 4787 2005-10-13 20:13:21Z mike $".
+# End of "$Id$".
 #