--- libxfce4menu-4.6.1.orig/debian/compat
+++ libxfce4menu-4.6.1/debian/compat
@@ -0,0 +1 @@
+7
--- libxfce4menu-4.6.1.orig/debian/copyright
+++ libxfce4menu-4.6.1/debian/copyright
@@ -0,0 +1,50 @@
+This package was debianized by Mike Massonnet <mmassonnet@gmail.com> on
+Fri, 06 Jun 2008 14:00:06 +0200.
+
+It was downloaded from http://www.xfce.org
+
+Upstream Author and Copyright holder is: 
+
+libxfce4menu/* © 2006-2008 Jannis Pohlmann <jannis@xfce.org>
+tdb/
+  spinlock.{c,h}: 
+    © 2001 Anton Blanchard <anton@samba.org>
+    © 2005 Benedikt Meurer <benny@xfce.org>
+  tdb.c:
+    © 1999-2004 Andrew Tridgell <tridge@linuxcare.com>
+    © 2000 Paul `Rusty' Russel <rusty@linuxcare.com>
+    © 2000-2003 Jeremy Allison <jeremy@valinux.com>
+    © 2005 Benedikt Meurer <benny@xfce.org>
+  tdb.h,tdbspeed.c, tdbtorture.c:
+    © 1999-2004 Andrew Tridgell <tridge@linuxcare.com>
+    © 2005 Benedikt Meurer <benny@xfce.org>
+  tdbtool.c:
+    © 1999-2000 Andrew Tridgell <tridge@linuxcare.com>
+    © 2000 Paul `Rusty' Russel <rusty@linuxcare.com>
+    © 2000 Jeremy Allison <jeremy@valinux.com>
+    © 2001 Andrew Esh
+    © 2005 Benedikt Meurer <benny@xfce.org>
+
+The Debian packaging is
+  © 2008, Mike Massonnet <mmassonnet@gmail.com>
+  © 2008-2009 Yves-Alexis Perez <corsac@debian.org>
+and is licensed under the GPL, version 2.
+
+The documentation (files in doc/*) is released under the GNU Free Documentation
+License, version  1.1 or later, with no invariant sections, using the following 
+statement:
+
+  Permission is granted to copy, distribute and/or modify this document
+  under the terms of the GNU Free Documentation License, Version 1.1 or
+  any later version published by the Free Software Foundation; with no
+  Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+  Texts. 
+
+On Debian systems, the complete text of the GNU Lesser General Public
+License can be found in `/usr/share/common-licenses/LGPL'.
+
+The complete text of the GNU Free Documentation License can be found on the
+file “/usr/share/common-licenses/GFDL”.
+
+The complete text of the GNU General Public License (version 2) can be
+found in `/usr/share/common-licenses/GPL-2'.
--- libxfce4menu-4.6.1.orig/debian/README.Debian
+++ libxfce4menu-4.6.1/debian/README.Debian
@@ -0,0 +1,12 @@
+= Menu handling in Xfce
+$author
+$Id$
+
+== XDG support
+
+Starting 4.6, Xfce now supports XDG (freedesktop.org) menus, through the
+libxfce4menu library. That support is not yet complete, and, for example,
+there is no support for the 'Merge' functionnalities. 
+
+The support status can be found on upstream sources, at:
+http://svn.xfce.org/svn/xfce/libxfce4menu/tags/xfce_4_6_0/STATUS
--- libxfce4menu-4.6.1.orig/debian/libxfce4menu-0.1-0.install
+++ libxfce4menu-4.6.1/debian/libxfce4menu-0.1-0.install
@@ -0,0 +1,2 @@
+usr/lib/lib*.so.*
+usr/share/locale/
--- libxfce4menu-4.6.1.orig/debian/rules
+++ libxfce4menu-4.6.1/debian/rules
@@ -0,0 +1,61 @@
+#!/usr/bin/make -f
+
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+config.status: configure
+	dh_testdir
+	./configure CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --sysconfdir=/etc
+
+build: build-stamp
+build-stamp:  config.status 
+	dh_testdir
+	$(MAKE)
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+	
+	[ ! -f Makefile ] || $(MAKE) distclean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+	
+	$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+
+	rm -f debian/tmp/usr/lib/libxfce4menu-0.1.la
+
+binary-indep: build install
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs NEWS TODO debian/README.Debian
+	dh_install --fail-missing --sourcedir=debian/tmp
+	dh_strip --dbg-package=libxfce4menu-0.1-dbg
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs -V 'libxfce4menu-0.1-0 (>= 4.6.0)'
+	dh_shlibdeps
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- libxfce4menu-4.6.1.orig/debian/changelog
+++ libxfce4menu-4.6.1/debian/changelog
@@ -0,0 +1,95 @@
+libxfce4menu (4.6.1-1~bpo50+1) lenny-backports; urgency=low
+
+  * Rebuild for lenny-backports.
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Tue, 30 Jun 2009 21:57:21 +0200
+
+libxfce4menu (4.6.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    - move lib to libs section and -dev to libdevel.
+    - drop dep on libgtk2.0-dev in favor of libglib2.0-dev for
+      libxfce4menu-dev.
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Sun, 19 Apr 2009 14:10:01 +0200
+
+libxfce4menu (4.6.0-3) unstable; urgency=low
+
+  * Upload to unstable.
+  * debian/rules:
+    - replace dh_clean -k by dh_prep.
+  * debian/compat bumped to 7.
+  * debian/control:
+    - bump build-dep on debhelper accordingly.
+    - update standards version to 3.8.1. 
+    - move to xfce section. 
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Sat, 04 Apr 2009 01:00:10 +0200
+
+libxfce4menu (4.6.0-2) experimental; urgency=low
+
+  * debian/copyright:
+    - add link to GPL-2 for Debian packaging.
+    - cleanup little.
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Mon, 09 Mar 2009 07:42:07 +0100
+
+libxfce4menu (4.6.0-1) experimental; urgency=low
+
+  [ Yves-Alexis Perez ]
+  [ Xfce 4.6 Alpha “Pinkie”]
+  * new upstream alpha release.
+  * update debian/control, debian/rules, debian/copyright for Pinkie.
+
+  [ Xfce 4.6 Beta 1 “Fuzzy”]
+  * new upstream beta release.
+  * debian/control:
+    - update build-deps for Fuzzy.
+    - add build-dep on libgtk2.0-dev.
+  * debian/rules:
+    - update shlib for Fuzzy.
+    - don't mess with config.{guess,sub}
+
+  [ Xfce 4.6 Beta 2 “Hopper”]
+  * new upstream beta release.
+  * debian/control:
+    - update build-deps for Hopper.
+  * debian/rules:
+    - update shlibs for Hopper. 
+
+  [ Xfce 4.6 Beta 3 “Tuco-tuco”]
+  * new upstream beta release.
+  * debian/control:
+    - update build-deps for “Tuco-Tuco”.
+    - add build-dep on intltool.
+    - add explicit dep on libgtk2.0-dev to -dev package.
+  * debian/rules:
+    - bump shlibs for “Tuco Tuco”. 
+
+  [ Xfce 4.6 RC1 “Capybara” ]
+  * new upstream release candidate.
+  * debian/rules:
+    - bump shlibs to 4.5.99.1.
+    - install README.Debian.
+  * debian/copyright:
+    - update dates and copyright holders.
+  * debian/README.Debian:
+    - add some notes about XDG support status.
+
+  [ Xfce 4.6  ]
+  * Initial release.                                            closes: #516875 
+  * debian/rules:
+    - bump shlibs to 4.6.0.
+  * debian/control:
+    - update build-deps to 4.6.0.
+    - update long description.
+
+  [ Michael Casadevall ]
+  [ Xfce 4.6 RC1 “Capybara” ]
+  * debian/control:
+    - Properly versioned the debug packages to comply with policy (LP: #321414)
+  * debian/watch:
+    - Added so uscan can work
+
+ -- Yves-Alexis Perez <corsac@debian.org>  Sat, 28 Feb 2009 12:13:15 +0100
--- libxfce4menu-4.6.1.orig/debian/libxfce4menu-0.1-dev.install
+++ libxfce4menu-4.6.1/debian/libxfce4menu-0.1-dev.install
@@ -0,0 +1,5 @@
+usr/include/*
+usr/lib/lib*.a
+usr/lib/lib*.so
+usr/lib/pkgconfig/*
+usr/share/gtk-doc/html/libxfce4menu/*
--- libxfce4menu-4.6.1.orig/debian/control
+++ libxfce4menu-4.6.1/debian/control
@@ -0,0 +1,40 @@
+Source: libxfce4menu
+Priority: optional
+Section: xfce
+Maintainer: Debian Xfce Maintainers <pkg-xfce-devel@lists.alioth.debian.org>
+Uploaders: Emanuele Rocca <ema@debian.org>, Simon Huggins <huggie@earth.li>, Yves-Alexis Perez <corsac@debian.org>, Mike Massonnet <mmassonnet@gmail.com>
+Build-Depends: debhelper (>= 7), libxfce4util-dev (>= 4.6.0),
+ libgtk2.0-dev, intltool (>= 0.31)
+Standards-Version: 3.8.1
+Homepage: http://www.xfce.org/
+Vcs-Svn: svn://svn.debian.org/pkg-xfce/desktop/branches/svn-snapshots/libxfce4menu/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/desktop/branches/svn-snapshots/libxfce4menu/
+
+Package: libxfce4menu-0.1-dev
+Section: libdevel
+Architecture: any
+Depends: libxfce4menu-0.1-0 (= ${binary:Version}), 
+ libxfce4util-dev (>= 4.6.0), libglib2.0-dev
+Suggests: devhelp
+Description: Development files for libxfce4menu
+ This package contains the headers and the static library
+ for libxfce4menu.
+ .
+ The libxfce4menu Reference Manual is also included and
+ it can be consulted using Devhelp or a web browser.
+
+Package: libxfce4menu-0.1-0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: freedesktop.org compliant menu implementation for Xfce
+ libxfce4menu is a menu implementation for the Xfce Desktop Environment
+ that is compliant with the Desktop Menu Specification of freedesktop.org
+
+Package: libxfce4menu-0.1-dbg
+Section: debug
+Priority: extra
+Architecture: any
+Depends: ${shlibs:Depends}, libxfce4menu-0.1-0 (= ${binary:Version})
+Description: debugging symbols for libxfce4menu
+ This package contains debugging symbols and informations for libxfce4menu.
--- libxfce4menu-4.6.1.orig/debian/watch
+++ libxfce4menu-4.6.1/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://www.xfce.org/archive/xfce-(.*)/src/ \
+	libxfce4menu-(.*)\.tar\.bz2
