]> git.pld-linux.org Git - packages/Atlas-C++.git/blob - Atlas-C++.spec
- remaining pl summaries, added post/postun instead of soname symlink
[packages/Atlas-C++.git] / Atlas-C++.spec
1 Summary:        C++ reference implementation of the Atlas protocol
2 Summary(pl):    Implementacja protoko³u Atlas
3 Name:           Atlas-C++
4 Version:        0.4.4
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Group(de):      Libraries
9 Group(es):      Bibliotecas
10 Group(fr):      Librairies
11 Group(pl):      Biblioteki
12 Group(pt_BR):   Bibliotecas
13 Group(ru):      âÉÂÌÉÏÔÅËÉ
14 Group(uk):      â¦Â̦ÏÔÅËÉ
15 Source0:        ftp://victor.worldforge.org/pub/worldforge/libs/Atlas-C++/%{name}-%{version}.tar.gz
16 BuildRequires:  autoconf
17 BuildRequires:  automake
18 BuildRequires:  libtool
19 BuildRequires:  libstdc++-devel
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 Atlas-C++ is the current C++ implementation of the Atlas protocol, a
24 communications layer designed to be used in the WorldForge MMORPG
25 gaming system. This library is suitable for linking to either clients
26 or servers.
27
28 %description -l pl
29 Atlas-C++ jest implementacj± (w jêzyku C++) protoko³u Atlas, warstwy
30 komunikacyjnej przeznaczonej do systemów WorldForge MMORPG. Bibliotekê
31 tê przygotowano zarówno dla aplikacji klienckich, jak i serwerów.
32
33 %package devel
34 Summary:        Header files for Atlas-C++ development
35 Summary(pl):    Pliki nag³ówkowe do biblioteki Atlas-C++
36 Group:          Development/Libraries
37 Group(de):      Entwicklung/Libraries
38 Group(es):      Desarrollo/Bibliotecas
39 Group(fr):      Development/Librairies
40 Group(pl):      Programowanie/Biblioteki
41 Group(pt_BR):   Desenvolvimento/Bibliotecas
42 Group(ru):      òÁÚÒÁÂÏÔËÁ/âÉÂÌÉÏÔÅËÉ
43 Group(uk):      òÏÚÒÏÂËÁ/â¦Â̦ÏÔÅËÉ
44 Requires:       %{name} = %{version}
45 Requires:       libstdc++-devel
46
47 %description devel
48 Atlas-C++ is the current C++ implementation of the Atlas protocol, a
49 communications layer designed to be used in the WorldForge MMORPG
50 gaming system. This library is suitable for linking to either clients
51 or servers.
52
53 This package contains the header files needed to develop programs that
54 use these Atlas-C++
55
56 %description devel -l pl
57 Atlas-C++ jest implementacj± (w jêzyku C++) protoko³u Atlas, warstwy
58 komunikacyjnej przeznaczonej do systemów WorldForge MMORPG. Bibliotekê
59 tê przygotowano zarówno dla aplikacji klienckich, jak i serwerów.
60
61 Pakiet zawiera pliki nag³ówkowe niezbêdne do kompilowania programów
62 u¿ywaj±cych bibliotek Atlas-C++.
63
64 %package static
65 Summary:        Static libraries for Atlas-C++ development
66 Summary(pl):    Statyczne biblioteki Atlas-C++
67 Group:          Development/Libraries
68 Group(de):      Entwicklung/Libraries
69 Group(es):      Desarrollo/Bibliotecas
70 Group(fr):      Development/Librairies
71 Group(pl):      Programowanie/Biblioteki
72 Group(pt_BR):   Desenvolvimento/Bibliotecas
73 Group(ru):      òÁÚÒÁÂÏÔËÁ/âÉÂÌÉÏÔÅËÉ
74 Group(uk):      òÏÚÒÏÂËÁ/â¦Â̦ÏÔÅËÉ
75 Requires:       %{name}-devel = %{version}
76
77 %description static
78 Atlas-C++ is the current C++ implementation of the Atlas protocol, a
79 communications layer designed to be used in the WorldForge MMORPG
80 gaming system. This library is suitable for linking to either clients
81 or servers.
82
83 This package contains the static Atlas-C++ libraries.
84
85 %description static -l pl
86 Atlas-C++ jest implementacj± (w jêzyku C++) protoko³u Atlas, warstwy
87 komunikacyjnej przeznaczonej do systemów WorldForge MMORPG. Bibliotekê
88 tê przygotowano zarówno dla aplikacji klienckich, jak i serwerów.
89
90 Pakiet zawiera statyczne biblioteki Atlas-C++.
91
92 %prep
93 %setup -q
94
95 %build
96 aclocal
97 autoheader
98 libtoolize --automake --copy --force
99 automake --add-missing --copy --gnu --force
100 autoconf
101 %configure
102 %{__make}
103
104 %install
105 rm -rf $RPM_BUILD_ROOT
106
107 %{__make} install DESTDIR=$RPM_BUILD_ROOT
108
109 gzip -9nf AUTHORS ChangeLog NEWS README
110
111 %clean
112 rm -rf $RPM_BUILD_ROOT
113
114 %post   -p /sbin/ldconfig
115 %postun -p /sbin/ldconfig
116
117 %files
118 %defattr(644,root,root,755)
119 %doc *.gz
120 %attr(755,root,root) %{_libdir}/lib*.so.*.*
121
122 %files devel
123 %defattr(644,root,root,755)
124 %attr(755,root,root) %{_bindir}/atlas-config
125 %{_includedir}/Atlas
126 %attr(755,root,root) %{_libdir}/lib*.la
127 %{_libdir}/lib*.so
128 %{_aclocaldir}/atlas.m4
129
130 %files static
131 %defattr(644,root,root,755)
132 %{_libdir}/lib*.a
This page took 0.072043 seconds and 3 git commands to generate.