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