]> git.pld-linux.org Git - packages/freeglut.git/blob - freeglut.spec
Version: 2.8.1
[packages/freeglut.git] / freeglut.spec
1 Summary:        A freely licensed alternative to the GLUT library
2 Summary(pl.UTF-8):      Zamiennik biblioteki GLUT na wolnej licencji
3 Name:           freeglut
4 Version:        2.8.1
5 Release:        1
6 License:        MIT
7 Group:          Libraries
8 Source0:        http://downloads.sourceforge.net/freeglut/%{name}-%{version}.tar.gz
9 # Source0-md5:  918ffbddcffbac83c218bc52355b6d5a
10 URL:            http://freeglut.sourceforge.net/
11 BuildRequires:  OpenGL-GLU-devel
12 BuildRequires:  autoconf >= 2.59-9
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRequires:  xorg-lib-libXext-devel
16 BuildRequires:  xorg-lib-libXi-devel
17 BuildRequires:  xorg-lib-libXxf86vm-devel
18 Provides:       OpenGL-glut = 4.0
19 Obsoletes:      glut
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 Freeglut, the Free OpenGL Utility Toolkit, is meant to be a free
24 alternative to Mark Kilgard's GLUT library. It is distributed under an
25 X-Consortium style license (see COPYING for details), to offer you a
26 chance to use and/or modify the source.
27
28 It makes use of OpenGL, GLU, and pthread libraries. The library does
29 not make use of any GLUT code and is not 100% compatible. Code
30 recompilation and/or slight modifications might be required for your
31 applications to work with freeglut.
32
33 %description -l pl.UTF-8
34 Freeglut to Free OpenGL Utility Toolkit, mający być wolnodostępnym
35 zamiennikiem biblioteki GLUT Marka Kilgarda. Jest rozprowadzany na
36 licencji w stylu X-Consortium (szczegóły w pliku COPYING), aby
37 umożliwić korzystanie i/lub modyfikowanie źródeł.
38
39 Korzysta z bibliotek OpenGL, GLU i pthread. Biblioteka nie korzysta z
40 żadnego kodu GLUT-a i nie jest w 100% kompatybilna. Do działania
41 aplikacji z freeglutem może być konieczna rekompilacja kodu i/lub małe
42 modyfikacje.
43
44 %package devel
45 Summary:        Header files for freeglut library
46 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki freeglut
47 Group:          Development/Libraries
48 Requires:       %{name} = %{version}-%{release}
49 Requires:       OpenGL-GLU-devel
50 Requires:       xorg-lib-libXext-devel
51 Requires:       xorg-lib-libXi-devel
52 Requires:       xorg-lib-libXxf86vm-devel
53 Provides:       OpenGL-glut-devel = 4.0
54 Obsoletes:      glut-devel
55
56 %description devel
57 Header files for freeglut library.
58
59 %description devel -l pl.UTF-8
60 Pliki nagłówkowe biblioteki freeglut.
61
62 %package static
63 Summary:        Static freeglut library
64 Summary(pl.UTF-8):      Statyczna biblioteka freeglut
65 Group:          Development/Libraries
66 Requires:       %{name}-devel = %{version}-%{release}
67 Provides:       OpenGL-glut-static = 4.0
68 Obsoletes:      glut-static
69
70 %description static
71 Static freeglut library.
72
73 %description static -l pl.UTF-8
74 Statyczna biblioteka freeglut.
75
76 %prep
77 %setup -q
78
79 %build
80 %{__libtoolize}
81 %{__aclocal}
82 %{__autoconf}
83 %{__autoheader}
84 %{__automake}
85 %configure \
86         --disable-warnings
87 %{__make}
88
89 %install
90 rm -rf $RPM_BUILD_ROOT
91
92 %{__make} install \
93         DESTDIR=$RPM_BUILD_ROOT
94
95 %clean
96 rm -rf $RPM_BUILD_ROOT
97
98 %post   -p /sbin/ldconfig
99 %postun -p /sbin/ldconfig
100
101 %files
102 %defattr(644,root,root,755)
103 %doc AUTHORS COPYING ChangeLog FrequentlyAskedQuestions NEWS README TODO doc/{freeglut.html,index.html,progress.html,*.png}
104 %lang(fr) %doc LISEZ_MOI
105 %attr(755,root,root) %{_libdir}/libglut.so.*.*.*
106 %attr(755,root,root) %ghost %{_libdir}/libglut.so.3
107
108 %files devel
109 %defattr(644,root,root,755)
110 %doc doc/{freeglut_user_interface.html,structure.html}
111 %attr(755,root,root) %{_libdir}/libglut.so
112 %{_libdir}/libglut.la
113 %{_includedir}/GL/freeglut*.h
114 %{_includedir}/GL/glut.h
115
116 %files static
117 %defattr(644,root,root,755)
118 %{_libdir}/libglut.a
This page took 0.064212 seconds and 3 git commands to generate.