1Summary: Program for converting bitmaps to vector graphics
2Name: @PACKAGE@
3Version: @VERSION@
4Release: 1
5Url: http://autotrace.sourceforge.net
6Source: %{name}-%{version}.tar.gz
7Copyright: GPL and LGPL
8Group: Applications/Graphics
9BuildRoot: %{_tmppath}/%{name}-root
10
11%description
12AutoTrace is a program for converting bitmaps to vector graphics. The
13aim of the AutoTrace project is the development of a freely-available
14application similar to CorelTrace or Adobe Streamline. In some
15aspects it is already better. Originally being created as a plugin
16for the GIMP, AutoTrace is now a standalone program and can be
17compiled on any UNIX platform using GCC.
18
19
20%prep
21%setup -q
22
23%build
24%configure --without-magick --without-pstoedit
25make
26
27%install
28rm -rf $RPM_BUILD_ROOT
29make prefix=$RPM_BUILD_ROOT/usr/ install
30
31%clean
32rm -rf $RPM_BUILD_ROOT
33
34%files
35%defattr(-,root,root)
36%doc AUTHORS COPYING COPYING.LIB ChangeLog NEWS README
37%doc /usr/man/man1/autotrace.1.*
38
39/usr/include/autotrace/autotrace.h
40/usr/lib/pkgconfig/autotrace.pc
41/usr/include/autotrace/types.h
42/usr/lib/libautotrace.*
43/usr/include/autotrace/exception.h
44/usr/include/autotrace/input.h
45/usr/include/autotrace/output.h
46/usr/share/aclocal/autotrace.m4
47/usr/bin/autotrace-config
48/usr/bin/autotrace
49
50%changelog
51* Wed Oct 23 2002  Masatake YAMATO<jet@gyve.org>
52- make disabled magick and pstoedit.
53
54* Tue Jul  9 2002  Masatake YAMATO<jet@gyve.org>
55- Supported shared library and bzip'ed manual.
56
57* Sun May 12 2002  Masatake YAMATO<jet@gyve.org>
58- Install output.h.
59
60* Tue Apr 16 2002 Masatake YAMATO<jet@gyve.org>
61- Added LGPL to Copyright
62
63* Wed Apr  3 2002 Masatake YAMATO<jet@gyve.org>
64- autotrace.1 -> autotrace.1.gz
65
66* Thu Mar  7 2002 Masatake YAMATO<jet@gyve.org>
67- Change %description.
68- Update files.
69
70* Thu Feb 21 2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
71- Initial build.
72
73