]> git.pld-linux.org Git - packages/autotrace.git/blame_incremental - autotrace.spec
- converted to UTF-8
[packages/autotrace.git] / autotrace.spec
... / ...
CommitLineData
1Summary: AutoTrace - convert bitmap to vector graphics
2Summary(pl.UTF-8): AutoTrace - konwerter grafiki rastrowej do wektorowej
3Name: autotrace
4Version: 0.31.1
5Release: 7
6License: GPL
7Group: Applications
8Source0: http://dl.sourceforge.net/autotrace/%{name}-%{version}.tar.gz
9# Source0-md5: 54eabbb38d2076ded6d271e1ee4d0783
10Patch0: %{name}-link.patch
11Patch1: %{name}-aclocal.patch
12Patch2: %{name}-am18.patch
13Patch3: %{name}-magick6.patch
14URL: http://autotrace.sourceforge.net/
15BuildRequires: ImageMagick-devel >= 1:6.2.4.0
16BuildRequires: autoconf
17BuildRequires: automake
18BuildRequires: libtool
19BuildRequires: libpng-devel >= 1.0.6
20BuildRequires: ming-devel
21BuildRequires: pstoedit-devel >= 3.33-4
22BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24%description
25AutoTrace is a utility that converts bitmap to vector graphics. It can
26import p[nbgp]m, bmp, tga, png (and many more through ImageMagick)
27files and write to emf, eps, ai, er, fig, svg, sk and swf files.
28
29%description -l pl.UTF-8
30AutoTrace jest narzędziem do konwersji grafiki rastrowej na wektorową.
31Może wczytywać pliki p[nbgp]m, bmp, tga, png (i wiele innych przez
32ImageMagick, a zapisywać w formacie emf, eps, ai, er, fig, svg, sk
33oraz swf.
34
35%package devel
36Summary: AutoTrace library development files
37Summary(pl.UTF-8): Pliki dla programistów używających biblioteki AutoTrace
38Group: Development/Libraries
39Requires: %{name} = %{version}-%{release}
40Requires: ImageMagick-devel >= 1:6.2.4.0
41Requires: libpng-devel >= 1.0.6
42Requires: ming-devel
43Requires: pstoedit-devel >= 3.33-4
44
45%description devel
46AutoTrace library header files.
47
48%description devel -l pl.UTF-8
49Pliki nagłówkowe do biblioteki AutoTrace.
50
51%package static
52Summary: AutoTrace static library
53Summary(pl.UTF-8): Biblioteka statyczna AutoTrace
54Group: Development/Libraries
55Requires: %{name}-devel = %{version}-%{release}
56
57%description static
58AutoTrace static library.
59
60%description static -l pl.UTF-8
61Biblioteka statyczna AutoTrace.
62
63%prep
64%setup -q
65%patch0 -p1
66%patch1 -p1
67%patch2 -p1
68%patch3 -p1
69
70%build
71%{__libtoolize}
72%{__aclocal}
73%{__autoconf}
74%{__automake}
75%configure \
76 --enable-shared
77
78%{__make}
79
80%install
81rm -rf $RPM_BUILD_ROOT
82
83%{__make} install \
84 DESTDIR=$RPM_BUILD_ROOT
85
86%clean
87rm -rf $RPM_BUILD_ROOT
88
89%post -p /sbin/ldconfig
90%postun -p /sbin/ldconfig
91
92%files
93%defattr(644,root,root,755)
94%doc AUTHORS NEWS README THANKS
95%attr(755,root,root) %{_bindir}/autotrace
96%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
97%{_mandir}/man1/*
98
99%files devel
100%defattr(644,root,root,755)
101%attr(755,root,root) %{_bindir}/autotrace-config
102%attr(755,root,root) %{_libdir}/lib*.so
103%{_libdir}/lib*.la
104%{_includedir}/autotrace
105%{_aclocaldir}/autotrace.m4
106%{_pkgconfigdir}/*
107
108%files static
109%defattr(644,root,root,755)
110%{_libdir}/lib*.a
This page took 0.07527 seconds and 4 git commands to generate.