automatic version update by autodist [release 0.2.3-1mamba;Sat Jan 24 2015]

This commit is contained in:
Automatic Build System 2024-01-06 05:50:19 +01:00
parent 7cc73760c0
commit f9d3741ed6
2 changed files with 20 additions and 30 deletions

View File

@ -1,15 +1,5 @@
# libspnav # libspnav
The libspnav library is provided as a replacement of the magellan library. It The libspnav library is provided as a replacement of the magellan library. It provides a cleaner, and more orthogonal interface. libspnav supports both the original X11 protocol for communicating with the driver, and the new alternative non-X protocol. Programs that choose to use the X11 protocol, are automatically compatible with either the free spacenavd driver or the official 3dxserv, as if they were using the magellan SDK.
provides a cleaner, and more orthogonal interface. libspnav supports both the Also, libspnav provides a magellan API wrapper on top of the new API. So, any applications that were using the magellan library, can switch to libspnav without any changes. And programmers that are familliar with the magellan API can continue using it with a free library without the restrictions of the official SDK.
original X11 protocol for communicating with the driver, and the new
alternative non-X protocol. Programs that choose to use the X11 protocol, are
automatically compatible with either the free spacenavd driver or the official
3dxserv, as if they were using the magellan SDK.
Also, libspnav provides a magellan API wrapper on top of the new API. So, any
applications that were using the magellan library, can switch to libspnav
without any changes. And programmers that are familliar with the magellan API
can continue using it with a free library without the restrictions of the
official SDK.

View File

@ -1,11 +1,11 @@
Name: libspnav Name: libspnav
Version: 0.2.2 Version: 0.2.3
Release: 1mamba Release: 1mamba
Summary: library to access 3D-input-devices Summary: library to access 3D-input-devices
Group: System/Libraries Group: System/Libraries
Vendor: openmamba Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: gil <puntogil@libero.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://spacenav.sourceforge.net/ URL: http://spacenav.sourceforge.net/
Source: http://downloads.sourceforge.net/project/spacenav/spacenav%20library%20%28SDK%29/libspnav%20%{version}/libspnav-%{version}.tar.gz Source: http://downloads.sourceforge.net/project/spacenav/spacenav%20library%20%28SDK%29/libspnav%20%{version}/libspnav-%{version}.tar.gz
Patch0: libspnav-0.2.2-Makefile_in.patch Patch0: libspnav-0.2.2-Makefile_in.patch
@ -13,18 +13,8 @@ License: BSD
BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
The libspnav library is provided as a replacement of the magellan library. It The libspnav library is provided as a replacement of the magellan library. It provides a cleaner, and more orthogonal interface. libspnav supports both the original X11 protocol for communicating with the driver, and the new alternative non-X protocol. Programs that choose to use the X11 protocol, are automatically compatible with either the free spacenavd driver or the official 3dxserv, as if they were using the magellan SDK.
provides a cleaner, and more orthogonal interface. libspnav supports both the Also, libspnav provides a magellan API wrapper on top of the new API. So, any applications that were using the magellan library, can switch to libspnav without any changes. And programmers that are familliar with the magellan API can continue using it with a free library without the restrictions of the official SDK.
original X11 protocol for communicating with the driver, and the new
alternative non-X protocol. Programs that choose to use the X11 protocol, are
automatically compatible with either the free spacenavd driver or the official
3dxserv, as if they were using the magellan SDK.
Also, libspnav provides a magellan API wrapper on top of the new API. So, any
applications that were using the magellan library, can switch to libspnav
without any changes. And programmers that are familliar with the magellan API
can continue using it with a free library without the restrictions of the
official SDK.
%package devel %package devel
Group: Development/Libraries Group: Development/Libraries
@ -33,12 +23,11 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel %description devel
libspnav - library to access 3D-input-devices. libspnav - library to access 3D-input-devices.
This package contains static libraries and header files needed for development.
This package contains static libraries and header files need for development.
%prep %prep
%setup -q %setup -q
%patch0 -p0 #%patch0 -p0
%build %build
%configure %configure
@ -52,6 +41,13 @@ chmod 755 %{buildroot}%{_libdir}/*.so.*
chmod 644 %{buildroot}%{_libdir}/*.*a chmod 644 %{buildroot}%{_libdir}/*.*a
chmod 644 %{buildroot}%{_includedir}/*.h chmod 644 %{buildroot}%{_includedir}/*.h
# Workaround for broken link
[ -e %{buildroot}%{_libdir}/libspnav.so.0.1 ] && \
ln -sf libspnav.so.0.1 %{buildroot}%{_libdir}/libspnav.so.0
[ -e %{buildroot}%{_libdir}/libspnav.so.0 ] && \
ln -sf libspnav.so.0 %{buildroot}%{_libdir}/libspnav.so
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -61,13 +57,17 @@ chmod 644 %{buildroot}%{_includedir}/*.h
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%{_libdir}/libspnav.so.* %{_libdir}/libspnav.so.*
%doc README
%files devel %files devel
%defattr(-,root,root) %defattr(-,root,root)
%{_includedir}/*.h %{_includedir}/*.h
%{_libdir}/libspnav.a %{_libdir}/libspnav.a
%{_libdir}/libspnav.so
%doc README
%changelog %changelog
* Sat Jan 24 2015 Automatic Build System <autodist@mambasoft.it> 0.2.3-1mamba
- automatic version update by autodist
* Wed Feb 02 2011 gil <puntogil@libero.it> 0.2.2-1mamba * Wed Feb 02 2011 gil <puntogil@libero.it> 0.2.2-1mamba
- package created by autospec - package created by autospec