forked from pool/rfbplaymacro
This commit is contained in:
commit
911cfe73eb
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
0
ready
Normal file
0
ready
Normal file
3
rfbplaymacro-0.2.0.tar.bz2
Normal file
3
rfbplaymacro-0.2.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc8345aea90212291c0bc6684af4b722096bab671d8d26d2695623a69f1e8d99
|
||||
size 66369
|
26
rfbplaymacro.changes
Normal file
26
rfbplaymacro.changes
Normal file
@ -0,0 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 21:41:10 CET 2006 - mls@suse.de
|
||||
|
||||
- converted neededforbuild to BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 10 20:26:45 CET 2004 - adrian@suse.de
|
||||
|
||||
- add %defattr
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 16 09:40:25 CEST 2003 - coolo@suse.de
|
||||
|
||||
- use BuildRoot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 9 15:20:16 CEST 2002 - uli@suse.de
|
||||
|
||||
- update -> 0.2.0 (VNC authentication support)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 17 16:20:30 CEST 2002 - uli@suse.de
|
||||
|
||||
- initial package
|
||||
|
||||
|
66
rfbplaymacro.spec
Normal file
66
rfbplaymacro.spec
Normal file
@ -0,0 +1,66 @@
|
||||
#
|
||||
# spec file for package rfbplaymacro (Version 0.2.0)
|
||||
#
|
||||
# Copyright (c) 2004 SuSE Linux AG, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://www.suse.de/feedback/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# usedforbuild aaa_base acl attr bash bind-utils bison bzip2 coreutils cpio cpp cvs cyrus-sasl db devs diffutils e2fsprogs file filesystem fillup findutils flex gawk gdbm-devel glibc glibc-devel glibc-locale gpm grep groff gzip info insserv kbd less libacl libattr libgcc libstdc++ libxcrypt m4 make man mktemp modutils ncurses ncurses-devel net-tools netcfg openldap2-client openssl pam pam-devel pam-modules patch permissions popt ps rcs readline sed sendmail shadow strace syslogd sysvinit tar texinfo timezone unzip util-linux vim zlib zlib-devel autoconf automake binutils cracklib gcc gdbm gettext libtool perl rpm
|
||||
|
||||
Name: rfbplaymacro
|
||||
URL: http://cyberelk.net/tim/rfbplaymacro/
|
||||
License: GPL
|
||||
Group: System/X11/Utilities
|
||||
#Requires: xforms
|
||||
Autoreqprov: on
|
||||
Version: 0.2.0
|
||||
Release: 188
|
||||
Summary: replays VNC macros
|
||||
Source: %name-%version.tar.bz2
|
||||
#Patch: %name-%version.dif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
rfbplaymacro replays VNC macros as created by rfbproxy to a VNC server.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Tim Waugh <twaugh@redhat.com>
|
||||
|
||||
%prep
|
||||
%setup
|
||||
#%patch
|
||||
|
||||
%build
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
|
||||
make
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc ChangeLog NEWS README AUTHORS COPYING
|
||||
/usr/bin/rfbplaymacro
|
||||
|
||||
%changelog -n rfbplaymacro
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Sat Jan 10 2004 - adrian@suse.de
|
||||
- add %%defattr
|
||||
* Mon Jun 16 2003 - coolo@suse.de
|
||||
- use BuildRoot
|
||||
* Tue Jul 09 2002 - uli@suse.de
|
||||
- update -> 0.2.0 (VNC authentication support)
|
||||
* Wed Apr 17 2002 - uli@suse.de
|
||||
- initial package
|
Loading…
x
Reference in New Issue
Block a user