source: projects/specs/branches/6/p/potrace/potrace-vl.spec @ 7739

Revision 7739, 2.7 KB checked in by Takemikaduchi, 11 years ago (diff)

rebuild packages & security fix

Line 
1Summary:            Transforms bitmaps into vector graphics
2Summary(ja):        ビットマップ画像をベクター画像に変換
3Name:               potrace
4Version:            1.8
5Release:            2%{?_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* Sun Jul 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8-2
56- rebuild with current Vine6 environment
57
58* Fri Oct 10 2008 Shu KONNO <owa@bg.wakwak.com> 1.8-1vl5
59- applied new versioning policy, spec in utf-8
60
61* Fri Aug 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8-0vl1
62- new upstream release
63
64* Sat Jul  8 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-0vl2
65- rebuilt for VineSeed (4.0)
66- added Patch0 from upstream
67- added --enable-metric and --enable-a4 option at configure
68
69* Thu Apr 21 2005 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
70- Updated to 1.7
71
72* Tue Feb 15 2005 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
73- Updated to 1.5
74- Japanized this spec file
75- Rewrote build and install section
76
77* Wed May 19 2004 Susumu Tanimura  <stanimura-ngs@umin.ac.jp>
78- initial package for VineLinux
79
80* Mon Aug 18 2003 Peter Selinger <selinger@users.sourceforge.net>
81- corrected Summary and Group information
Note: See TracBrowser for help on using the repository browser.