This commit is contained in:
parent
916afbafc2
commit
8ce098e735
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2111155a34625cb629002611439feca392a5b0019c3128bef0eae457dee6c10e
|
|
||||||
size 61252
|
|
3
rfbproxy-1.1.0.tar.bz2
Normal file
3
rfbproxy-1.1.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:141c65b07580ad16d8c75b7404e1107be39473dea4d6c7b39f9a3036e39a182e
|
||||||
|
size 640887
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 09 15:41:10 CEST 2008 - mfabian@suse.de
|
||||||
|
|
||||||
|
- bnc#388222: update to 1.1.0. From the ChangeLog:
|
||||||
|
• rfbproxy.c: Many changes. Developed FBS 1.1 file format.
|
||||||
|
Added shared-session record and PPM export. Added functions
|
||||||
|
to read multi-byte sequences from FBS files.
|
||||||
|
• rfbproxy.1: Consolidated old README file and most of what
|
||||||
|
I know of rfbproxy's options and problems into the man page.
|
||||||
|
• Makefile.am: Added regression tests for export. Removed
|
||||||
|
BUGS file (its one bug was fixed by FBS 1.1)
|
||||||
|
- enable regression tests during building the package
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 25 21:41:10 CET 2006 - mls@suse.de
|
Wed Jan 25 21:41:10 CET 2006 - mls@suse.de
|
||||||
|
|
||||||
|
@ -1,27 +1,28 @@
|
|||||||
#
|
#
|
||||||
# spec file for package rfbproxy (Version 0.6.5)
|
# spec file for package rfbproxy (Version 1.1.0)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 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
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
# Please submit bugfixes or comments via http://www.suse.de/feedback/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: rfbproxy
|
|
||||||
URL: http://people.redhat.com/twaugh/rfbproxy/
|
Name: rfbproxy
|
||||||
License: GPL
|
Url: http://cyberelk.net/tim/software/rfbproxy/
|
||||||
Group: System/X11/Utilities
|
License: GPL v2 or later
|
||||||
|
Group: System/X11/Utilities
|
||||||
#Requires: xforms
|
#Requires: xforms
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Version: 0.6.5
|
Version: 1.1.0
|
||||||
Release: 270
|
Release: 1
|
||||||
Summary: record or play back a VNC session
|
Summary: Record or play back a VNC session
|
||||||
Source: %name-%version.tar.bz2
|
Source: http://cyberelk.net/tim/data/rfbproxy/devel/%name-%version.tar.bz2
|
||||||
#Patch: patch.dif
|
#Patch: patch.dif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
rfbproxy is a simple proxy for VNC which allows recording of screen
|
rfbproxy is a simple proxy for VNC which allows recording of screen
|
||||||
@ -40,9 +41,9 @@ Authors:
|
|||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --mandir=%_mandir
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --mandir=%_mandir
|
||||||
make
|
make
|
||||||
|
top_builddir=. top_srcdir=. tests/run-tests
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -50,16 +51,26 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc BUGS COPYING README TODO
|
%doc COPYING README TODO
|
||||||
/usr/bin/rfbproxy
|
/usr/bin/rfbproxy
|
||||||
%_mandir/man1/rfbproxy.1.gz
|
%_mandir/man1/rfbproxy.1.gz
|
||||||
|
|
||||||
%changelog -n rfbproxy
|
%changelog
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Fri May 09 2008 mfabian@suse.de
|
||||||
|
- bnc#388222: update to 1.1.0. From the ChangeLog:
|
||||||
|
• rfbproxy.c: Many changes. Developed FBS 1.1 file format.
|
||||||
|
Added shared-session record and PPM export. Added functions
|
||||||
|
to read multi-byte sequences from FBS files.
|
||||||
|
• rfbproxy.1: Consolidated old README file and most of what
|
||||||
|
I know of rfbproxy's options and problems into the man page.
|
||||||
|
• Makefile.am: Added regression tests for export. Removed
|
||||||
|
BUGS file (its one bug was fixed by FBS 1.1)
|
||||||
|
- enable regression tests during building the package
|
||||||
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Wed Nov 02 2005 - dmueller@suse.de
|
* Thu Nov 03 2005 dmueller@suse.de
|
||||||
- don't build as root
|
- don't build as root
|
||||||
* Mon Jun 16 2003 - coolo@suse.de
|
* Mon Jun 16 2003 coolo@suse.de
|
||||||
- use BuildRoot
|
- use BuildRoot
|
||||||
* Wed Apr 17 2002 - uli@suse.de
|
* Wed Apr 17 2002 uli@suse.de
|
||||||
- initial package
|
- initial package
|
||||||
|
Loading…
x
Reference in New Issue
Block a user