This commit is contained in:
parent
45f6f5ba8b
commit
c81fb505a7
25
sbl.changes
25
sbl.changes
@ -1,3 +1,28 @@
|
|||||||
|
--------------------------------------------------------------------
|
||||||
|
Mon Jul 23 12:40:32 CEST 2007 - marco@suse.de
|
||||||
|
|
||||||
|
- changed default value for brlname to none in suse-blinux.conf
|
||||||
|
- fixed build-problems for x86_64
|
||||||
|
do make LIBINSTPATH=/usr/lib64 for x86_64 architectures
|
||||||
|
|
||||||
|
--------------------------------------------------------------------
|
||||||
|
Tue Jul 17 15:49:24 CEST 2007 - marco@suse.de
|
||||||
|
- first release of brld
|
||||||
|
|
||||||
|
--------------------------------------------------------------------
|
||||||
|
Sat Jul 14 21:24:35 CEST 2007 - marco@suse.de
|
||||||
|
|
||||||
|
- version 3.0
|
||||||
|
- sbl now connects to brld (part of the sbl package)
|
||||||
|
- added speechdispatcher support (thanks to Halim Sahin)
|
||||||
|
- added some patches to the HT driver to improve
|
||||||
|
the handling of disconnects if Bt is used via rfcomm (thanks to Klaus Knopper)
|
||||||
|
- if sbl is used with the kbd_sniffer-kernel-patch keyboard.map is used by default
|
||||||
|
keyboardsettings in <brlname>.map will overwrite the settings in
|
||||||
|
keyboard.map (thanks to Klaus Knopper)
|
||||||
|
- impoved the fhp_usb driver - handling of incoming keyevents is now more
|
||||||
|
stable
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 2 13:06:32 CET 2007 - marco@suse.de
|
Fri Mar 2 13:06:32 CET 2007 - marco@suse.de
|
||||||
|
|
||||||
|
39
sbl.spec
39
sbl.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package sbl (Version 2.3b)
|
# spec file for package sbl (Version 3.0f)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
Name: sbl
|
Name: sbl
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
Version: 2.3b
|
Version: 3.0f
|
||||||
Release: 2
|
Release: 1
|
||||||
License: GNU General Public License (GPL)
|
License: GPL v2 or later
|
||||||
Group: Hardware/Other
|
Group: Hardware/Other
|
||||||
Source: sblsrc-2.3b.tgz
|
Source: sblsrc-3.0f.tgz
|
||||||
Summary: SuSE blinux
|
Summary: SuSE blinux
|
||||||
PreReq: %insserv_prereq
|
PreReq: %insserv_prereq
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -32,27 +32,29 @@ Authors:
|
|||||||
marco@suse.de
|
marco@suse.de
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n sblsrc-2.3b/prog
|
%setup -n sblsrc-3.0f
|
||||||
#%patch -p2
|
#%patch -p2
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE" LIB_CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE -fPIC"
|
make CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE" LIB_CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE -fPIC"
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make LIBINSTPATH=%{_libdir} DESTDIR=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
%run_ldconfig
|
||||||
%{insserv_force_if_yast etc/init.d/suse-blinux }
|
%{insserv_force_if_yast etc/init.d/suse-blinux }
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
|
%run_ldconfig
|
||||||
%{insserv_cleanup}
|
%{insserv_cleanup}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr (-,root,root,755)
|
%defattr (-,root,root,755)
|
||||||
%doc ../doc/*
|
%doc doc/* Changelog
|
||||||
/usr/lib/suse-blinux/keymap
|
/usr/lib/suse-blinux/keymap
|
||||||
/usr/lib/suse-blinux/lib
|
/usr/lib/suse-blinux/lib
|
||||||
%dir /usr/lib/suse-blinux
|
%dir /usr/lib/suse-blinux
|
||||||
@ -62,10 +64,31 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/usr/lib/suse-blinux/spk
|
/usr/lib/suse-blinux/spk
|
||||||
/usr/lib/suse-blinux/sbl
|
/usr/lib/suse-blinux/sbl
|
||||||
/usr/sbin/sbl
|
/usr/sbin/sbl
|
||||||
|
/usr/sbin/brld
|
||||||
|
/usr/sbin/rcbrld
|
||||||
|
%{_libdir}/libbrld.so
|
||||||
%config /etc/init.d/suse-blinux
|
%config /etc/init.d/suse-blinux
|
||||||
|
%config /etc/init.d/brld
|
||||||
%config /etc/suse-blinux.conf
|
%config /etc/suse-blinux.conf
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jul 23 2007 - marco@suse.de
|
||||||
|
- changed default value for brlname to none in suse-blinux.conf
|
||||||
|
- fixed build-problems for x86_64
|
||||||
|
do make LIBINSTPATH=/usr/lib64 for x86_64 architectures
|
||||||
|
* Tue Jul 17 2007 - marco@suse.de
|
||||||
|
- first release of brld
|
||||||
|
* Sat Jul 14 2007 - marco@suse.de
|
||||||
|
- version 3.0
|
||||||
|
- sbl now connects to brld (part of the sbl package)
|
||||||
|
- added speechdispatcher support (thanks to Halim Sahin)
|
||||||
|
- added some patches to the HT driver to improve
|
||||||
|
the handling of disconnects if Bt is used via rfcomm (thanks to Klaus Knopper)
|
||||||
|
- if sbl is used with the kbd_sniffer-kernel-patch keyboard.map is used by default
|
||||||
|
keyboardsettings in <brlname>.map will overwrite the settings in
|
||||||
|
keyboard.map (thanks to Klaus Knopper)
|
||||||
|
- impoved the fhp_usb driver - handling of incoming keyevents is now more
|
||||||
|
stable
|
||||||
* Fri Mar 02 2007 - marco@suse.de
|
* Fri Mar 02 2007 - marco@suse.de
|
||||||
- added patch from ssommer@suse.de
|
- added patch from ssommer@suse.de
|
||||||
- changed screen device from /dev/vcsa0 to /dev/vcsa
|
- changed screen device from /dev/vcsa0 to /dev/vcsa
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:19a58d9addc3babf692df6645a115189cadcd7ce1857782372b5ae94da03f561
|
|
||||||
size 271881
|
|
3
sblsrc-3.0f.tgz
Normal file
3
sblsrc-3.0f.tgz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:120fefc21061db64f5bfbd679a34ce31096892a28daeb616af9006f72d21d120
|
||||||
|
size 354181
|
Loading…
Reference in New Issue
Block a user