]> git.pld-linux.org Git - packages/asymptote.git/blob - asymptote.spec
- hungarizing
[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.59
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:  9d7c25d9e3a24b0d9b63c98b5f676c89
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:  tetex-dvips
20 BuildRequires:  tetex-format-latex
21 BuildRequires:  tetex-tex-babel
22 BuildRequires:  texinfo-texi2dvi
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 doc
43 Summary:        Asymptote documentation
44 Summary(hu.UTF-8):      Asymptote dokumentáció
45 Summary(pl.UTF-8):      Dokumentacja do Asymptote
46 Group:          Documentation
47 Requires:       %{name} = %{epoch}:%{version}-%{release}
48
49 %description doc
50 Asymptote documentation.
51
52 %description doc -l hu.UTF-8
53 Asymptote dokumentációja.
54
55 %description doc -l pl.UTF-8
56 Dokumentacja do Asymptote.
57
58 %package examples
59 Summary:        Asymptote examples
60 Summary(hu.UTF-8):      Asymptote példák
61 Summary(pl.UTF-8):      Przykłady do Asymptote
62 Group:          Documentation
63 Requires:       %{name} = %{epoch}:%{version}-%{release}
64
65 %description examples
66 Asymptote examples.
67
68 %description examples -l hu.UTF-8
69 Asymptote példák.
70
71 %description examples -l pl.UTF-8
72 Przykładowe pliki dla asymptote.
73
74 %prep
75 %setup -q
76
77 %build
78 %{__autoheader}
79 %{__autoconf}
80 %configure \
81         CPPFLAGS=-I/usr/include/gc \
82         --disable-static \
83         --enable-gc=%{_includedir}/gc \
84         --with-docdir=%{_docdir}/%{name}-doc
85 cd doc && for i in %{_datadir}/texmf/tex/texinfo/*; do ln -s $i; done && cd ..
86
87 %{__make} all
88
89 %install
90 rm -rf $RPM_BUILD_ROOT
91
92 # I don't know why need it - maybe the bad tetex configuration?
93 # And the solution suggested by asympote's doc doesn't work too :(
94 # cp %{_datadir}/texmf/tex/{plain/pdfcolor/pdfcolor.tex,generic/epsf/epsf.tex,texinfo/texinfo.tex} doc
95 %{__make} install \
96         DESTDIR=$RPM_BUILD_ROOT
97
98 install -d $RPM_BUILD_ROOT%{_examplesdir}
99 mv $RPM_BUILD_ROOT%{_docdir}/%{name}-doc/examples $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
100
101 %clean
102 rm -rf $RPM_BUILD_ROOT
103
104 %files
105 %defattr(644,root,root,755)
106 %doc README TODO BUGS
107 %attr(755,root,root) %{_bindir}/asy
108 %attr(755,root,root) %{_bindir}/xasy
109 %{_datadir}/%{name}
110 %{_datadir}/texmf*/tex/latex/asymptote
111 %{_mandir}/man1/*
112
113 %files examples
114 %defattr(644,root,root,755)
115 %{_examplesdir}/%{name}-%{version}
116
117 %files doc
118 %defattr(644,root,root,755)
119 %{_docdir}/%{name}-doc
This page took 0.222967 seconds and 4 git commands to generate.