--- xfce4-utils-4.4.2.orig/debian/postinst
+++ xfce4-utils-4.4.2/debian/postinst
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+	# Get xfce-mcs-manager to reinit
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+fi
+
+#DEBHELPER#
+
+exit 0
--- xfce4-utils-4.4.2.orig/debian/compat
+++ xfce4-utils-4.4.2/debian/compat
@@ -0,0 +1 @@
+4
--- xfce4-utils-4.4.2.orig/debian/copyright
+++ xfce4-utils-4.4.2/debian/copyright
@@ -0,0 +1,40 @@
+This package was debianized by Martin Loschwitz <madkiss@madkiss.org> on
+Fri, 11 Oct 2002 17:26:39 +0200.
+
+It was downloaded from http://xfce.sourceforge.net/ 
+
+Upstream Author are:
+Jasper Huijsmans <huysmans@users.sourceforge.net> and
+Olivier Fourdan <fourdan@xfce.org>
+Benedikt Meurer <benny@xfce.org>
+Xavier Maillard <zedek@fxgsproject.org>
+Brian J. Tarricone <bjt23@cornell.edu>
+
+Copyright holders:
+xfrun: Copyright (c) 2006 Brian J. Tarricone <bjt23@cornell.edu>
+xfce4-about: Copyright (C) 1999-2007 Olivier Fourdan (fourdan@xfce.org)
+xfhelp4: Copyright (C) 1999 Olivier Fourdan (fourdan@xfce.org)
+         Copyright (C) 2003 Jasper Huijsmans (jasper@xfce.org)
+startxfce4: Copyright (C) 1996-2003 Olivier Fourdan (fourdan@xfce.org)
+xflock4: Copyright (C) 1999, 2003 Olivier Fourdan (fourdan@xfce.org)
+xfmountdev4: Copyright (C) 1999 Olivier Fourdan (fourdan@xfce.org)
+
+xfce4-user-guide is: (c) 2006 Jasper Huijsmans
+
+Licensing:
+
+   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; version 2 dated June, 1991.
+
+   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'.
--- xfce4-utils-4.4.2.orig/debian/xfce4-utils.1
+++ xfce4-utils-4.4.2/debian/xfce4-utils.1
@@ -0,0 +1,18 @@
+.\" Copyright (C) 2004 Simon Huggins
+.TH XFCE4-UTILS "1" "February 2004" "xfce4_setup 0.1" "User Commands"
+.SH NAME
+xfce4-utils \- various XFce 4 utilities 
+.SH SYNOPSIS
+.B xfce4-utils
+.SH DESCRIPTION
+.PP
+These are various utilities which form part of the XFce desktop environment
+.SH "SEE ALSO"
+See /usr/share/xfce4/doc/C/xfce-utils.html for more information
+.SH "REPORTING BUGS"
+Report bugs to http://bugs.debian.org
+.SH COPYRIGHT
+Copyright \(co 2004 Simon Huggins
+.br
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--- xfce4-utils-4.4.2.orig/debian/xfterm4.1
+++ xfce4-utils-4.4.2/debian/xfterm4.1
@@ -0,0 +1,24 @@
+.\" Copyright (C) 2004 Simon Huggins
+.TH XFTERM4 "1" "February 2004" "xfce4_setup 0.1" "User Commands"
+.SH NAME
+xfterm4 \- terminal emulator script enhanced by the xfce4-panel
+.SH SYNOPSIS
+.B xfterm4
+.SH DESCRIPTION
+.PP
+Runs a terminal emulator \- normally x-terminal-emulator which can be set by
+\fBupdate-alternatives\fR(8).
+.br
+When
+.B xfterm4
+is run in the panel you can drag files or directories to it and have them
+viewed by appropriate applications.
+.SH AUTHOR
+Written by Simon Huggins
+.SH "REPORTING BUGS"
+Report bugs to http://bugs.debian.org
+.SH COPYRIGHT
+Copyright \(co 2004 Simon Huggins
+.br
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--- xfce4-utils-4.4.2.orig/debian/xfbrowser4.1
+++ xfce4-utils-4.4.2/debian/xfbrowser4.1
@@ -0,0 +1,19 @@
+.\" Copyright (C) 2007 Yves-Alexis Perez
+.TH XFBROWSER4 "1" "January 2005" "xfce4_setup 0.1" "User Commands"
+.SH NAME
+xfbrowser4 \- wrapper script to run user defined browser
+.SH SYNOPSIS
+.B xfbrowser4
+.SH DESCRIPTION
+.PP
+Try to find and run an user-defined browser via $BROWSER variable, preferred
+applications settings (in Xfce) or default to a static browser list.
+.SH AUTHOR
+Written by Yves-Alexis Perez
+.SH "REPORTING BUGS"
+Report bugs to http://bugs.debian.org
+.SH COPYRIGHT
+Copyright \(co 2007 Yves-Alexis Perez
+.br
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--- xfce4-utils-4.4.2.orig/debian/prerm
+++ xfce4-utils-4.4.2/debian/prerm
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+	# Get xfce-mcs-manager to reinit
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
+fi
+
+#DEBHELPER#
+
+exit 0
--- xfce4-utils-4.4.2.orig/debian/rules
+++ xfce4-utils-4.4.2/debian/rules
@@ -0,0 +1,112 @@
+#!/usr/bin/make -f
+
+export PWD=$(shell pwd)
+
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+# dpatch stuff
+#include /usr/share/dpatch/dpatch.make
+
+config.status: configure
+	
+	dh_testdir
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --sysconfdir=/etc  --with-browser=sensible-browser --enable-final --with-vendor-info=Debian
+
+build: build-stamp
+build-stamp: config.status
+
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean: unpatch
+
+	dh_testdir
+	dh_testroot
+	
+	-rm -f configure-stamp build-stamp 
+
+	[ ! -f Makefile ] || $(MAKE) distclean
+	-test -r /usr/share/misc/config.sub && \
+	  cp -f /usr/share/misc/config.sub config.sub
+	-test -r /usr/share/misc/config.guess && \
+	  cp -f /usr/share/misc/config.guess config.guess
+
+	dh_clean
+
+install: build
+	
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install DESTDIR=`pwd`/debian/xfce4-utils
+
+	install -d `pwd`/debian/xfce4-utils/usr/share/man/man1/
+	install `pwd`/debian/xfterm4.1 `pwd`/debian/xfce4-utils/usr/share/man/man1/xfterm4.1
+	install `pwd`/debian/xfce4-utils.1 `pwd`/debian/xfce4-utils/usr/share/man/man1/xfce4-utils.1
+	install `pwd`/debian/startxfce4.1 `pwd`/debian/xfce4-utils/usr/share/man/man1/startxfce4.1
+	install `pwd`/debian/xfbrowser4.1 `pwd`/debian/xfce4-utils/usr/share/man/man1/xfbrowser4.1
+
+	install -d `pwd`/debian/xfce4-utils/usr/share/xsessions
+	install -m 644 `pwd`/gdm/xfce.desktop `pwd`/debian/xfce4-utils/usr/share/xsessions/xfce4.desktop
+
+	perl -i -pe 's/TERMCMD=xterm/TERMCMD=x-terminal-emulator/' `pwd`/debian/xfce4-utils/usr/bin/xfterm4
+
+	perl -i -pe 's/FILEMAN=xftree4/FILEMAN=thunar/' `pwd`/debian/xfce4-utils/usr/bin/xfmountdev4
+
+	perl -i -pe 's/firefox/iceweasel/g' `pwd`/debian/xfce4-utils/usr/bin/xfbrowser4
+
+	# temp fix before upstream fix it for #427918
+	perl -i -pe 's/XDG_DATA_DIRS="usr/XDG_DATA_DIRS="\/usr/' `pwd`/debian/xfce4-utils/usr/bin/startxfce4
+	
+	rm -f `pwd`/debian/xfce4-utils/usr/lib/xfce4/mcs-plugins/*.la
+	rm -f `pwd`/debian/xfce4-utils/usr/lib/xfce4/mcs-plugins/*.a
+
+	install -d `pwd`/debian/xfce4-utils/usr/share/lintian/overrides
+	install -m 644 $(CURDIR)/debian/lintian-override \
+		`pwd`/debian/xfce4-utils/usr/share/lintian/overrides/xfce4-utils
+	install -m 644 `pwd`/debian/Debian \
+		`pwd`/debian/xfce4-utils/usr/share/xfce4/
+
+	chrpath -d -k `pwd`/debian/xfce4-utils/usr/bin/xfrun4 \
+		`pwd`/debian/xfce4-utils/usr/bin/xfce4-about
+
+binary-indep: build install
+
+binary-arch: build install
+
+	dh_testdir
+	dh_testroot
+	
+	dh_installdocs README AUTHORS NEWS
+	dh_installmenu
+
+	dh_link
+	
+	dh_installchangelogs ChangeLog
+	dh_strip
+
+	dh_compress
+
+	# file permissions
+	dh_fixperms
+	chmod +x `pwd`/debian/xfce4-utils/etc/xdg/xfce4/xinitrc
+
+	dh_installdeb
+	dh_shlibdeps
+	
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install patch unpatch
--- xfce4-utils-4.4.2.orig/debian/xfce4-utils.links
+++ xfce4-utils-4.4.2/debian/xfce4-utils.links
@@ -0,0 +1,6 @@
+/usr/share/man/man1/xfce4-utils.1.gz /usr/share/man/man1/xfrun4.1.gz
+/usr/share/man/man1/xfce4-utils.1.gz /usr/share/man/man1/xftaskbar4.1.gz
+/usr/share/man/man1/xfce4-utils.1.gz /usr/share/man/man1/xflock4.1.gz
+/usr/share/man/man1/xfce4-utils.1.gz /usr/share/man/man1/xfmountdev4.1.gz
+/usr/share/man/man1/xfce4-utils.1.gz /usr/share/man/man1/xfhelp4.1.gz
+/usr/share/man/man1/xfce4-utils.1.gz /usr/share/man/man1/xfce4-about.1.gz
--- xfce4-utils-4.4.2.orig/debian/changelog
+++ xfce4-utils-4.4.2/debian/changelog
@@ -0,0 +1,301 @@
+xfce4-utils (4.4.2-3~bpo40+1) etch-backports; urgency=low
+
+  * rebuild for etch-backports.
+  * debian/control: remove build-dep on dpatch.
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Fri, 21 Dec 2007 00:19:54 +0100
+
+xfce4-utils (4.4.2-3) unstable; urgency=low
+
+  * The “brown paper bag” release.
+  * debian/control: depend on x11-xserver-utils and not x11-servers-utils…
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Sat, 08 Dec 2007 22:43:10 +0100
+
+xfce4-utils (4.4.2-2) unstable; urgency=low
+
+  * debian/control:
+    - rewrite long description (include startxfce4)
+    - updated standard versions to 3.7.3.
+    - add dependencies on xinit and x11-server-utils because startxfce4 need
+      them.                                                     closes: #454985
+    - add my debian.org email address to uploader field.
+    - drop dpatch build-dep as we don't have patches anymore.
+  * debian/rules: remove dpatch rules include.
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Sat, 08 Dec 2007 19:09:48 +0100
+
+xfce4-utils (4.4.2-1) unstable; urgency=low
+
+  [ Yves-Alexis Perez ]
+  * New upstream release.
+  * debian/rules: 
+    - don't ignore all make errors at clean stage.
+    - fix parallel builds.
+
+  [ Simon Huggins ]
+  * Add Vcs-* headers to debian/control
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Sun, 02 Dec 2007 11:31:33 +0100
+
+xfce4-utils (4.4.1-3) unstable; urgency=low
+
+  * Use kill -s to keep Hurd and lintian happy at the same time.
+  * debian/control: Move fake Homepage field to a real one now dpkg
+    supports it.
+  * debian/menu: Remove leftover \                              closes: #447282
+
+ -- Simon Huggins <huggie@earth.li>  Sun, 21 Oct 2007 09:12:27 +0100
+
+xfce4-utils (4.4.1-2) unstable; urgency=low
+
+  (Yves-Alexis Perez)
+  * debian/xfterm4.1, debian/xfce4-utils.1: update bug reporting address in
+    manpage.
+  * debian/menu: switch to new menu policy.
+  * debian/postinst: use posix kill -s to avoid problems on hurd. 
+  (Simon Huggins)
+  * debian/rules: fixup mistake in startxfce4 that stops local panel plugins
+    working                                                     closes: #427918
+  * Recommend a screensaver so that xflock4 works (first reported by Cyril
+    Brulebois in 2006 and shamefully not fixed til now, sorry)  closes: #430288
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Mon, 08 Oct 2007 14:46:40 +0100
+
+xfce4-utils (4.4.1-1) unstable; urgency=low
+
+  * New upstream release. 
+  * debian/control: added versionned build-dep against gtk2.10.
+  * debian/startxfce4.1: correct path.							closes: #416943
+  * documentation provided is now for 4.4.						closes: #372846
+  * debian/copyright: update copyright holders.
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Sun, 15 Apr 2007 15:28:17 +0100
+
+xfce4-utils (4.4.0-1) experimental; urgency=low
+
+  (Yves-Alexis Perez)
+  * New upstream release.
+  * debian/control: updated build deps against Xfce 4.4.
+  * Provide a missing manpage for xfbrowser4.
+  * Use iceweasel instead of firefox in the static browser list of xfbrowser4.
+
+  (Emanuele Rocca)
+  * Empty TODO file removed.
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Thu, 25 Jan 2007 00:12:53 +0100
+
+xfce4-utils (4.3.99.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control: updated build-deps against Xfce 4.4RC2 (4.3.99.2).
+  * debian/control: moved thunar to Recommends. Updated description
+    accordingly.						Closes: #397085
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Thu, 16 Nov 2006 15:30:02 +0100
+
+xfce4-utils (4.3.99.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control: updated build-dep against Xfce 4.4RC1 (4.3.99.1).
+  * xfmountdev4: use thunar instead of xftree4 
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Sat, 23 Sep 2006 13:43:02 +0100
+
+xfce4-utils (4.3.90.2-1) unstable; urgency=low
+
+  (Yves-Alexis Perez)
+  * New upstream release.
+  * debian/postinst: fixed install on hurd by not using pkill.
+  * debian/control: updated standards version to 3.7.2.
+  (Simon Huggins)
+  * Add rpath fixes.
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Mon, 10 Jul 2006 19:19:54 +0200
+
+xfce4-utils (4.3.90.1-1) unstable; urgency=low
+
+  * New upstream release
+ 
+ -- Yves-Alexis Perez <corsac@corsac.net>  Wed, 03 May 2006 18:35:05 +0100
+
+xfce4-utils (4.2.3-2) unstable; urgency=low
+
+  * Fix for X11R7; stop depending on xlibs-static-*
+
+ -- Simon Huggins <huggie@earth.li>  Mon, 17 Apr 2006 18:14:48 +0100
+
+xfce4-utils (4.2.3-1) unstable; urgency=low
+
+  * Yves-Alexis Perez
+   * New Upstream Release
+   * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+  * Simon Huggins
+   * Move sysconfdir to /etc/xdg as per rest of the packages
+
+ -- Yves-Alexis Perez <corsac@corsac.net>  Sun, 27 Nov 2005 11:58:10 +0000
+
+xfce4-utils (4.2.2-1) unstable; urgency=low
+
+  * Simon Huggins
+    - New Upstream Release
+    - Change suite to unstable
+  * Emanuele Rocca
+    - Remove Depends on debianutils, it is Essential
+    - Remove chmod +x for files in bin/, it's the job of dh_fixperms
+    - Actually, etc/X11/xdg/xfce4/xinitrc needs to be chmodded
+    - Add lintian override: usr/share/xfce4/COPYING is not useless
+    - Add manpage for startxfce4
+  * Rudy Godoy
+    - Spelling fix for Xfce name
+
+ -- Simon Huggins <huggie@earth.li>  Sat, 18 Jun 2005 09:44:35 +0100
+
+xfce4-utils (4.2.1-1) experimental; urgency=low
+
+  * ML: New Upstream Release (Xfce 4.2.1)
+  * ML: Upload to experimental to prevents problems with NEW packages
+  * ML: debian/control: Added Maintainer/Uploaders fields
+
+ -- Martin Loschwitz <madkiss@debian.org>  Sat, 19 Mar 2005 13:02:00 +0100
+
+xfce4-utils (4.2.0-2) experimental; urgency=low
+
+  * Add --enable-final to configure.
+  * Add a Homepage: to the description
+  * Ship README AUTHORS and NEWS too.
+  * Stop rebuilding the docs - we don't do this anywhere else as upstream
+    should have built them in their tarballs.
+
+ -- Simon Huggins <huggie@earth.li>  Sun, 16 Jan 2005 16:45:32 +0000
+
+xfce4-utils (4.2.0-1) experimental; urgency=low
+
+  * New Upstream Release
+
+ -- Simon Huggins <huggie@earth.li>  Sat, 15 Jan 2005 12:00:40 +0000
+
+xfce4-utils (4.1.99.1-1) experimental; urgency=low
+
+  * ML: New Upstream Release (4.1.99.1 alias XFce4 4.2 RC1)
+
+ -- Martin Loschwitz <madkiss@debian.org>  Fri, 19 Nov 2004 18:28:00 +0100
+
+xfce4-utils (4.0.6-1) unstable; urgency=low
+
+  * New upstream release
+  * Reworked the description a bit
+  * Use a better way to use x-terminal-emulator not xterm in xfterm4
+
+ -- Simon Huggins <huggie@earth.li>  Mon, 19 Jul 2004 19:43:03 +0100
+
+xfce4-utils (4.0.5-3) unstable; urgency=low
+
+  * Add patch from Michael Banck to disable libgtkhtml2 on Hurd closes: #254384
+  * Use sensible-browser instead of mozilla (add Depends: debianutils)
+    closes: #254231
+  * Remove Norbert Tretkowski from uploaders as requested
+
+ -- Simon Huggins <huggie@earth.li>  Sat, 03 Jul 2004 18:25:07 +0100
+
+xfce4-utils (4.0.5-2) unstable; urgency=low
+
+  * gdm's changelog lies.  /etc/dm/Sessions isn't supported by KDM.  Put the
+    desktop file in /usr/share/xsessions instead
+
+ -- Simon Huggins <huggie@earth.li>  Tue, 04 May 2004 21:03:07 +0100
+
+xfce4-utils (4.0.5-1) unstable; urgency=low
+
+  * New upstream release
+  * Update upstream's libtool
+  * Correct path to docs in manpage
+  * Put back startxfce4 and /etc/X11/xfce4/xinitrc.  Upstream want this and I
+    can see no reason to exclude it.
+  * Update xlibs-pic dependency to xlibs-static-pic
+  * Install upstream's xfce.desktop to actually give us a gdm session under
+    the new gdm                                                closes: #241080
+  * Since we're installing this desktop file, add a postrm to remove it on purge
+  * Add a Suggests on xfce4-session since this will improve the desktop file
+
+ -- Simon Huggins <huggie@earth.li>  Sun, 02 May 2004 17:20:21 +0100
+
+xfce4-utils (4.0.3-2) unstable; urgency=low
+
+  * Update libtool closes: #237339
+  * Just adding Daniel wasn't enough.  Add self to Uploaders so katie doesn't
+    think this is an NMU again.
+
+ -- Simon Huggins <huggie@earth.li>  Tue, 09 Mar 2004 13:49:04 +0000
+
+xfce4-utils (4.0.3-1) unstable; urgency=low
+
+  * New Upstream release.
+  * Add Daniel Silverstone <dsilvers@debian.org> to Uploaders as approved by
+    madkiss
+  * Change xfterm4 to use x-terminal-emulator by default and Depend: on
+    xterm|x-terminal-emulator closes: #217204
+  * Add manpage for xfterm4 closes: #221834
+  * Add generic manpage for xfce4-utils refering to the upstream docs and
+    link their specific manpages to it
+  * Remove the .la and .a files from mcs-plugins
+  * Quote needs in menu for lintian
+  * Thanks to Daniel for checking and uploading these packages
+
+ -- Simon Huggins <huggie@earth.li>  Wed, 25 Feb 2004 11:24:58 +0000
+
+xfce4-utils (4.0.2-1) unstable; urgency=low
+
+  * New Upstream release.
+  * Added Build-Dependency for xlibs-pic (Closes: #215592)
+
+ -- Martin Loschwitz <madkiss@debian.org>  Fri, 26 Dec 2003 16:51:00 +0100
+
+xfce4-utils (4.0.0.final-1) unstable; urgency=low
+
+  * New Upstream release.
+  * New Co-Maintainer: Norbert Tretkowski.
+  * Various cleanups in debian/ subdirectory.
+  * Bumped Standards-Version to 3.6.1 (no changes).
+
+ -- Martin Loschwitz <madkiss@debian.org>  Tue, 29 Sep 2003 17:27:00 +0200 
+
+xfce4-utils (4.0.0+cvs.20030421-1) unstable; urgency=low
+
+  * New CVS checkout (2003-04-21)
+
+ -- Martin Loschwitz <madkiss@debian.org>  Mon, 21 Apr 2003 19:44:00 +0200
+ 
+xfce4-utils (4.0.0+cvs.20030301-1) unstable; urgency=low
+
+  * New CVS checkout (Using Xfce CVS, 2003-03-01)
+  * Official release (really this time!) (last release was never made public)
+  * debian/control: Changed Maintainer e-mail address
+
+ -- Martin Loschwitz <madkiss@debian.org>  Sat, 01 Mar 2003 14:52:00 +0100
+
+xfce4-utils (4.0.0+cvs.20030216-1) unstable; urgency=low
+
+  * New CVS checkout (Using Xfce CVS, 2003-02-16)
+  * Official release (last release was never made public)
+   
+ -- Martin Loschwitz <madkiss@madkiss.org>  Sun, 16 Feb 2003 13:21:00 +0100
+ 
+xfce4-utils (4.0.0+cvs.20030119-1) unstable; urgency=low
+
+  * New CVS checkout (Using Xfce4 CVS, 2003-01-19)
+
+ -- Martin Loschwitz <madkiss@madkiss.org>  Sun, 19 Jan 2003 18:48:00 +0100
+
+xfce4-utils (4.0.0+cvs.20021222-1) unstable; urgency=low
+
+  * New CVS checkout (using Xfce4 CVS, 2002-12-22)
+  * debian/control: Made some Suggests: being Recommends:
+
+ -- Martin Loschwitz <madkiss@madkiss.org>  Sun, 22 Dec 2002 16:08:00 +0100
+ 
+xfce4-utils (4.0.0+cvs.20021127-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #166636)
+
+ -- Martin Loschwitz <madkiss@madkiss.org>  Wed, 27 Nov 2002 18:25:00 +0100
--- xfce4-utils-4.4.2.orig/debian/preinst
+++ xfce4-utils-4.4.2/debian/preinst
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+if [ "$1" = "install" -o "$1" = "upgrade" ]; then
+	# Move the old config files before dpkg checks them.
+	if [ -d /etc/X11/xdg/xfce4 ]; then
+		mkdir -p /etc/xdg/xfce4 || true
+		mv /etc/X11/xdg/xfce4/* /etc/xdg/xfce4 || true
+		rmdir /etc/X11/xdg/xfce4 || true
+	fi
+fi
+
+#DEBHELPER#
+
+exit 0
--- xfce4-utils-4.4.2.orig/debian/postrm
+++ xfce4-utils-4.4.2/debian/postrm
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e
+
+if [ "$1" = "purge" ]; then
+	rm -f /etc/dm/Sessions/xfce4.desktop
+fi
+#DEBHELPER#
--- xfce4-utils-4.4.2.orig/debian/menu
+++ xfce4-utils-4.4.2/debian/menu
@@ -0,0 +1,12 @@
+?package(xfce4-utils): needs="X11" section="Applications/System/Administration" \
+    command="xfrun4" title="XFrun4" longtitle="XFce application start tool" \
+    hints="Start tool"
+?package(xfce4-utils): needs="text" section="Applications/Terminal Emulators" \
+    command="xfterm4" title="Xfterm4" \
+    longtitle="Launch script for terminal" hints="Start terminal"
+?package(xfce4-utils): needs="text" section="Screen/Locking" command="xflock4" \
+  title="Xflock4" longtitle="Locks the screen" hints="Screenlock"
+?package(xfce4-utils): needs="X11" section="Help" command="xfhelp4" \
+  title="Xfhelp4" longtitle="Shows help on XFce4" hints="Help"
+?package(xfce4-utils): needs="X11" section="Help" command="xfce4-about" \
+  title="Xfce4-about" longtitle="Shows infos on XFce4" hints="About Xfce4"
--- xfce4-utils-4.4.2.orig/debian/lintian-override
+++ xfce4-utils-4.4.2/debian/lintian-override
@@ -0,0 +1,4 @@
+# usr/share/xfce4/COPYING is necessary
+
+xfce4-utils binary: extra-license-file usr/share/xfce4/COPYING
+xfce4-utils binary: extra-license-file usr/share/xfce4/COPYING.vi
--- xfce4-utils-4.4.2.orig/debian/Debian
+++ xfce4-utils-4.4.2/debian/Debian
@@ -0,0 +1,10 @@
+Debian Xfce Team is <pkg-xfce-devel@lists.alioth.debian.org>
+
+Co maintainers are:
+
+Simon Huggins <huggie@earth.li>
+Yves-Alexis Perez <corsac@debian.org>
+Emanuele Rocca <ema@debian.org>
+
+Bugs should be reported to Debian BTS at: http://bugs.debian.org or using
+reportbug.
--- xfce4-utils-4.4.2.orig/debian/control
+++ xfce4-utils-4.4.2/debian/control
@@ -0,0 +1,23 @@
+Source: xfce4-utils
+Section: x11
+Priority: optional
+Maintainer: Debian Xfce Maintainers <pkg-xfce-devel@lists.alioth.debian.org>
+Uploaders: Martin Loschwitz <madkiss@debian.org>, Emanuele Rocca <ema@debian.org>, Simon Huggins <huggie@earth.li>, Yves-Alexis Perez <corsac@debian.org>
+Build-Depends: debhelper (>= 4.1.26), libgtk2.0-dev, libxft-dev, xfce4-mcs-manager-dev (>= 4.4.2), chrpath
+Standards-Version: 3.7.3
+Homepage: http://www.xfce.org/
+Vcs-Svn: svn://svn.debian.org/pkg-xfce/desktop/trunk/xfce4-utils/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/desktop/trunk/xfce4-utils/
+
+Package: xfce4-utils
+Architecture: any
+Depends: ${shlibs:Depends}, xterm|x-terminal-emulator, xbase-clients
+Recommends: xfwm4, xfce4-panel, thunar, xscreensaver | xlockmore | xlockmore-gl
+Suggests: xfce4-session
+Description: Various tools for Xfce
+ This package contains xfrun4, xfterm4, xflock4, xfmountdev4, xfbrowser4,
+ startxfce4, xfhelp4, xfce4-about, eight tools for Xfce.  Xfce is a desktop
+ environment that uses the GTK+ library and isn't resource-hungry.
+ .
+ If you want to use xfmountdev4, be sure to install Thunar before because it's
+ called by it.
--- xfce4-utils-4.4.2.orig/debian/watch
+++ xfce4-utils-4.4.2/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://www.xfce.org/archive/xfce-(.*)/src/ \
+	xfce-utils-(.*)\.tar\.bz2
--- xfce4-utils-4.4.2.orig/debian/startxfce4.1
+++ xfce4-utils-4.4.2/debian/startxfce4.1
@@ -0,0 +1,41 @@
+.\" Copyright (c) 2005 Emanuele Rocca
+.TH STARTXFCE4 "1" "June 2005" "startxfce4" "User Commands"
+.SH NAME
+startxfce4 \- initialize an Xfce session
+.SH SYNOPSIS
+.B startxfce4
+.SH DESCRIPTION
+.PP
+.B startxfce4 
+is a script responsible for starting an Xfce session. It runs
+.B xinit 
+passing the file specified in the 
+.B FILES
+subsection as an argument.
+.P
+You may want to modify the default
+.B xinitrc
+file. In order to do that, copy 
+.I /etc/xdg/xfce4/xinitrc
+to
+.I ~/.config/xfce4/xinitrc
+and modify that file.
+.SH FILES
+.PP
+.IP ~/.config/xfce4/xinitrc
+User configuration file
+.IP /etc/X11/xdg/xfce4/xinitrc
+System wide configuration file
+.SH SEE ALSO
+.PP
+.BR xfce4-session (1),
+.BR xinit (1),
+.BR dbus-launch (1),
+.BR ssh-agent (1),
+.BR file:///usr/share/xfce4/doc/C/xfce4-use.html#xfce4-getting-started
+.SH COPYRIGHT
+Copyright \(co 2005 Emanuele Rocca
+.br
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
--- xfce4-utils-4.4.2.orig/config.guess
+++ xfce4-utils-4.4.2/config.guess
@@ -139,23 +139,6 @@
 UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
 
-if [ "${UNAME_SYSTEM}" = "Linux" ] ; then
-	eval $set_cc_for_build
-	cat << EOF > $dummy.c
-	#include <features.h>
-	#ifdef __UCLIBC__
-	# ifdef __UCLIBC_CONFIG_VERSION__
-	LIBC=uclibc __UCLIBC_CONFIG_VERSION__
-	# else
-	LIBC=uclibc
-	# endif
-	#else
-	LIBC=gnu
-	#endif
-EOF
-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep LIBC= | sed -e 's: ::g'`
-fi
-
 # Note: order is significant - the case branches are not exclusive.
 
 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
@@ -850,28 +833,28 @@
 	echo ${UNAME_MACHINE}-pc-minix
 	exit ;;
     arm*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     avr32*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     cris:Linux:*:*)
-	echo cris-axis-linux-${LIBC}
+	echo cris-axis-linux-gnu
 	exit ;;
     crisv32:Linux:*:*)
-	echo crisv32-axis-linux-${LIBC}
+	echo crisv32-axis-linux-gnu
 	exit ;;
     frv:Linux:*:*)
-    	echo frv-unknown-linux-${LIBC}
+    	echo frv-unknown-linux-gnu
 	exit ;;
     ia64:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     m32r*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     m68*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     mips:Linux:*:*)
 	eval $set_cc_for_build
@@ -894,7 +877,7 @@
 		s: ::g
 		p
 	    }'`"
-	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
+	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
 	;;
     mips64:Linux:*:*)
 	eval $set_cc_for_build
@@ -917,16 +900,16 @@
 		s: ::g
 		p
 	    }'`"
-	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
+	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
 	;;
     or32:Linux:*:*)
-	echo or32-unknown-linux-${LIBC}
+	echo or32-unknown-linux-gnu
 	exit ;;
     ppc:Linux:*:*)
-	echo powerpc-unknown-linux-${LIBC}
+	echo powerpc-unknown-linux-gnu
 	exit ;;
     ppc64:Linux:*:*)
-	echo powerpc64-unknown-linux-${LIBC}
+	echo powerpc64-unknown-linux-gnu
 	exit ;;
     alpha:Linux:*:*)
 	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
@@ -939,40 +922,40 @@
 	  EV68*) UNAME_MACHINE=alphaev68 ;;
         esac
 	objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
-	if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
+	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
 	exit ;;
     parisc:Linux:*:* | hppa:Linux:*:*)
 	# Look for CPU level
 	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
-	  PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
-	  PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
-	  *)    echo hppa-unknown-linux-${LIBC} ;;
+	  PA7*) echo hppa1.1-unknown-linux-gnu ;;
+	  PA8*) echo hppa2.0-unknown-linux-gnu ;;
+	  *)    echo hppa-unknown-linux-gnu ;;
 	esac
 	exit ;;
     parisc64:Linux:*:* | hppa64:Linux:*:*)
-	echo hppa64-unknown-linux-${LIBC}
+	echo hppa64-unknown-linux-gnu
 	exit ;;
     s390:Linux:*:* | s390x:Linux:*:*)
 	echo ${UNAME_MACHINE}-ibm-linux
 	exit ;;
     sh64*:Linux:*:*)
-    	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+    	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     sh*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     sparc:Linux:*:* | sparc64:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
     vax:Linux:*:*)
-	echo ${UNAME_MACHINE}-dec-linux-${LIBC}
+	echo ${UNAME_MACHINE}-dec-linux-gnu
 	exit ;;
     x86_64:Linux:*:*)
-	echo x86_64-unknown-linux-${LIBC}
+	echo x86_64-unknown-linux-gnu
 	exit ;;
     xtensa:Linux:*:*)
-    	echo xtensa-unknown-linux-${LIBC}
+    	echo xtensa-unknown-linux-gnu
 	exit ;;
     i*86:Linux:*:*)
 	# The BFD linker knows what the default object file format is, so
@@ -987,22 +970,20 @@
 				    p'`
         case "$ld_supported_targets" in
 	  elf32-i386)
-		TENTATIVE="${UNAME_MACHINE}-pc-linux-${LIBC}"
+		TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
 		;;
 	  a.out-i386-linux)
-		echo "${UNAME_MACHINE}-pc-linux-${LIBC}aout"
+		echo "${UNAME_MACHINE}-pc-linux-gnuaout"
 		exit ;;
 	  coff-i386)
-		echo "${UNAME_MACHINE}-pc-linux-${LIBC}coff"
+		echo "${UNAME_MACHINE}-pc-linux-gnucoff"
 		exit ;;
 	  "")
 		# Either a pre-BFD a.out linker (linux-gnuoldld) or
 		# one that does not give us useful --help.
-		echo "${UNAME_MACHINE}-pc-linux-${LIBC}oldld"
+		echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
 		exit ;;
 	esac
-	# This should get integrated into the C code below, but now we hack
-	if [ "$LIBC" != "gnu" ] ; then echo "$TENTATIVE" && exit 0 ; fi
 	# Determine whether the default compiler is a.out or elf
 	eval $set_cc_for_build
 	sed 's/^	//' << EOF >$dummy.c
--- xfce4-utils-4.4.2.orig/config.sub
+++ xfce4-utils-4.4.2/config.sub
@@ -244,7 +244,7 @@
 	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
 	| bfin \
 	| c4x | clipper \
-	| d10v | d30v | dlx | dsp16xx | dvp \
+	| d10v | d30v | dlx | dsp16xx \
 	| fido | fr30 | frv \
 	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
 	| i370 | i860 | i960 | ia64 \
@@ -277,7 +277,7 @@
 	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
 	| pyramid \
 	| score \
-	| sh | sh[1234] | sh[24]a | sh[24]a*eb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
+	| sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
 	| sh64 | sh64le \
 	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
 	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
@@ -358,7 +358,7 @@
 	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
 	| pyramid-* \
 	| romp-* | rs6000-* \
-	| sh-* | sh[1234]-* | sh[24]a-* | sh[24]a*eb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
+	| sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
 	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
 	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
 	| sparclite-* \
@@ -694,24 +694,6 @@
 		basic_machine=m68k-atari
 		os=-mint
 		;;
-	mipsEE* | ee | ps2)
-		basic_machine=mips64r5900el-scei
-		case $os in
-		    -linux*)
-			;;
-		    *)
-			os=-elf
-			;;
-		esac
-		;;
-	iop)
-		basic_machine=mipsel-scei
-		os=-irx
-		;;
-	dvp)
-		basic_machine=dvp-scei
-		os=-elf
-		;;
 	mips3*-*)
 		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
 		;;
@@ -1244,7 +1226,7 @@
 	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
 	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
 	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -irx*)
+	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
 	# Remember, each alternative MUST END IN *, to match a version number.
 		;;
 	-qnx*)
