]> git.pld-linux.org Git - packages/a2ps.git/blob - a2ps.spec
0a636b363eb9e91ef0f6e7d968a7fddc0420e83b
[packages/a2ps.git] / a2ps.spec
1 #
2 # TODO:
3 #       - do something with libpaper
4 #
5 Summary:        Text to Postscript filter
6 Summary(ja.UTF-8):      テキスト→PostScript フィルタ
7 Summary(pl.UTF-8):      Filtr text/plain do Postscriptu
8 Summary(zh_CN.UTF-8):   纯文本到Postscript转换器
9 Name:           a2ps
10 Version:        4.13b
11 Release:        30
12 License:        GPL
13 Group:          Applications/Text
14 Source0:        ftp://ftp.enst.fr/pub/unix/a2ps/%{name}-%{version}.tar.gz
15 # Source0-md5:  0c8e0c31b08c14f7a7198ce967eb3281
16 Source1:        ftp://ftp.enst.fr/pub/unix/a2ps/i18n-fonts-0.1.tar.gz
17 # Source1-md5:  fee1456d0e6e94af4fc5b5a1bb9687b7
18 Source2:        ogonkify.1.pl
19 Patch0:         %{name}-info.patch
20 Patch1:         %{name}-security.patch
21 Patch2:         %{name}-etc.patch
22 Patch3:         %{name}-flex.patch
23 Patch4:         %{name}-conf.patch
24 Patch5:         %{name}-glibcpaper.patch
25 Patch6:         %{name}-autoenc.patch
26 Patch7:         %{name}-i18n.patch
27 Patch8:         %{name}-ogonkify-xfig-fix.patch
28 Patch9:         %{name}-pl.po-update.patch
29 Patch10:        %{name}-locale-names.patch
30 Patch11:        %{name}-malloc.patch
31 Patch12:        %{name}-CAN-2004-1170.patch
32 Patch13:        %{name}-atan2.patch
33 URL:            http://www.inf.enst.fr/~demaille/a2ps/
34 BuildConflicts: libpaper-devel
35 BuildRequires:  automake
36 BuildRequires:  flex
37 BuildRequires:  gettext-devel
38 BuildRequires:  texinfo
39 Requires(post,postun):  /sbin/ldconfig
40 Requires:       psutils
41 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
42
43 %define         _sysconfdir     /etc/a2ps
44
45 %description
46 a2ps is a text to PostScript filter with pretty-printing capabilities.
47 It includes support for a wide number of programming languages,
48 encodings (ISO Latins, Cyrillic etc.), medias, and spoken languages
49 (for the interface). It has also the ability to delegate the
50 processing of some files to other applications, letting you print DVI,
51 PostScript etc. with the very same interface.
52
53 %description -l pl.UTF-8
54 A2ps jest programem pozwalającym na ładne drukowanie plików tekstowych
55 w PostScript. Posiada wsparcie dla wielu różnych języków
56 programowania, zestawów znaków (ISO Latins, Cyrilica etc.), wielkości
57 papieru, i języków komunikacji z użytkownikiem. Potrafi także
58 przekazać przetwarzanie plików do innych programów (tak, że można
59 wszystko drukować (DVI, PostScript) przy użyciu tego samego polecenia.
60 Zawiera program ,,ogonkify'' poprawiający błędnie zakodowany
61 PostScript zawierający polskie znaki.
62
63 %package devel
64 Summary:        Header files and development documentation for a2ps
65 Summary(pl.UTF-8):      Pliki nagłówkowe i dokumentacja do a2ps
66 Group:          Development/Libraries
67 Requires:       %{name} = %{version}-%{release}
68
69 %description devel
70 Header files and development documentation for a2ps.
71
72 %description devel -l pl.UTF-8
73 Pliki nagłówkowe i dokumentacja do a2ps.
74
75 %package static
76 Summary:        a2ps static libraries
77 Summary(pl.UTF-8):      Biblioteki statyczne do a2ps
78 Group:          Development/Libraries
79 Requires:       %{name}-devel = %{version}-%{release}
80
81 %description static
82 a2ps static libraries.
83
84 %description static -l pl.UTF-8
85 Biblioteki statyczne do a2ps.
86
87 %prep
88 %setup -q -n %{name}-4.13 -a1
89 %patch0 -p1
90 %patch1 -p1
91 %patch2 -p1
92 %patch3 -p1
93 %patch4 -p1
94 %patch5 -p1
95 %patch6 -p1
96 %patch7 -p1
97 %patch8 -p0
98 %patch9 -p1
99 %patch10 -p1
100 %patch11 -p1
101 %patch12 -p1
102 %patch13 -p1
103
104 mv -f po/{no,nb}.po
105
106 %build
107 cp -f /usr/share/automake/config.* auxdir
108 %configure2_13 \
109         --with-gnu-gettext \
110         --with-medium=_glibc  \
111         --with-encoding=latin1 \
112         --enable-shared \
113         --enable-kanji
114 %{__make}
115
116 %install
117 rm -rf $RPM_BUILD_ROOT
118 install -d $RPM_BUILD_ROOT%{_datadir}/a2ps/{afm,fonts} \
119         $RPM_BUILD_ROOT%{_mandir}/pl/man1
120
121 %{__perl} -pi -e 's/^lispdir = $/lispdir = \$(prefix)\/lib\/emacs\/site-lisp/g' contrib/emacs/Makefile
122
123 %{__make} install \
124         DESTDIR=$RPM_BUILD_ROOT
125
126 install i18n-fonts-0.1/afm/*.afm $RPM_BUILD_ROOT%{_datadir}/a2ps/afm
127 install i18n-fonts-0.1/fonts/*.pfb $RPM_BUILD_ROOT%{_datadir}/a2ps/fonts
128 install %{SOURCE2} $RPM_BUILD_ROOT%{_mandir}/pl/man1
129
130 %find_lang %{name}
131
132 %clean
133 rm -rf $RPM_BUILD_ROOT
134
135 %post
136 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
137 /sbin/ldconfig
138
139 %postun
140 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
141 /sbin/ldconfig
142
143 %files -f %{name}.lang
144 %defattr(644,root,root,755)
145 %doc AUTHORS ChangeLog NEWS README THANKS
146 %dir %{_sysconfdir}
147 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/a2ps.cfg
148 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/a2ps-site.cfg
149 %attr(755,root,root) %{_bindir}/*
150 %attr(755,root,root) %{_libdir}/lib*.so.*.*
151 %{_mandir}/man1/*
152 %lang(pl) %{_mandir}/pl/man1/*
153 %{_infodir}/a2ps*info*
154 %{_infodir}/ogonkify*info*
155
156 %dir %{_datadir}/a2ps
157 %dir %{_datadir}/a2ps/afm
158 %{_datadir}/a2ps/afm/*.afm
159 %{_datadir}/a2ps/afm/*.map
160 %attr(755,root,root) %{_datadir}/a2ps/afm/*.sh
161
162 %{_datadir}/a2ps/encoding
163 %{_datadir}/a2ps/fonts
164 %{_datadir}/a2ps/ppd
165 %{_datadir}/a2ps/ps
166 %{_datadir}/a2ps/sheets
167
168 %dir %{_datadir}/ogonkify
169 %{_datadir}/ogonkify/*.enc
170 %{_datadir}/ogonkify/*.ps
171 %{_datadir}/ogonkify/afm
172 %{_datadir}/ogonkify/fonts
173
174 %files devel
175 %defattr(644,root,root,755)
176 %{_libdir}/lib*.la
177 %attr(755,root,root) %{_libdir}/lib*.so
178 %{_includedir}/*
179
180 %files static
181 %defattr(644,root,root,755)
182 %{_libdir}/lib*.a
This page took 0.044522 seconds and 2 git commands to generate.