This commit is contained in:
committed by
Git OBS Bridge
parent
a68dd9c882
commit
822046dffe
@@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 18 17:56:22 CEST 2009 - prusnak@suse.cz
|
||||
|
||||
- create libgle3 and libgle-devel packages conforming
|
||||
to shared library policy
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 25 07:29:25 CET 2008 - crrodriguez@suse.de
|
||||
|
||||
|
||||
91
gle.spec
91
gle.spec
@@ -1,10 +1,17 @@
|
||||
#
|
||||
# spec file for package gle (Version 3.1.0)
|
||||
#
|
||||
# Copyright (c) 2008 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.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
@@ -12,15 +19,14 @@
|
||||
|
||||
|
||||
Name: gle
|
||||
BuildRequires: freeglut-devel libdrm-devel libstdc++-devel xorg-x11
|
||||
BuildRequires: freeglut-devel libdrm-devel libstdc++-devel
|
||||
License: Any permissive
|
||||
Group: System/Libraries
|
||||
AutoReqProv: on
|
||||
Version: 3.1.0
|
||||
Release: 65
|
||||
Release: 126
|
||||
Source: http://download.sourceforge.net/gle/gle-%{version}.tar.bz2
|
||||
Patch0: gle-%{version}.diff
|
||||
Patch1: gle-3.0.6-fltmax.dif
|
||||
Patch0: %{name}-%{version}.diff
|
||||
Patch1: %{name}-%{version}-fltmax.diff
|
||||
Url: http://linas.org/gle/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Summary: The GLE Tubing and Extrusion Library
|
||||
@@ -36,6 +42,49 @@ actual drawing of the tubing and extrusions.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Linas Vepstas <linas@linas.org>
|
||||
Mark Kilgard <mjk@nvidia.com>
|
||||
|
||||
%package -n libgle3
|
||||
License: Any permissive
|
||||
Group: System/Libraries
|
||||
Summary: The GLE Tubing and Extrusion Library
|
||||
|
||||
%description -n libgle3
|
||||
The GLE Tubing and Extrusion Library is a graphics application
|
||||
programming interface (API). The library consists of a number of C
|
||||
language subroutines for drawing tubing and extrusions. The library is
|
||||
distributed in source code form in a package that includes
|
||||
documentation, a VRML proposal, make files, and full source code and
|
||||
header files. It uses the OpenGL (TM) programming API to perform the
|
||||
actual drawing of the tubing and extrusions.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Linas Vepstas <linas@linas.org>
|
||||
Mark Kilgard <mjk@nvidia.com>
|
||||
|
||||
%package -n libgle-devel
|
||||
License: Any permissive
|
||||
Group: System/Libraries
|
||||
Summary: The GLE Tubing and Extrusion Library
|
||||
Requires: libgle3 = %{version}
|
||||
|
||||
%description -n libgle-devel
|
||||
The GLE Tubing and Extrusion Library is a graphics application
|
||||
programming interface (API). The library consists of a number of C
|
||||
language subroutines for drawing tubing and extrusions. The library is
|
||||
distributed in source code form in a package that includes
|
||||
documentation, a VRML proposal, make files, and full source code and
|
||||
header files. It uses the OpenGL (TM) programming API to perform the
|
||||
actual drawing of the tubing and extrusions.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Linas Vepstas <linas@linas.org>
|
||||
@@ -43,7 +92,7 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch
|
||||
%patch0
|
||||
%patch1
|
||||
find -name ".cvsignore" | xargs rm -fv
|
||||
|
||||
@@ -51,31 +100,39 @@ find -name ".cvsignore" | xargs rm -fv
|
||||
autoreconf -fi
|
||||
export CFLAGS="$RPM_OPT_FLAGS"
|
||||
%configure --disable-static --with-pic
|
||||
make
|
||||
make %{?jobs:-j%jobs}
|
||||
|
||||
%check
|
||||
make check
|
||||
|
||||
%install
|
||||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
rm -rf $RPM_BUILD_ROOT/usr/share/doc/gle
|
||||
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/gle
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%post -n libgle3 -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
%postun -n libgle3 -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%files -n libgle3
|
||||
%defattr(-, root, root)
|
||||
%doc AUTHORS README doc/gle-*.lsm
|
||||
%doc doc/html
|
||||
%doc AUTHORS COPYING doc/COPYING.artistic README
|
||||
%{_libdir}/lib*.so.*
|
||||
|
||||
%files -n libgle-devel
|
||||
%defattr(-, root, root)
|
||||
%doc doc/html/*.jpg doc/html/*.gif doc/html/*.html doc/html/README doc/gle-*.lsm
|
||||
%doc %{_mandir}/man3/*
|
||||
%{_libdir}/lib*
|
||||
%{_includedir}/GL
|
||||
%{_libdir}/lib*.so
|
||||
|
||||
%changelog
|
||||
* Mon May 18 2009 prusnak@suse.cz
|
||||
- create libgle3 and libgle-devel packages conforming
|
||||
to shared library policy
|
||||
* Mon Feb 25 2008 crrodriguez@suse.de
|
||||
- fix library-without-ldconfig-post* errors
|
||||
- spec file cleanup
|
||||
|
||||
Reference in New Issue
Block a user