SHA256
1
0
forked from pool/potrace
potrace/potrace.spec
Ismail Dönmez 53ade777f3 Accepting request 340608 from home:sbrabec:branches:graphics
- Update to version 1.13:
  * Some critical bugs in the processing of BMP files were fixed
    (bsc#951760).
  * Portability was improved for C99 and for MSVC++.

OBS-URL: https://build.opensuse.org/request/show/340608
OBS-URL: https://build.opensuse.org/package/show/graphics/potrace?expand=0&rev=15
2015-10-23 15:35:07 +00:00

109 lines
3.5 KiB
RPMSpec

#
# spec file for package potrace
#
# Copyright (c) 2015 SUSE LINUX 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/
#
Name: potrace
Version: 1.13
Release: 0
Summary: Utility for Tracing a Bitmap to Scalable Outline Image
License: GPL-2.0+
Group: Productivity/Graphics/Convertors
Url: http://potrace.sourceforge.net/
Source: http://potrace.sourceforge.net/download/%{version}/%{name}-%{version}.tar.gz
BuildRequires: zlib-devel
Provides: bitmap_tracing
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Potrace is a utility for tracing a bitmap, which means, transforming a
bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM,
PPM, or BMP), and the default output is one of several vector file
formats. A typical use is to create EPS files from scanned data, such
as company or university logos, handwritten notes, etc. The resulting
image is not "jaggy" like a bitmap, but smooth. It can then be rendered
at any resolution.
%package -n libpotrace0
Summary: Library for Tracing a Bitmap to Scalable Outline Image
Group: System/Libraries
%description -n libpotrace0
Potrace is a utility for tracing a bitmap, which means, transforming a
bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM,
PPM, or BMP), and the default output is one of several vector file
formats. A typical use is to create EPS files from scanned data, such
as company or university logos, handwritten notes, etc. The resulting
image is not "jaggy" like a bitmap, but smooth. It can then be rendered
at any resolution.
%package devel
Summary: Library Development Files for Tracing a Bitmap to Scalable Outline Image
Group: Development/Languages/C and C++
Requires: %{name} = %{version}
%description devel
Potrace is a utility for tracing a bitmap, which means, transforming a
bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM,
PPM, or BMP), and the default output is one of several vector file
formats. A typical use is to create EPS files from scanned data, such
as company or university logos, handwritten notes, etc. The resulting
image is not "jaggy" like a bitmap, but smooth. It can then be rendered
at any resolution.
%prep
%setup -q
%build
%configure\
--docdir=%{_docdir}/%{name}\
--with-libpotrace\
--disable-static
make %{?_smp_mflags}
%install
%if %suse_version > 1110
%make_install
%else
%makeinstall
%endif
cp -a AUTHORS ChangeLog COPYING NEWS README %{buildroot}%{_docdir}/%{name}/
rm %{buildroot}%{_libdir}/*.*a
%clean
rm -rf %{buildroot}
%post -n libpotrace0 -p /sbin/ldconfig
%postun -n libpotrace0 -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_bindir}/*
%doc %{_docdir}/%{name}
%doc %{_mandir}/man?/*.*
%files -n libpotrace0
%defattr(-,root,root)
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root)
%{_includedir}/*.h
%{_libdir}/*.so
%changelog