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