Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:12.2:ARM
gutenprint
gutenprint.spec
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File gutenprint.spec of Package gutenprint
# # spec file for package gutenprint # # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild Name: gutenprint Url: http://gutenprint.sourceforge.net Version: 5.2.7 Release: 10 %define gutenprintmajor 5.2 BuildRequires: cairo-devel cups-ddk cups-devel BuildRequires: gimp-devel glib2-devel gtk2-devel BuildRequires: libpng-devel libtiff-devel BuildRequires: pango-devel python-cups License: GPL-2.0+ Group: Hardware/Printing Summary: Printer drivers for CUPS from the Gutenprint project Requires: cups >= 1.2.2 BuildRoot: %{_tmppath}/%{name}-%{version}-build # URL for Source0: # http://downloads.sourceforge.net/project/gimp-print/gutenprint-5.2/5.2.7/gutenprint-5.2.7.tar.bz2 Source0: gutenprint-%{version}.tar.bz2 # Patch0...Patch9 is for patches from upstream: # Patch10...Patch99 is for openSUSE patches which which are intended for upstream: # Patch10 escputil-send_nulls-void.patch makes send_nulls a void function # because nowhere is a return value of send_nulls used in escputil.c # to fix a "no-return-in-nonvoid-function escputil.c:683" compiler error: Patch10: escputil-send_nulls-void.patch # Patch11: Fix missing include Patch11: compile-fix.patch # Patch100... is for openSUSE patches which which are not intended for upstream: %description The Gutenprint (formerly Gimp-Print) printer drivers for CUPS. See the user's manual at /usr/share/gutenprint/doc/gutenprint-users-manual.pdf %package devel License: GPL-2.0+ Summary: Development environment for Gutenprint Group: Development/Libraries/C and C++ Requires: ghostscript-library >= 7.05, cups >= 1.2.2, gutenprint = %{version} Requires: gtk2-devel, glibc-devel %description devel The development environment for the Gutenprint printer drivers. See the developers guide to Gutenprint at /usr/share/gutenprint/doc/gutenprint.pdf %package gimpplugin License: GPL-2.0+ Summary: Alternative GIMP print plug-in from the Gutenprint project Group: Hardware/Printing %description -n gutenprint-gimpplugin The enhanced Gutenprint GIMP print plug-in offers an alternative with additional capabilities to the plugin supplied with GIMP. See the user's manual at /usr/share/gutenprint/doc/gutenprint-users-manual.pdf %prep # Be quiet when unpacking: %setup -q # Patch10 escputil-send_nulls-void.patch makes send_nulls a void function # because nowhere is a return value of send_nulls used in escputil.c # to fix a "no-return-in-nonvoid-function escputil.c:683" compiler error: %patch10 %patch11 -p1 %build CFLAGS="$RPM_OPT_FLAGS -fstack-protector -fno-strict-aliasing -I/usr/include/gtk-2.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I%{_libdir}/gtk-2.0/include -I%{_libdir}/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/gimp-2.0" ./configure \ --prefix=%{_prefix} \ --mandir=%{_mandir} \ --infodir=%{_infodir} \ --sysconfdir=%{_sysconfdir} \ --libdir=%{_libdir} \ --disable-static \ --enable-shared \ --enable-cups-ppds \ --enable-simplified-cups-ppds \ --disable-translated-cups-ppds \ --disable-libgutenprintui \ --enable-libgutenprintui2 \ --enable-samples \ --enable-escputil \ --with-pic=yes \ --without-foomatic \ --without-foomatic3 \ --without-ghostscript \ --without-gimp \ --with-gimp2 make %install rm -rf $RPM_BUILD_ROOT/usr/share/cups/model # Create required directories first: install -d -m755 $RPM_BUILD_ROOT/bin install -d -m755 $RPM_BUILD_ROOT/usr/share/cups/model install -d -m755 $RPM_BUILD_ROOT/usr/lib/cups/filter # Install Gutenprint: make DESTDIR=$RPM_BUILD_ROOT install # Work with upstream compliant CUPS 1.4 on all platforms # which means to have a fixed "/usr/lib/cups/" directory # on all platforms (see Novell/Suse Bugzilla bnc#575544): for D in lib32 lib64 do for F in commandtocanon commandtoepson rastertogutenprint.%{gutenprintmajor} do if test -e $RPM_BUILD_ROOT/usr/$D/cups/filter/$F then mv -f $RPM_BUILD_ROOT/usr/$D/cups/filter/$F $RPM_BUILD_ROOT/usr/lib/cups/filter/$F fi done F="gutenprint.%{gutenprintmajor}" if test -e $RPM_BUILD_ROOT/usr/$D/cups/driver/$F then mv -f $RPM_BUILD_ROOT/usr/$D/cups/driver/$F $RPM_BUILD_ROOT/usr/lib/cups/driver/$F fi done # Disable the run-time PPD generator /usr/lib/cups/driver/gutenprint.5.2 # so that it is not executed by the cups-driverd (e.g. in response to a "lpinfo -m" request) # to avoid duplicated PPDs because we create the PPDs during compile-time (via --enable-cups-ppds) # and provide ready-made PPDs in /usr/share/cups/model/gutenprint/... in the RPM package # see "Regarding CUPS PPD files" at https://bugzilla.novell.com/show_bug.cgi?id=514994#c9 chmod a-x $RPM_BUILD_ROOT/usr/lib/cups/driver/gutenprint.%{gutenprintmajor} # Move the special testpattern generator away from the usual bin directory: mv $RPM_BUILD_ROOT/%{_bindir}/testpattern $RPM_BUILD_ROOT/%{_libdir}/gutenprint/%{gutenprintmajor} # Remove dispensable .po files (only the .mo files are needed on the end-users's system): rm $RPM_BUILD_ROOT/usr/share/locale/*/gutenprint_*.po %find_lang gutenprint %post /sbin/ldconfig # update quietly Gutenprint PPD files in /etc/cups/ppd/ if such PPD files exist # using the new PPD files under /usr/share/cups/model/gutenprint/ as templates # see https://bugzilla.novell.com/show_bug.cgi?id=637455 /usr/sbin/cups-genppdupdate -q || /bin/true # send CUPS daemon SIGHUP to let it recognize new and updated PPD files: if test -x /etc/init.d/cups && /etc/init.d/cups status >/dev/null then /etc/init.d/cups reload >/dev/null || /bin/true fi # exit successfully in any case: exit 0 %postun /sbin/ldconfig # exit successfully in any case: exit 0 %files -f gutenprint.lang %defattr(-,root,root) %config /etc/cups/command.types %{_bindir}/cups-calibrate %{_bindir}/escputil %{_sbindir}/cups-genppd* %dir %{_libdir}/gutenprint %dir %{_libdir}/gutenprint/%{gutenprintmajor} %{_libdir}/gutenprint/%{gutenprintmajor}/* %{_libdir}/libgutenprint*.so?* %dir /usr/share/cups /usr/share/cups/calibrate.ppm %dir /usr/share/cups/model %dir /usr/share/cups/model/gutenprint %dir /usr/share/cups/model/gutenprint/%{gutenprintmajor} %dir /usr/share/cups/model/gutenprint/%{gutenprintmajor}/C /usr/share/cups/model/gutenprint/%{gutenprintmajor}/C/* %dir /usr/lib/cups/driver /usr/lib/cups/driver/gutenprint.%{gutenprintmajor} /usr/lib/cups/filter/commandtocanon /usr/lib/cups/filter/commandtoepson /usr/lib/cups/filter/rastertogutenprint.%{gutenprintmajor} %dir /usr/share/gutenprint %dir /usr/share/gutenprint/%{gutenprintmajor} /usr/share/gutenprint/%{gutenprintmajor}/* %dir /usr/share/gutenprint/samples/ /usr/share/gutenprint/samples/* %dir /usr/share/gutenprint/doc %doc /usr/share/gutenprint/doc/* %doc /usr/share/man/man?/*.gz %files devel %defattr(-,root,root) %dir /usr/include/gutenprint /usr/include/gutenprint/* %dir /usr/include/gutenprintui2 /usr/include/gutenprintui2/* %{_libdir}/libgutenprint*.la %{_libdir}/pkgconfig/gutenprint* %{_libdir}/libgutenprint*.so %files gimpplugin %defattr(-,root,root) %dir %{_libdir}/gimp %dir %{_libdir}/gimp/2.0 %dir %{_libdir}/gimp/2.0/plug-ins %{_libdir}/gimp/2.0/plug-ins/* %changelog
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor