2007-07-21 04:31:11 +02:00
|
|
|
#
|
2008-01-15 10:35:48 +01:00
|
|
|
# spec file for package glew (Version 1.5.0)
|
2007-07-21 04:31:11 +02:00
|
|
|
#
|
2008-01-15 10:35:48 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-07-21 04:31:11 +02:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
|
|
|
Name: glew
|
|
|
|
BuildRequires: Mesa-devel
|
2008-01-15 10:35:48 +01:00
|
|
|
Url: http://glew.sourceforge.net/
|
|
|
|
License: BSD 3-Clause; GPL v2 only; Other uncritical OpenSource License
|
2007-07-21 04:31:11 +02:00
|
|
|
Group: System/Libraries
|
|
|
|
Summary: OpenGL Extension Wrangler Library
|
2008-01-15 10:35:48 +01:00
|
|
|
Version: 1.5.0
|
2007-07-21 04:31:11 +02:00
|
|
|
Release: 1
|
|
|
|
Source: %{name}-%{version}-src.tar.bz2
|
2008-01-15 10:35:48 +01:00
|
|
|
Requires: libGLEW1_5 >= %{version}
|
2007-07-21 04:31:11 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
|
|
|
|
open-source C/C++ extension loading library. GLEW provides efficient
|
|
|
|
run-time mechanisms for determining which OpenGL extensions are
|
|
|
|
supported on the target platform. OpenGL core and extension
|
|
|
|
functionality is exposed in a single header file.
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-01-15 10:35:48 +01:00
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Milan Ikits
|
|
|
|
Marcelo Magallon
|
|
|
|
|
|
|
|
%package -n libGLEW1_5
|
|
|
|
Group: System/Libraries
|
|
|
|
Summary: OpenGL Extension Wrangler Library
|
|
|
|
Requires: %{name} = %{version} Mesa-devel
|
|
|
|
|
|
|
|
%description -n libGLEW1_5
|
|
|
|
The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
|
|
|
|
open-source C/C++ extension loading library. GLEW provides efficient
|
|
|
|
run-time mechanisms for determining which OpenGL extensions are
|
|
|
|
supported on the target platform. OpenGL core and extension
|
|
|
|
functionality is exposed in a single header file.
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-07-21 04:31:11 +02:00
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Milan Ikits
|
|
|
|
Marcelo Magallon
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Group: System/Libraries
|
|
|
|
Summary: OpenGL Extension Wrangler Library
|
|
|
|
Requires: %{name} = %{version} Mesa-devel
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
|
|
|
|
open-source C/C++ extension loading library. GLEW provides efficient
|
|
|
|
run-time mechanisms for determining which OpenGL extensions are
|
|
|
|
supported on the target platform. OpenGL core and extension
|
|
|
|
functionality is exposed in a single header file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Milan Ikits
|
|
|
|
Marcelo Magallon
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n %{name}
|
2008-01-15 10:35:48 +01:00
|
|
|
chmod -x doc/glew.txt
|
2007-07-21 04:31:11 +02:00
|
|
|
|
|
|
|
%build
|
2008-01-15 10:35:48 +01:00
|
|
|
make %{?jobs:-j%jobs} POPT="$RPM_OPT_FLAGS" LIBDIR=%{_libdir} LDFLAGS.EXTRA= STRIP=/bin/true
|
2007-07-21 04:31:11 +02:00
|
|
|
|
|
|
|
%install
|
2008-01-15 10:35:48 +01:00
|
|
|
ln -s /bin/true strip
|
|
|
|
export PATH=$PWD:$PATH
|
|
|
|
make GLEW_DEST=$RPM_BUILD_ROOT%{_prefix} LIBDIR=$RPM_BUILD_ROOT%{_libdir} LDFLAGS.EXTRA= STRIP=/bin/true install
|
|
|
|
chmod +x $RPM_BUILD_ROOT%{_libdir}/*.so.*
|
2007-07-21 04:31:11 +02:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2008-01-15 10:35:48 +01:00
|
|
|
%post -n libGLEW1_5 -p /sbin/ldconfig
|
2007-07-21 04:31:11 +02:00
|
|
|
|
2008-01-15 10:35:48 +01:00
|
|
|
%postun -n libGLEW1_5 -p /sbin/ldconfig
|
2007-07-21 04:31:11 +02:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc doc/*
|
|
|
|
%{_bindir}/*info
|
2008-01-15 10:35:48 +01:00
|
|
|
|
|
|
|
%files -n libGLEW1_5
|
|
|
|
%defattr(-,root,root)
|
2007-07-21 04:31:11 +02:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_includedir}/GL/*.h
|
|
|
|
%{_libdir}/*.*a
|
|
|
|
%{_libdir}/*.so
|
|
|
|
|
|
|
|
%changelog
|
2008-01-15 10:35:48 +01:00
|
|
|
* Mon Jan 14 2008 - sbrabec@suse.cz
|
|
|
|
- Updated to version 1.5.0:
|
|
|
|
* less restrictive license
|
|
|
|
* minor fixes
|
|
|
|
- Split package according to the shared library packaging policy.
|
2007-07-21 04:31:11 +02:00
|
|
|
* Thu Jul 12 2007 - sbrabec@suse.cz
|
|
|
|
- New SuSE package, version 1.4.0.
|