--- gnome-rdp-0.2.2.orig/debian/compat +++ gnome-rdp-0.2.2/debian/compat @@ -0,0 +1 @@ +5 --- gnome-rdp-0.2.2.orig/debian/watch +++ gnome-rdp-0.2.2/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://sf.net/gnome-rdp/gnome-rdp-(.*)\.tar\.gz --- gnome-rdp-0.2.2.orig/debian/manpages +++ gnome-rdp-0.2.2/debian/manpages @@ -0,0 +1 @@ +man/gnome-rdp.1 --- gnome-rdp-0.2.2.orig/debian/copyright +++ gnome-rdp-0.2.2/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Szilveszter Farkas on +Thu, 12 Jan 2006 21:20:38 +0100. + +It was downloaded from http://www.linuxforge.hu/ + +Upstream Author: Balazs Varkonyi + +Copyright (C) 2005-2006 Balazs Varkonyi + +License: + + This package 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 of the License, or + (at your option) any later version. + + This package 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. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- gnome-rdp-0.2.2.orig/debian/rules +++ gnome-rdp-0.2.2/debian/rules @@ -0,0 +1,114 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# 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) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +export MONO_SHARED_DIR=$(CURDIR) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +patch: patch-stamp + +patch-stamp: + dh_testdir + + for patch in debian/patches/*.patch; do \ + echo '-> '`basename $$patch`:; \ + if ! patch -p1 --ignore-whitespace --dry-run < $$patch; \ + then \ + exit 1; \ + fi; \ + patch -p1 --ignore-whitespace < $$patch; \ + done + + touch patch-stamp + +unpatch: + dh_testdir + + if [ -f patch-stamp ]; then \ + for patch in `ls debian/patches/*.patch | sort -r`; do \ + patch -p1 -R --ignore-whitespace < $$patch; \ + done; \ + fi + + rm -f patch-stamp + +config.status: configure patch + dh_testdir + + mkdir -p $(MONO_SHARED_DIR)/.wapi + + CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: distclean unpatch + +distclean: + dh_testdir + dh_testroot + rm -f build-stamp + + rm -rf $(MONO_SHARED_DIR)/.wapi + + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/gnome-rdp + + +# Build architecture-independent files here. +binary-indep: +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_clideps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gnome-rdp-0.2.2.orig/debian/docs +++ gnome-rdp-0.2.2/debian/docs @@ -0,0 +1 @@ +README --- gnome-rdp-0.2.2.orig/debian/patches/vncviewer.patch +++ gnome-rdp-0.2.2/debian/patches/vncviewer.patch @@ -0,0 +1,12 @@ +diff -Nur gnome-rdp.orig/src/Main.cs gnome-rdp/src/Main.cs +--- gnome-rdp.orig/src/Main.cs 2006-02-04 14:47:38.000000000 +0100 ++++ gnome-rdp/src/Main.cs 2006-02-11 00:13:10.000000000 +0100 +@@ -223,7 +223,7 @@ + if (sessionTreeView.config.Protocol == 1) + { + prc = new ProcessCaller( +- "vncviewer", ++ "xtightvncviewer", + par, + "/", + true, --- gnome-rdp-0.2.2.orig/debian/changelog +++ gnome-rdp-0.2.2/debian/changelog @@ -0,0 +1,30 @@ +gnome-rdp (0.2.2-0ubuntu2) edgy; urgency=low + + * Rebuild against the new, splitted mono (Ubuntu: #58163) + * debian/control: + + build-depend on libmono-sqlite1.0-cil and cli-common-dev (0.4.0) + + -- Sebastian Dröge Wed, 30 Aug 2006 14:54:59 +0200 + +gnome-rdp (0.2.2-0ubuntu1) dapper; urgency=low + + * New upstream release. (Fixes: Malone #38176) + * UVF Exception granted. (Malone #44549) + * Removed debian/gnome-rdp.1 since upstream provides it. + + -- Szilveszter Farkas (Phanatic) Sun, 14 May 2006 15:26:32 +0200 + +gnome-rdp (0.2.0-0ubuntu1) dapper; urgency=low + + * New upstream release. + * All 'Suggests:' are 'Depends:' now. + * patches/vncviewer.patch: + - use xtightvncviewer, since RealVNC's parameters are different from TightVNC's + + -- Szilveszter Farkas (Phanatic) Tue, 28 Feb 2006 10:51:21 +0100 + +gnome-rdp (0.1.3-r1-0ubuntu1) dapper; urgency=low + + * Initial release. + + -- Szilveszter Farkas (Phanatic) Sat, 21 Jan 2006 21:22:34 +0100 --- gnome-rdp-0.2.2.orig/debian/control +++ gnome-rdp-0.2.2/debian/control @@ -0,0 +1,16 @@ +Source: gnome-rdp +Section: utils +Priority: optional +Maintainer: Szilveszter Farkas (Phanatic) +Build-Depends: debhelper (>= 5.0.7), cli-common-dev (>= 0.4.0), autotools-dev, mono-mcs, libmono-dev, gtk-sharp2, libxml-parser-perl, pkg-config, libmono-sqlite1.0-cil, gnome-sharp2 +Standards-Version: 3.6.2 + +Package: gnome-rdp +Architecture: any +Depends: ${cli:Depends}, gnome-terminal, xtightvncviewer, openssh-client, rdesktop +Description: Remote Desktop Client for the GNOME Desktop + Remote Desktop Client for the GNOME Desktop. Supported protocols: RDP, VNC, + SSH. Additional programs required: rdesktop, tightvnc, ssh, gnome-terminal. + Application can be run with Mono runtime. Written in C#. + . + Homepage: http://gnome-rdp.linuxforge.hu/