source: projects/specs/trunk/p/potrace/potrace-vl.spec @ 521

Revision 521, 2.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary:            Transforms bitmaps into vector graphics
2Summary(ja):        ビットマップ画像をベクター画像に変換
3Name:               potrace
4Version:            1.8
5Release:            1%{?_dist_release}
6License:            GPL
7Group:              Applications/Graphics
8Source:             http://potrace.sourceforge.net/download/%{name}-%{version}.tar.gz
9Patch0:             potrace-1.8-xfig.patch
10URL:                http://potrace.sourceforge.net/
11BuildRoot:          %{_tmppath}/%{name}-%{version}-root
12
13Vendor:             Project Vine
14Distribution:       Vine Linux
15BuildRequires:      zlib-devel
16
17%description
18potrace is a utility for tracing a bitmap, which means, transforming a
19bitmap into a smooth, scalable image.  The input is a portable bitmap
20(PBM), and the default output is an encapsulated PostScript file
21(EPS). A typical use is to create EPS files from scanned data, such as
22company or university logos, handwritten notes, etc.  The resulting
23image is not "jaggy" like a bitmap, but smooth, and it can be scaled
24to any resolution.
25
26%description -l ja
27potrace はビットマップ画像をトレースするツールです.ビットマップ画像を
28滑らかで拡大縮小できる画像に変換します.社章、校章、手書き図のスキャン
29画像から滑らかなEPSを得るには,例えば,
30convert hoge.bmp pbm:- | mkbitmap -s 2 | potrace -a -1 -C "#202020" > hoge.eps
31とします.入力形式がPBMであることに注意してください.
32
33%prep
34%setup -q
35%patch0 -p0 -b .xfig
36
37%build
38%configure --enable-metric --enable-a4
39%{__make}
40
41%install
42rm -rf $RPM_BUILD_ROOT
43%makeinstall
44 
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48%files
49%defattr(-, root, root)
50%doc AUTHORS COPYING ChangeLog NEWS README
51%{_bindir}/*
52%{_mandir}/man1/*
53
54%changelog
55* Fri Oct 10 2008 Shu KONNO <owa@bg.wakwak.com> 1.8-1vl5
56- applied new versioning policy, spec in utf-8
57
58* Fri Aug 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8-0vl1
59- new upstream release
60
61* Sat Jul  8 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-0vl2
62- rebuilt for VineSeed (4.0)
63- added Patch0 from upstream
64- added --enable-metric and --enable-a4 option at configure
65
66* Thu Apr 21 2005 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
67- Updated to 1.7
68
69* Tue Feb 15 2005 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
70- Updated to 1.5
71- Japanized this spec file
72- Rewrote build and install section
73
74* Wed May 19 2004 Susumu Tanimura  <stanimura-ngs@umin.ac.jp>
75- initial package for VineLinux
76
77* Mon Aug 18 2003 Peter Selinger <selinger@users.sourceforge.net>
78- corrected Summary and Group information
Note: See TracBrowser for help on using the repository browser.