This commit is contained in:
parent
6255f9a85b
commit
d51753b7e0
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 25 00:51:46 CET 2009 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
- static libraries are not usable and now removed.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 20 19:20:54 CET 2008 - sbrabec@suse.cz
|
Thu Mar 20 19:20:54 CET 2008 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
23
glew.spec
23
glew.spec
@ -1,10 +1,17 @@
|
|||||||
#
|
#
|
||||||
# spec file for package glew (Version 1.5.0)
|
# spec file for package glew (Version 1.5.0)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
|
||||||
# package are under the same license as the package itself.
|
|
||||||
#
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -18,7 +25,7 @@ License: BSD 3-Clause; GPL v2 only; Other uncritical OpenSource License
|
|||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Summary: OpenGL Extension Wrangler Library
|
Summary: OpenGL Extension Wrangler Library
|
||||||
Version: 1.5.0
|
Version: 1.5.0
|
||||||
Release: 17
|
Release: 66
|
||||||
Source: %{name}-%{version}-src.tar.bz2
|
Source: %{name}-%{version}-src.tar.bz2
|
||||||
Requires: libGLEW1_5 >= %{version}
|
Requires: libGLEW1_5 >= %{version}
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -38,6 +45,7 @@ Authors:
|
|||||||
Marcelo Magallon
|
Marcelo Magallon
|
||||||
|
|
||||||
%package -n libGLEW1_5
|
%package -n libGLEW1_5
|
||||||
|
License: BSD 3-Clause; GPL v2 only; Other uncritical OpenSource License
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Summary: OpenGL Extension Wrangler Library
|
Summary: OpenGL Extension Wrangler Library
|
||||||
|
|
||||||
@ -56,6 +64,7 @@ Authors:
|
|||||||
Marcelo Magallon
|
Marcelo Magallon
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
|
License: BSD 3-Clause; GPL v2 only; Other uncritical OpenSource License
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Summary: OpenGL Extension Wrangler Library
|
Summary: OpenGL Extension Wrangler Library
|
||||||
Requires: %{name} = %{version} Mesa-devel
|
Requires: %{name} = %{version} Mesa-devel
|
||||||
@ -75,7 +84,7 @@ Authors:
|
|||||||
Marcelo Magallon
|
Marcelo Magallon
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n %{name}
|
%setup -q -n %{name}
|
||||||
chmod -x doc/glew.txt
|
chmod -x doc/glew.txt
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -86,6 +95,7 @@ ln -s /bin/true strip
|
|||||||
export PATH=$PWD:$PATH
|
export PATH=$PWD:$PATH
|
||||||
make GLEW_DEST=$RPM_BUILD_ROOT%{_prefix} LIBDIR=$RPM_BUILD_ROOT%{_libdir} LDFLAGS.EXTRA= STRIP=/bin/true install
|
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.*
|
chmod +x $RPM_BUILD_ROOT%{_libdir}/*.so.*
|
||||||
|
%{__rm} -f %{buildroot}%{_libdir}/*.*a
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -106,10 +116,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/GL/*.h
|
%{_includedir}/GL/*.h
|
||||||
%{_libdir}/*.*a
|
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 25 2009 crrodriguez@suse.de
|
||||||
|
- static libraries are not usable and now removed.
|
||||||
* Thu Mar 20 2008 sbrabec@suse.cz
|
* Thu Mar 20 2008 sbrabec@suse.cz
|
||||||
- Removed bad dependencies from libGLEW1_5 (bnc#372722).
|
- Removed bad dependencies from libGLEW1_5 (bnc#372722).
|
||||||
* Mon Jan 14 2008 sbrabec@suse.cz
|
* Mon Jan 14 2008 sbrabec@suse.cz
|
||||||
|
Loading…
x
Reference in New Issue
Block a user