Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
df4cd3d3
Commit
df4cd3d3
authored
Aug 21, 2005
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
split rpm into three packages: the library, -devel (headers), and x11vnc
parent
37f23b2c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
14 deletions
+57
-14
AUTHORS
AUTHORS
+2
-1
ChangeLog
ChangeLog
+3
-0
LibVNCServer.spec.in
LibVNCServer.spec.in
+52
-13
No files found.
AUTHORS
View file @
df4cd3d3
...
@@ -24,7 +24,8 @@ archives and please don't beat me, if I forgot you, but just send me an
...
@@ -24,7 +24,8 @@ archives and please don't beat me, if I forgot you, but just send me an
email!): Akira Hatakeyama, Karl J. Runge, Justin "Zippy" Dearing,
email!): Akira Hatakeyama, Karl J. Runge, Justin "Zippy" Dearing,
Oliver Mihatsch, Greg Sternberg, Werner Hofer, Giampiero Giancipoli,
Oliver Mihatsch, Greg Sternberg, Werner Hofer, Giampiero Giancipoli,
Glenn Mabutt, Paul Kreiner, Erik Kunze, Mike Frysinger, Martin Waitz,
Glenn Mabutt, Paul Kreiner, Erik Kunze, Mike Frysinger, Martin Waitz,
Mark McLoughlin, Paul Fox, Juan Jose Costello, Andre Leiadella.
Mark McLoughlin, Paul Fox, Juan Jose Costello, Andre Leiadella,
Alberto Lusiani.
Probably I forgot quite a few people sending a patch here and there, which
Probably I forgot quite a few people sending a patch here and there, which
really made a difference. Without those, some obscure bugs still would
really made a difference. Without those, some obscure bugs still would
...
...
ChangeLog
View file @
df4cd3d3
2005-08-21 Alberto Lusiani <alusiani@gmail.com>
* libvncserver.spec.in: split rpm into libvncserver, -devel and x11vnc
2005-07-12 Karl Runge <runge@karlrunge.com>
2005-07-12 Karl Runge <runge@karlrunge.com>
* x11vnc: tweaks for release, fix queue buildup under -viewonly
* x11vnc: tweaks for release, fix queue buildup under -viewonly
...
...
LibVNCServer.spec.in
View file @
df4cd3d3
# Note that this is NOT a relocatable package
# Note that this is NOT a relocatable package
Name: @PACKAGE@
Name: @PACKAGE@
Version: @VERSION@
Version: @VERSION@
Release:
1
Release:
2
Summary: a library to make writing a vnc server easy
Summary: a library to make writing a vnc server easy
Copyright: GPL
Copyright: GPL
Group: Libraries/Network
Group: Libraries/Network
Packager: Johannes.Schindelin <Johannes.Schindelin@gmx.de>
Packager: Johannes.Schindelin <Johannes.Schindelin@gmx.de>
Source: %{name}-%{version}.tar.gz
Source: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
Prefix: %{_prefix}
%description
%description
LibVNCServer makes writing a VNC server (or more correctly, a program
LibVNCServer makes writing a VNC server (or more correctly, a program
...
@@ -25,34 +22,76 @@ compression schemata.
...
@@ -25,34 +22,76 @@ compression schemata.
LibVNCServer was put together and is (actively ;-) maintained by
LibVNCServer was put together and is (actively ;-) maintained by
Johannes Schindelin <Johannes.Schindelin@gmx.de>
Johannes Schindelin <Johannes.Schindelin@gmx.de>
%package devel
Requires: %{name} = %{version}
Summary: Static Libraries and Header Files for LibVNCServer
Group: Libraries/Network
Requires: %{name} = %{version}
%description devel
Static Libraries and Header Files for LibVNCServer.
%package x11vnc
Requires: %{name} = %{version}
Summary: VNC server for the current X11 session
Group: User Interface/X
Requires: %{name} = %{version}
%description x11vnc
x11vnc is to X Window System what WinVNC is to Windows, i.e. a server
which serves the current X Window System desktop via RFB (VNC)
protocol to the user.
Based on the ideas of x0rfbserver and on LibVNCServer, it has evolved
into a versatile and performant while still easy to use program.
%prep
%prep
%setup -n %{name}-%{version}
%setup -n %{name}-%{version}
%build
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{
prefix}
# CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_
prefix}
%configure
make
make
%install
%install
make install prefix=$RPM_BUILD_ROOT%{prefix}
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
# make install prefix=%{buildroot}%{_prefix}
%makeinstall includedir="%{buildroot}%{_includedir}/rfb"
%clean
%{__install} -d -m0755 %{buildroot}%{_datadir}/x11vnc/classes
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
%{__install} classes/VncViewer.jar classes/index.vnc \
%{buildroot}%{_datadir}/x11vnc/classes
%clean
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
%pre
%pre
%post
%post
%preun
%preun
%postun
%postun
%files
%files
%defattr(-,root,root)
%defattr(-,root,root)
%{prefix}
%doc README INSTALL AUTHORS ChangeLog NEWS TODO
%{_bindir}/LinuxVNC
%{_bindir}/libvncserver-config
%{_libdir}/libvncclient.*
%{_libdir}/libvncserver.*
%files devel
%defattr(-,root,root)
%{_includedir}/rfb/*
%files x11vnc
%defattr(-,root,root)
%{_bindir}/x11vnc
%{_mandir}/man1/x11vnc.1*
%{_datadir}/x11vnc/classes
%changelog
%changelog
* Fri Aug 19 2005 Alberto Lusiani <alusiani@gmail.com> release 2
- create separate package for x11vnc to prevent conflicts with x11vnc rpm
- create devel package, needed to compile but not needed for running
* Sun Feb 9 2003 Johannes Schindelin
* Sun Feb 9 2003 Johannes Schindelin
- created libvncserver.spec.in
- created libvncserver.spec.in
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment