From f6d3222e8f41de3484c5dc550ee01fd88dab45c2 Mon Sep 17 00:00:00 2001 From: Douglas Schilling Landgraf Date: Jul 29 2009 20:39:37 +0000 Subject: - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources --- diff --git a/.cvsignore b/.cvsignore index e69de29..f4e867b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +zbar-0.8.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..d61b788 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +zbar-0_8-5_fc10:HEAD:zbar-0.8-5.fc10.src.rpm:1248899866 diff --git a/sources b/sources index e69de29..0db5e47 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +b5b0efd92af16230ce9952e7a9a671fd zbar-0.8.tar.bz2 diff --git a/zbar.spec b/zbar.spec new file mode 100644 index 0000000..0a12c77 --- /dev/null +++ b/zbar.spec @@ -0,0 +1,218 @@ +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + +Name: zbar +Version: 0.8 +Release: 5%{?dist} +Summary: Bar code reader + +Group: User Interface/X Hardware Support +License: LGPLv2+ +URL: http://sourceforge.net/projects/%{name} +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto + +%description +A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, +Code 39 and Interleaved 2 of 5. +Includes applications for decoding captured barcode images and using a video +device (eg, webcam) as a barcode scanner. + +%package devel +Group: Development/Libraries +Summary: Bar code library extra development files +Requires: pkgconfig, %{name} = %{version}-%{release} + +%description devel +This package contains header files and additional libraries used for +developing applications that read bar codes with this library. + +%package gtk +Group: Development/Libraries +Summary: Bar code reader GTK widget +Requires: %{name} = %{version}-%{release} + +%description gtk +This package contains a bar code scanning widget for use with GUI +applications based on GTK+-2.0. + +%package gtk-devel +Group: Development/Libraries +Summary: Bar code reader GTK widget extra development files +Requires: pkgconfig, %{name}-gtk = %{version}-%{release}, %{name}-devel = %{version}-%{release} + +%description gtk-devel +This package contains header files and additional libraries used for +developing GUI applications based on GTK+-2.0 that include a bar code +scanning widget. + +%package pygtk +Group: Development/Libraries +Summary: Bar code reader PyGTK widget +Requires: pygtk2, %{name}-gtk = %{version}-%{release} + +%description pygtk +This package contains a bar code scanning widget for use in GUI +applications based on PyGTK. + +%package qt +Group: Development/Libraries +Summary: Bar code reader Qt widget +Requires: %{name} = %{version}-%{release} + +%description qt +This package contains a bar code scanning widget for use with GUI +applications based on Qt4. + +%package qt-devel +Group: Development/Libraries +Summary: Bar code reader Qt widget extra development files +Requires: pkgconfig, %{name}-qt = %{version}-%{release}, %{name}-devel = %{version}-%{release} + +%description qt-devel +This package contains header files and additional libraries used for +developing GUI applications based on Qt4 that include a bar code +scanning widget. + +%prep +%setup -q + +%build +%configure --docdir=%{_docdir}/%{name}-%{version} + +# rpath +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" + +#Remove .la and .a files +find ${RPM_BUILD_ROOT} -name '*.la' -or -name '*.a' | xargs rm -f + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%post devel -p /sbin/ldconfig + +%post gtk -p /sbin/ldconfig + +%post qt -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%postun devel -p /sbin/ldconfig + +%postun gtk -p /sbin/ldconfig + +%postun qt -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc COPYING.LIB NEWS + +%{_bindir}/zbarimg +%{_bindir}/zbarcam +%{_libdir}/libzbar.so.* +%{_mandir}/man1/* + +%files devel +%defattr(-,root,root,-) +%doc HACKING TODO + +%{_libdir}/libzbar.so +%{_libdir}/pkgconfig/zbar.pc +%dir %{_includedir}/zbar +%{_includedir}/zbar.h +%{_includedir}/zbar/Exception.h +%{_includedir}/zbar/Symbol.h +%{_includedir}/zbar/Image.h +%{_includedir}/zbar/Scanner.h +%{_includedir}/zbar/Decoder.h +%{_includedir}/zbar/ImageScanner.h +%{_includedir}/zbar/Video.h +%{_includedir}/zbar/Window.h +%{_includedir}/zbar/Processor.h + +%files gtk +%defattr(-,root,root,-) +%{_libdir}/libzbargtk.so.* + +%files gtk-devel +%defattr(-,root,root,-) +%{_libdir}/libzbargtk.so +%{_libdir}/pkgconfig/zbar-gtk.pc +%{_includedir}/zbar/zbargtk.h + +%files pygtk +%defattr(-,root,root,-) +%{python_sitearch}/zbarpygtk.so +%{python_sitearch}/zbar.so + +%files qt +%defattr(-,root,root,-) +%{_libdir}/libzbarqt.so.* + +%files qt-devel +%defattr(-,root,root,-) +%{_libdir}/libzbarqt.so +%{_libdir}/pkgconfig/zbar-qt.pc +%{_includedir}/zbar/QZBar*.h + +%changelog +* Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 +- Now fixed Source0 url +- Removed ldconfig calls to devel subpackages +- Fixed directory ownership issue -pygtk +- Added %%{name} to URL +- Added comment to rpath +- Improved comment for removing .la and .a files + +* Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 +- Fixed sourceforge url +- Removed redundant libX11-devel package from BuildRequires +- Removed redundant ImageMagick package from Requires +- Removed Provides for not included static libs +- Removed redundant requires to subpackages -qt and -gtk +- Removed redundant {name} = %%{version}-%%{release} from -pygtk +- Replaced macros from % to %% in changelog +- Fixed ownership issue +- Added ldconfig call to devel, qt-devel and gtk-devel + +* Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 +- Fixed License from LGPLv2 to LGPLv2+ +- Added to main BuildRequires libXv-devel and xmlto packages +- Removed pkgconfig from main BuildRequires +- Removed .la and .a files +- Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages +- Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) +- Removed duplicated description for each package +- Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt +- Added pkgconfig to packages gtk-devel, qt-devel into Requires session +- Removed redundant packages +- Added dependency of gtk to pygtk +- Added timestamp on installed files +- Replaced %%{_datadir}/man to %%{_mandir} +- Removed INSTALL file +- Fixed %%doc session +- Added to -devel own of %%{_includedir}/zbar directory +- Replaced "%%{_libdir}/python*" to %%{python_sitearch} +- Fixed %%defattr +- Fixed Release Number and Changelog +- Fixed rpath error + +* Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 +- Added pkgconfig to devel package +- Fixed syntax to ldconfig +- Fixed warnings from rpmlint +- Fixed static path to docs + +* Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 +- First release, based on original zbar.spec provided by sources