debian/0000755000000000000000000000000011615300331007157 5ustar debian/compat0000644000000000000000000000000211615300331010355 0ustar 7 debian/watch0000644000000000000000000000041611615300331010211 0ustar version=3 # direct access is forbidden... #http://cloud.github.com/downloads/drinkmilk/directvnc/directvnc-(.*)\.tar\.gz # ... so we scan the home page instead http://github.com/drinkmilk/directvnc/downloads \ /downloads/drinkmilk/directvnc/directvnc-([\d\.]*).tar.gz debian/autogen.sh0000755000000000000000000000141311615300331011157 0ustar #!/bin/sh # # autogen.sh glue # # Requires: automake 1.9, autoconf 2.57+, libtool 1.5.6+ # Conflicts: autoconf 2.13 set -e # Refresh GNU autotools toolchain. echo Cleaning autotools files... find -type d -name autom4te.cache -print0 | xargs -0 rm -rf \; find -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \ -o -name depcomp -o -name ltmain.sh -o -name configure \ -o -name config.sub -o -name config.guess -o -name config.cache \ -o -name config.log -o -name Makefile.in \) -print0 | xargs -0 rm -f echo Running autoreconf... autoreconf --force --install # For the Debian package build test -d debian && { # link these in Debian builds rm -f config.sub config.guess ln -s /usr/share/misc/config.sub . ln -s /usr/share/misc/config.guess . } exit 0 debian/rules0000755000000000000000000000452211615300331010242 0ustar #!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) # FOR AUTOCONF 2.52 AND NEWER ONLY ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) confflags += --build $(DEB_HOST_GNU_TYPE) else confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) endif CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif export CPPFLAGS = -I/usr/X11R6/include configure: Makefile.am configure.in dh_testdir chmod +x debian/autogen.sh debian/autogen.sh config.status: configure dh_testdir ln -sf /usr/share/misc/config.sub . ln -sf /usr/share/misc/config.guess . rm -f config.cache ./configure $(confflags) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: config.status dh_testdir # Add here commands to compile the package. $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) clean [ ! -f Makefile ] || $(MAKE) distclean find \( -name config.sub -o -name config.guess \ -o -name config.cache -o -name config.log \) -print0 \ | xargs -0 -r rm -f \; dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Add here commands to install the package into debian/directvnc. $(MAKE) install DESTDIR=$(CURDIR)/debian/directvnc # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/copyright0000644000000000000000000000237111615300331011115 0ustar This package was debianized by: Ola Lundqvist on Sun, 31 Aug 2003 14:41:29 +0200. Maintained by Loris Boillet since 2010. It was downloaded from: http://github.com/drinkmilk/directvnc Upstream Author: Main author: Till Adam Head chief senior build engineer and release supervisor: Arnaud Launay Maintenance release from 2010: Loris Boillet This contains code from both the original AT&T implementation and the tightvnc implementation by Constantin Kaplinsky . Copyright (C) 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. On Debian systems, the complete text of the GNU General Public License may be found in `/usr/share/common-licenses/GPL-2'. debian/README.Debian0000644000000000000000000000070111615300331011216 0ustar directvnc for Debian -------------------- To be able to run this software you need access to the /dev/fb0 device so the user needs to be in the video group. The user will also need access to /dev/mouse or /dev/psaux to be able to run directvnc. Also note that access to /dev/tty0 will be needed if more than one directFB app is used at the same time. Originally by Ola Lundqvist Modified by Loris Boillet debian/control0000644000000000000000000000152511615300331010565 0ustar Source: directvnc Section: misc Priority: optional Maintainer: Loris Boillet Build-Depends: debhelper (>= 7), libdirectfb-dev (>= 0.9.24), zlib1g-dev, libjpeg-dev, pkg-config, x11proto-core-dev, autotools-dev, autoconf, automake, libtool Standards-Version: 3.9.2 Homepage: http://drinkmilk.github.com/directvnc/ Package: directvnc Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: x11proto-core-dev Description: VNC client using the framebuffer as display DirectVNC is a client implementing the remote framebuffer protocol (rfb) which is used by VNC servers. If a VNC server is running on a machine you can connect to it using this client and have the contents of its display shown on your screen. Keyboard and mouse events are sent to the server, so you can basically control a VNC server remotely. debian/source/0000755000000000000000000000000011615300331010457 5ustar debian/source/format0000644000000000000000000000001411615300331011665 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000001135211615300331011033 0ustar directvnc (0.7.7-1) unstable; urgency=low * New upstream release. * Update debian/control: - Build-Depends on libjpeg-dev, not libjpeg62-dev (Closes: #633728) - Bump Standards-Version from 3.8.4 to 3.9.2 (no changes needed). - Recommends x11proto-core-dev (useful to generate keymap files). * Fix debian/rules missing build-arch and build-indep target. Thanks to lintian. * Fix typos in copyright file. -- Loris Boillet Sun, 31 Jul 2011 09:15:59 +0100 directvnc (0.7.6-1) unstable; urgency=low * New maintainer. (Closes: #367169) * New upstream release. (Closes: #490057, #503390, #538110) - debian/patches/directvnc-manpage-bpp.patch: Merged upstream. - Fix lintian warnings: ancient libtool and spelling errors in manpage. * Add a note in README.debian about needed access to /dev/tty0 if more than one directFB app is used at the same time (Closes: #355754) * Bump debian/compat to 7. * Update debian/control: - Bump Standards-Version from 3.6.2 to 3.8.4 (no changes needed). - Add Homepage field. Thanks to lintian. - Add missing ${misc:Depends}. Thanks to lintian. - Add build-depends to autotools-dev, autoconf, automake and libtool. * Fix copyright without copyright notice. Thanks to lintian. * Replacing obsolete dh_clean -k with dh_prep. * Switch to dpkg-source 3.0 (quilt) format. * Autotools files now systematically re-generated (adds debian/autogen.sh). * Cleaned-up debian/rules: removed commented out dh_* commands. -- Loris Boillet Sun, 15 Feb 2010 09:13:09 +0100 directvnc (0.7.5-9) unstable; urgency=low * QA upload. * Replaced build-dependency on x-dev by x11proto-core-dev (Closes: #515360). * debian/rules: do not ignore error of "make distclean" -- Ralf Treinen Fri, 20 Feb 2009 23:21:48 +0100 directvnc (0.7.5-8) unstable; urgency=low [Ola Lundqvist ] * Orphaned package and set maintainer to QA team. [Roberto C. Sanchez ] * Replace DFBCardCapabilities with DFBGraphicsDeviceDescription, per http://mail.directfb.org/pipermail/directfb-users/2005-April/000181.html, closes: #364264 * Bump Build-Depends on libdirectfb-dev to 0.9.24. -- Ola Lundqvist Sun, 14 May 2006 10:44:19 +0200 directvnc (0.7.5-7.1) unstable; urgency=low * Non-maintainer upload. * Fix inclusion of X11R6 headers to workaround FTBFS: export CPPFLAGS = -I/usr/X11R6/include before configure in debian/rules * reinvent changes from 0.7.5-6.1, Ola Lundqvist silently ignored them and uploaded 0.7.5-7. * rm -f config.log to make build process more silent -- Jonas Meurer Wed, 12 Oct 2005 15:30:34 +0200 directvnc (0.7.5-7) unstable; urgency=low * Rebuild against libdirectfb-0.9-22, closes: #314976. * Updated standards version to 3.6.2. -- Ola Lundqvist Sun, 9 Oct 2005 21:46:23 +0200 directvnc (0.7.5-6.1) unstable; urgency=low * Non-maintainer upload. * rebuild against libdirectfb-0.9-22 for transition (closes: #314976) * bumped standards-version to 3.6.2 (no changes needed) * updated fsf address to make lintian happy * change xlibs-dev Build-Depends to x-dev, after searching docs and source i believe that only some x headers are needed to build. -- Jonas Meurer Mon, 3 Oct 2005 17:22:37 +0200 directvnc (0.7.5-6) unstable; urgency=low * Documented display size restriction, closes: #248009. * Applied patch from Brian Brunswick that fix a busy loop problem, closes: #246336. * Fixed another potential busy loop problem in the same way as #24336 is fixed. -- Ola Lundqvist Sun, 17 Apr 2005 00:11:50 +0200 directvnc (0.7.5-5) unstable; urgency=low * Fixed depends field, closes: #218358. Thanks to Guillem Jover for notifying me. * Added patch to fix a manpage issue, closes: #248015. Thanks to Marco Herrn for the patch. -- Ola Lundqvist Thu, 22 Jul 2004 21:55:43 +0200 directvnc (0.7.5-4) unstable; urgency=low * Rebuilt against libdirectfb 0.9.20, closes: #233508. -- Ola Lundqvist Fri, 12 Mar 2004 13:54:09 +0100 directvnc (0.7.5-3) unstable; urgency=low * Added even more build dependencies, closes: #210997. -- Ola Lundqvist Mon, 27 Oct 2003 22:31:22 +0100 directvnc (0.7.5-2) unstable; urgency=low * Fixed missing build dependency, closes: #210997. * Added versioned dependency on directfb. -- Ola Lundqvist Sat, 4 Oct 2003 12:21:53 +0200 directvnc (0.7.5-1) unstable; urgency=low * Initial release. -- Ola Lundqvist Sun, 31 Aug 2003 14:41:29 +0200