]> git.pld-linux.org Git - packages/asymptote.git/blob - asymptote.spec
- 1.81
[packages/asymptote.git] / asymptote.spec
1 Summary:        Asymptote is a powerful descriptive vector graphics language for technical drawing
2 Summary(hu.UTF-8):      Asymptote egy leíró vektorgrafikus nyelv technikai rajzokhoz
3 Summary(pl.UTF-8):      Język opisu grafiki wektorowej do rysunków technicznych
4 Name:           asymptote
5 Version:        1.81
6 Release:        1
7 License:        GPL v3
8 Group:          Applications/Science
9 Source0:        http://dl.sourceforge.net/asymptote/%{name}-%{version}.src.tgz
10 # Source0-md5:  3acbb534f9ea426a710e3be354880428
11 Patch0:         %{name}-memrchr.patch
12 URL:            http://asymptote.sourceforge.net/
13 BuildRequires:  autoconf
14 BuildRequires:  gc-devel >= 7.0
15 BuildRequires:  gsl-devel >= 1.7
16 BuildRequires:  ncurses-devel
17 BuildRequires:  python
18 BuildRequires:  readline-devel
19 BuildRequires:  rpm-pythonprov
20 BuildRequires:  texinfo-texi2dvi
21 BuildRequires:  texlive-dvips
22 BuildRequires:  texlive-latex
23 BuildRequires:  texlive-tex-babel
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 Asymptote is a powerful descriptive vector graphics language for
28 technical drawing, inspired by MetaPost but with an improved C++-like
29 syntax. Asymptote provides for figures the same high-quality level of
30 typesetting that LaTeX does for scientific text.
31
32 %description -l hu.UTF-8
33 Asymptote egy leíró vektorgrafikus nyelv technikai rajzokhoz, hasonló
34 a MetaPost-hoz, de kibővítve C++-szerű szintaxissal. Asymptote még
35 képes olyan szintű szövegszedésre is, amelyre a LaTeX képes a
36 tudományos szöveggel.
37
38 %description -l pl.UTF-8
39 Asymptote jest językiem opisu grafiki wektorowej dla rysunków
40 technicznych. Język ten jest inspirowany językiem MetaPost, ale
41 posiada bogatszą składnię w stylu C++.
42
43 %package gui
44 Summary:        GUI for asymptote
45 Summary(hu.UTF-8):      GUI asymptote-hoz
46 Summary(pl.UTF-8):      Graficzny interfejs do asymptote
47 Group:          Applications/Science
48 Requires:       %{name} = %{version}-%{release}
49
50 %description gui
51 GUI for asymptote.
52
53 %description gui -l hu.UTF-8
54 GUI asymptote-hoz.
55
56 %description gui -l hu.UTF-8 -l pl.UTF-8
57 Graficzny interfejs do asymptote.
58
59 %package doc
60 Summary:        Asymptote documentation
61 Summary(hu.UTF-8):      Asymptote dokumentáció
62 Summary(pl.UTF-8):      Dokumentacja do Asymptote
63 Group:          Documentation
64 Requires:       %{name} = %{epoch}:%{version}-%{release}
65
66 %description doc
67 Asymptote documentation.
68
69 %description doc -l hu.UTF-8
70 Asymptote dokumentációja.
71
72 %description doc -l pl.UTF-8
73 Dokumentacja do Asymptote.
74
75 %package examples
76 Summary:        Asymptote examples
77 Summary(hu.UTF-8):      Asymptote példák
78 Summary(pl.UTF-8):      Przykłady do Asymptote
79 Group:          Documentation
80 Requires:       %{name} = %{epoch}:%{version}-%{release}
81
82 %description examples
83 Asymptote examples.
84
85 %description examples -l hu.UTF-8
86 Asymptote példák.
87
88 %description examples -l pl.UTF-8
89 Przykładowe pliki dla asymptote.
90
91 %package latex
92 Summary:        LaTeX styles
93 Summary(hu.UTF-8):      LaTeX stílusok
94 Summary(pl.UTF-8):      Style LaTeXa
95 Group:          Applications/Publishing/TeX
96 Requires(post,postun):  %{_bindir}/texhash
97
98 %description latex
99 LaTeX styles.
100
101 %description latex -l hu.UTF-8
102 LaTeX stílusok.
103
104 %description latex -l pl.UTF-8
105 Style LaTeXa.
106
107 %package context
108 Summary:        ConTeXt color macros
109 Group:          Applications/Publishing/TeX
110
111 %description context
112 ConTeXt color macros.
113
114 %package -n vim-syntax-asymptote
115 Summary:        Vim syntax file to asy-files
116 Summary(hu.UTF-8):      Vim syntax fájl asy fájlokhoz
117 Group:          Applications/Editors/Vim
118
119 %description -n vim-syntax-asymptote
120 Vim syntax file to asy files.
121
122 %description -n vim-syntax-asymptote -l hu.UTF-8
123 Vim syntax fájl asy fájlokhoz.
124
125 %prep
126 %setup -q
127 %patch0 -p1
128
129 %build
130 %{__autoheader}
131 %{__autoconf}
132 %configure \
133         CPPFLAGS=-I/usr/include/gc \
134         --disable-static \
135         --enable-gc=%{_includedir}/gc \
136         --with-docdir=%{_docdir}/%{name}-doc
137
138 %ifarch ppc
139 %{__make} asy
140 %{__make} faq
141 %else
142 %{__make} all
143 %endif
144
145 %install
146 rm -rf $RPM_BUILD_ROOT
147
148 %ifarch ppc
149 %{__make} install-asy \
150 %else
151 %{__make} install \
152 %endif
153         DESTDIR=$RPM_BUILD_ROOT
154
155 install -d $RPM_BUILD_ROOT%{_examplesdir}
156 mv $RPM_BUILD_ROOT%{_docdir}/%{name}-doc/examples $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
157
158 install -d $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/syntax
159 %{__mv} $RPM_BUILD_ROOT%{_datadir}/{asymptote/asy.vim,vim/vimfiles/syntax}
160 %{__mv} $RPM_BUILD_ROOT%{_datadir}/texmf{,-dist}
161
162 %ifnarch ppc
163 %{__mv} $RPM_BUILD_ROOT%{_infodir}/{asymptote/*,}
164 %{__rm} -rf $RPM_BUILD_ROOT%{_infodir}/asymptote
165 %endif
166
167 %clean
168 rm -rf $RPM_BUILD_ROOT
169
170 %post latex
171 [ ! -x %{_bindir}/texhash ] || %{_bindir}/texhash 1>&2
172
173 %postun latex
174 [ ! -x %{_bindir}/texhash ] || %{_bindir}/texhash 1>&2
175
176 %files
177 %defattr(644,root,root,755)
178 %doc README TODO BUGS
179 %ifnarch ppc
180 %{_infodir}/*.info.gz
181 %endif
182 %attr(755,root,root) %{_bindir}/asy
183 %{_datadir}/%{name}
184 %exclude %{_datadir}/%{name}/GUI
185 %ifnarch ppc
186 %{_mandir}/man1/asy.1*
187 %endif
188
189 %files gui
190 %defattr(644,root,root,755)
191 %attr(755,root,root) %{_bindir}/xasy
192 %dir %{_datadir}/%{name}/GUI
193 %attr(755,root,root) %{_datadir}/%{name}/GUI/xasy.py
194 %{_datadir}/%{name}/GUI/[!x]*.py
195 %ifnarch ppc
196 %{_mandir}/man1/xasy.1*
197 %endif
198
199 %ifarch ppc
200 # What should we do?
201 %else
202 %files doc
203 %defattr(644,root,root,755)
204 %{_docdir}/%{name}-doc
205 %endif
206
207 %files examples
208 %defattr(644,root,root,755)
209 %{_examplesdir}/%{name}-%{version}
210
211 %files latex
212 %defattr(644,root,root,755)
213 %{_datadir}/texmf-dist/tex/latex/asymptote
214
215 %files context
216 %defattr(644,root,root,755)
217 %{_datadir}/texmf-dist/tex/context/third/asymptote/colo-asy.tex
218
219 %files -n vim-syntax-asymptote
220 %defattr(644,root,root,755)
221 %{_datadir}/vim/vimfiles/syntax
This page took 0.072968 seconds and 3 git commands to generate.