source: projects/specs/trunk/d/dvipng/dvipng-vl.spec @ 521

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

import VineSeed package specs

Line 
1Name:             dvipng
2Version:          1.12
3Release:          1%{?_dist_release}
4
5Summary:          Converts DVI files to PNG/GIF format
6Summary(ja):      DVIファイルをPNG/GIF画像に変換
7Source:           %{name}-%{version}.tar.gz
8URL:              http://sourceforge.net/projects/dvipng/
9Group:            Applications/Publishing
10License:          GPLv2+ and OFSFDL
11
12BuildRequires:    libkpathsea-devel
13BuildRequires:    gd-devel
14BuildRequires:    zlib-devel
15BuildRequires:    libpng-devel
16BuildRequires:    tetex
17BuildRequires:    texinfo
18BuildRequires:    t1lib-devel
19BuildRequires:    freetype2-devel
20BuildRequires:    fontconfig-devel
21
22BuildRoot:        %{_tmppath}/%{name}-%{version}-root
23
24Vendor:           Project Vine
25Distribution:     Vine Linux
26Packager:         munepi
27
28%description
29This program makes PNG and/or GIF graphics from DVI files as obtained
30from TeX and its relatives.
31
32It is intended to produce anti-aliased screen-resolution images as
33fast as is possible. The target audience is people who need to generate
34and regenerate many images again and again.
35
36
37%description -l ja
38TeX やその関連ツールにより作成される DVI ファイルを
39PNG または GIF 画像に変換するプログラムです。
40
41可能な限り素早くアンチエリアスが効いた画面解像度の画像を生成します。
42このソフトの主な対象者は、多数の画像を何度も繰り返し再生成したい人です。
43
44
45%prep
46%setup -q
47
48%build
49%configure
50%__make %{?_smp_mflags}
51
52%install
53%__rm -rf ${RPM_BUILD_ROOT}
54%__make install DESTDIR=${RPM_BUILD_ROOT}
55
56%__rm -rf ${RPM_BUILD_ROOT}/%{_infodir}/dir
57
58%clean
59%__rm -rf ${RPM_BUILD_ROOT}
60
61%post
62/sbin/install-info %{_infodir}/dvipng.info %{_infodir}/dir 2>/dev/null || :
63
64%preun
65if [ "$1" = "0" ] ; then
66    /sbin/install-info --delete %{_infodir}/dvipng.info %{_infodir}/dir 2>/dev/null || :
67fi
68
69
70%files
71%defattr(-,root,root,-)
72%doc COPYING ChangeLog ChangeLog.0 README RELEASE
73%{_bindir}/dvigif
74%{_bindir}/dvipng
75%{_infodir}/dvipng.info*
76%{_mandir}/man1/dvigif.1*
77%{_mandir}/man1/dvipng.1*
78
79
80%changelog
81* Sat Oct 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 1.12-1
82- new upstream release
83- changed Group tag to Applications/Publishing
84- updated License tag to GPLv2+ and OFSFDL
85
86* Wed Nov 29 2006 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
87- Rebuilt for VineLinux4.0
88
89* Mon Nov 13 2006 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
90- Updated to 1.9
91
92* Tue Apr  4 2006 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
93- Updated to 1.8
94- The URL has moved
95
96* Wed Sep 28 2005 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
97- Updated to 1.6
98
99* Tue Nov  9 2004 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
100- Initial package for VineLinux3.0
101
Note: See TracBrowser for help on using the repository browser.