SPECS: glfw.spec (NEW) - new

qboosh qboosh at pld-linux.org
Thu Dec 28 00:48:50 CET 2006


Author: qboosh                       Date: Wed Dec 27 23:48:50 2006 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- new

---- Files affected:
SPECS:
   glfw.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SPECS/glfw.spec
diff -u /dev/null SPECS/glfw.spec:1.1
--- /dev/null	Thu Dec 28 00:48:50 2006
+++ SPECS/glfw.spec	Thu Dec 28 00:48:45 2006
@@ -0,0 +1,131 @@
+# $Revision$, $Date$
+Summary:	Free, portable framework for OpenGL application development
+Summary(pl):	Wolnodostępny, przenośny szkielet do tworzenia aplikacji OpenGL
+Name:		glfw
+Version:	2.5.0
+Release:	1
+License:	BSD-like
+Group:		Libraries
+Source0:	http://dl.sourceforge.net/glfw/%{name}-%{version}.tar.bz2
+# Source0-md5:	c6dffefbfbe4415c915851b09e76edd9
+Patch0:		%{name}-opt.patch
+Patch1:		%{name}-shared.patch
+Patch2:		%{name}-pic.patch
+URL:		http://glfw.sourceforge.net/
+BuildRequires:	OpenGL-GLX-devel
+BuildRequires:	libtool
+BuildRequires:	xorg-lib-libX11-devel
+BuildRequires:	xorg-lib-libXxf86vm-devel
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+GLFW is a free, Open Source, portable framework for OpenGL application
+development. In short, it is a single library providing a powerful,
+portable API for otherwise operating system specific tasks such as
+opening an OpenGL window, and reading keyboard, mouse and joystick
+input.
+
+It also provides functions for reading a high precision timer,
+accessing OpenGL extensions, creating and synchronizing threads,
+reading textures from files and more.
+
+GLFW is available for Windows, MacOS X, Unix-like systems such as
+Linux and FreeBSD, and for AmigaOS and DOS.
+
+%description -l pl
+GLFW to wolnodostępny, mający otwarte źródła, przenośny szkielet do
+tworzenia aplikacji OpenGL. W skrócie jest to pojedyncza biblioteka
+udostępniająca potężne, przenośne API do zadań zależnych od systemu
+operacyjnego, takich jak otwieranie okna OpenGL, odczyt wejścia z
+klawiatury, myszy i joysticka.
+
+Zawiera także funkcje do odczytu zegara o wysokiej rozdzielczości,
+dostępu do rozszerzeń OpenGL, tworzenia i synchronizowania wątków,
+odczytu tekstur z plików i innych zadań.
+
+GLFW jest dostępny dla Windows, MacOS X, systemów uniksowych takich
+jak Linux czy FreeBSD oraz dla AmigaOS i DOS-a.
+
+%package devel
+Summary:	Header files for GLFW library
+Summary(pl):	Pliki nagłówkowe biblioteki GLFW
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+Requires:	OpenGL-GLX-devel
+Requires:	xorg-lib-libX11-devel
+Requires:	xorg-lib-libXxf86vm-devel
+
+%description devel
+Header files for GLFW library.
+
+%description devel -l pl
+Pliki nagłówkowe biblioteki GLFW.
+
+%package static
+Summary:	Static GLFW library
+Summary(pl):	Statyczna biblioteka GLFW
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{release}
+
+%description static
+Static GLFW library.
+
+%description static -l pl
+Statyczna biblioteka GLFW.
+
+%prep
+%setup -q -n %{name}-2.5
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+
+%build
+CC="%{__cc}" \
+LFLAGS="%{rpmldflags}" \
+INCS= \
+OPT="%{rpmcflags}" \
+./compile.sh
+
+%{__make} -C lib/x11 -f Makefile.x11 \
+	LFLAGS_LINK="%{rpmldflags} -lGL -lXxf86vm -lX11 -lpthread" \
+	LIBDIR=%{_libdir}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}/GL,%{_examplesdir}/%{name}-%{version}}
+
+libtool --mode=install install lib/x11/libglfw.la $RPM_BUILD_ROOT%{_libdir}
+install include/GL/glfw.h $RPM_BUILD_ROOT%{_includedir}/GL
+install examples/{*.c,*.tga,Makefile.x11} $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	-p /sbin/ldconfig
+%postun	-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc license.txt readme.html images
+%attr(755,root,root) %{_libdir}/libglfw.so.*.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%doc docs/*.pdf
+%attr(755,root,root) %{_libdir}/libglfw.so
+%{_libdir}/libglfw.la
+%{_includedir}/GL/glfw.h
+%{_examplesdir}/%{name}-%{version}
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libglfw.a
+
+%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2006/12/27 23:48:45  qboosh
+- new
================================================================


More information about the pld-cvs-commit mailing list