]> git.pld-linux.org Git - packages/STLport.git/blob - STLport.spec
6387f20812e40e57ba335b3bae1989dc4b44e85d
[packages/STLport.git] / STLport.spec
1 Summary:        C++ standard library
2 Summary(pl):    Biblioteki standardowe C++
3 Name:           STLport
4 Version:        4.6.1
5 Release:        1
6 Epoch:          2
7 License:        distributable (see README.gz)
8 Group:          Libraries
9 Source0:        http://www.stlport.com/archive/%{name}-%{version}.tar.gz
10 # Source0-md5:  383cb0e06bb6cebd6c852b478081d54c
11 Patch0:         %{name}-nodebug.patch
12 Patch1:         %{name}-soname.patch
13 Patch2:         %{name}-gcc34.patch
14 Patch3:         %{name}-4.5.3-gcc3stdexcept.patch
15 Patch4:         %{name}-4.5.3-extra-cxxflags.patch
16 URL:            http://www.stlport.org/
17 BuildRequires:  libstdc++-devel >= 5:3.3.2
18 %requires_eq    libstdc++
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 STLport is a multiplatform implementation of C++ Standard Template
23 Library based on SGI STL. It's used by e.g. OpenOffice.
24
25 %description -l pl
26 STLport to wieloplatformowa implementacja standardowej biblioteki
27 szablonów (Standard Template Library) C++ oparta na SGI STL. Jest
28 u¿ywana m.in. przez OpenOffice.
29
30 %package devel
31 Summary:        STLport heades files, documentation
32 Summary(pl):    Pliki nag³ówkowe i dokumentacja do STLport
33 Group:          Development/Libraries
34 Requires:       %{name} = %{epoch}:%{version}-%{release}
35
36 %description devel
37 Header files and development documentation for STLport.
38
39 %description devel -l pl
40 Pliki nag³ówkowe i dokumentacja dla STLport.
41
42 %package static
43 Summary:        Static STLport libraries
44 Summary(pl):    Biblioteki statyczne do STLport
45 Group:          Development/Libraries
46 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
47
48 %description static
49 Static STLport libraries.
50
51 %description static -l pl
52 Biblioteki statyczne do STLport.
53
54 %prep
55 %setup -q
56 %patch0 -p1
57 %patch1 -p1
58 %patch2 -p1
59 %patch3 -p1
60 %patch4 -p1
61
62 %build
63 cd src
64 CXXFLAGS="%{rpmcflags}" \
65 %{__make} -f gcc.mak
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69 cd src
70 %{__make} -f gcc.mak INSTALLDIR=$RPM_BUILD_ROOT%{_prefix} install
71
72 %clean
73 rm -rf $RPM_BUILD_ROOT
74
75 %post   -p /sbin/ldconfig
76 %postun -p /sbin/ldconfig
77
78 %files
79 %defattr(644,root,root,755)
80 %doc README
81 %attr(755,root,root) %{_libdir}/*.so.*.*
82 %attr(755,root,root) %{_libdir}/*.so
83
84 %files devel
85 %defattr(644,root,root,755)
86 %doc doc/{images,README.gcc.html,[a-z]*.html}
87 %{_includedir}/stlport
88
89 %files static
90 %defattr(644,root,root,755)
91 %{_libdir}/*.a
This page took 0.050666 seconds and 2 git commands to generate.