nemiver (0.7.3-2) debian-dir only changes

Summary

 debian/README.source        |    2 
 debian/changelog            |  155 +++++++++++++++++++++++++++++
 debian/compat               |    1 
 debian/control              |   32 ++++++
 debian/copyright            |   63 ++++++++++++
 debian/dirs                 |    1 
 debian/docs                 |    3 
 debian/menu                 |    6 +
 debian/nemiver.xpm          |  231 ++++++++++++++++++++++++++++++++++++++++++++
 debian/patches/gcc-4.5.diff |   26 ++++
 debian/patches/series       |    1 
 debian/rules                |   79 +++++++++++++++
 debian/watch                |    2 
 13 files changed, 602 insertions(+)

    
download this patch

Patch contents

--- nemiver-0.7.3.orig/debian/compat
+++ nemiver-0.7.3/debian/compat
@@ -0,0 +1 @@
+5
--- nemiver-0.7.3.orig/debian/README.source
+++ nemiver-0.7.3/debian/README.source
@@ -0,0 +1,2 @@
+This package uses quilt for patch management, for more information see
+the file /usr/share/doc/quilt/README.source in the quilt package.
--- nemiver-0.7.3.orig/debian/copyright
+++ nemiver-0.7.3/debian/copyright
@@ -0,0 +1,63 @@
+This package was debianized by Luca Bruno <lucab@debian.org> on
+Sun, 18 Nov 2007 11:59:38 +0100.
+
+It was downloaded from http://ftp.gnome.org/pub/GNOME/sources/nemiver/
+
+Files: *
+Copyright: © 2005-2007 Dodji Seketeli <dodji@gnome.org>
+	   © 2005-2007 Jonathon Jongsma <jjongsma@gnome.org>
+License: GPL-2+
+	Nemiver 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.
+
+Files: src/common/*
+Copyright: © 2005-2007 Dodji Seketeli <dodji@gnome.org>
+License: MIT
+	Permission is hereby granted, free of charge, to any person obtaining 
+	a copy of this software and associated documentation files (the 
+	"Software"), to deal in the Software without restriction, including 
+	without limitation the rights to use, copy, modify, merge, publish, 
+	distribute, sublicense, and/or sell copies of the Software, and to 
+	permit persons to whom the Software is furnished to do so, subject 
+	to the following conditions:		 
+	The above copyright notice and this permission notice shall be 
+	included in all copies or substantial portions of the Software.
+	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
+	EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
+	MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+	IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR 
+	ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
+	CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 
+	WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Files: help/*
+Copyright: © 2007 Jonathon Jongsma <jjongsma@gnome.org>
+	   © 2007 Daniel Nylander <po@danielnylander.se>
+	   © 2008 Jorge González <jorgegonz@svn.gnome.org>
+License: GFDL-1.1+
+    Permission is granted to copy, distribute and/or modify this
+    document under the terms of the GNU Free Documentation
+    License (GFDL), Version 1.1 or any later version published
+    by the Free Software Foundation with no Invariant Sections,
+    no Front-Cover Texts, and no Back-Cover Texts.
+
+Files: Makefile.*, config*, intltool*
+Copyright: © 1992-2006 Free Software Foundation, Inc.
+License: GPL-2+
+    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.
+
+Files: debian/*
+Copyright: © 2007 Luca Bruno <lucab@debian.org>
+	   © 2007 Andrea Corradi <lash@semailer.com>
+License: GPL-2+
+    The Debian packaging is licensed under the GPL.
+
+On Debian systems, the complete text of the GNU General Public License 
+can be found in `/usr/share/common-licenses/GPL-2' and the complete text 
+of the GNU Lesser General Public License can be found in
+`/usr/share/common-licenses/LGPL'.
--- nemiver-0.7.3.orig/debian/control
+++ nemiver-0.7.3/debian/control
@@ -0,0 +1,32 @@
+Source: nemiver
+Section: gnome
+Priority: optional
+Vcs-Git: https://git.unstable.it/packages.git/
+Vcs-Browser: https://git.unstable.it/?p=packages.git;a=shortlog;h=nemiver
+Maintainer: Luca Bruno <lucab@debian.org>
+Uploaders: Andrea Corradi <lash@unstable.it>
+Build-Depends: debhelper (>= 5.0.51~), quilt, gdb, libxml-parser-perl, 
+	       pkg-config (>= 0.9), gnome-doc-utils (>= 0.3.2),libboost-dev, 
+	       libxml2-dev (>= 2.6.22), libglib2.0-dev (>= 2.8.5), 
+	       libgnome2-dev (>= 2.0), libgtop2-dev (>= 2.14), 
+	       libglibmm-2.4-dev (>= 2.8.2), libsqlite3-dev (>=3.0), 
+	       libvte-dev (>= 0.12), libgtkmm-2.4-dev (>= 2.6), 
+	       libglademm-2.4-dev (>= 2.6), 
+	       libgtksourceviewmm-2.0-dev (>= 1.9), scrollkeeper, 
+	       libgtkhex0-dev (>= 2.21.4), intltool (>= 0.33)
+Standards-Version: 3.8.4
+Homepage: http://www.gnome.org/projects/nemiver/
+
+Package: nemiver
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, gdb
+Description: Standalone graphical debugger for GNOME
+ Nemiver is a project to write a standalone graphical debugger that 
+ integrates in the GNOME desktop. It features a backend which uses 
+ the well known GNU Debugger gdb to debug C/C++ programs.
+ .
+ Nemiver is built with a plugin system that can offer several different 
+ perspectives. Currently the only perspective provided is a debugging 
+ perspective, but it could be expanded with perspectives added for 
+ valgrind, or for profiling tools such as oprofile.
+
--- nemiver-0.7.3.orig/debian/nemiver.xpm
+++ nemiver-0.7.3/debian/nemiver.xpm
@@ -0,0 +1,231 @@
+/* XPM */
+static char * nemiver_xpm[] = {
+"32 32 196 2",
+"  	c None",
+". 	c #57A110",
+"+ 	c #4E9A06",
+"@ 	c #509D07",
+"# 	c #72D015",
+"$ 	c #62B80E",
+"% 	c #73D216",
+"& 	c #5C5E59",
+"* 	c #5D5E5B",
+"= 	c #585A55",
+"- 	c #575A55",
+"; 	c #5C5E5B",
+"> 	c #5A5C59",
+", 	c #5B5D5A",
+"' 	c #656763",
+") 	c #B7B9B5",
+"! 	c #D8DAD6",
+"~ 	c #EDEEEC",
+"{ 	c #D7D8D4",
+"] 	c #B5B8B2",
+"^ 	c #686965",
+"/ 	c #5A5D58",
+"( 	c #5D5E5A",
+"_ 	c #8B8E88",
+": 	c #EDEEEB",
+"< 	c #EBEDE9",
+"[ 	c #E4E6E1",
+"} 	c #DBDED8",
+"| 	c #D6DAD3",
+"1 	c #DADDD7",
+"2 	c #E0E3DD",
+"3 	c #E7E9E5",
+"4 	c #8A8C85",
+"5 	c #5B5E58",
+"6 	c #737771",
+"7 	c #EEF0ED",
+"8 	c #E6E8E3",
+"9 	c #E0E3DE",
+"0 	c #E2E4DF",
+"a 	c #DEE1DB",
+"b 	c #D8DCD5",
+"c 	c #D2D6CD",
+"d 	c #CBCFC6",
+"e 	c #D2D6CF",
+"f 	c #737570",
+"g 	c #5E625C",
+"h 	c #C3C5C0",
+"i 	c #DDE0DA",
+"j 	c #E7EAE6",
+"k 	c #E1E4DE",
+"l 	c #D3D7CF",
+"m 	c #CDD1C8",
+"n 	c #C6CAC0",
+"o 	c #D8DBD5",
+"p 	c #BBBFB7",
+"q 	c #5C5F5B",
+"r 	c #ADD08C",
+"s 	c #67A829",
+"t 	c #63A623",
+"u 	c #B1D291",
+"v 	c #CBF0A6",
+"w 	c #8BE237",
+"x 	c #96E845",
+"y 	c #96E647",
+"z 	c #86D737",
+"A 	c #77C828",
+"B 	c #68B919",
+"C 	c #61B212",
+"D 	c #BFE09E",
+"E 	c #C7EF9F",
+"F 	c #96E945",
+"G 	c #68B819",
+"H 	c #B9DD96",
+"I 	c #C2EE97",
+"J 	c #B2EF76",
+"K 	c #B2ED79",
+"L 	c #B3DA8E",
+"M 	c #BEEC90",
+"N 	c #B3D791",
+"O 	c #BEE897",
+"P 	c #56971A",
+"Q 	c #497823",
+"R 	c #ADD784",
+"S 	c #B9EB88",
+"T 	c #8CE237",
+"U 	c #A2BD8D",
+"V 	c #919D8D",
+"W 	c #82CE37",
+"X 	c #4C7130",
+"Y 	c #456A2A",
+"Z 	c #5AA117",
+"` 	c #334033",
+" .	c #518B1D",
+"..	c #A8D57D",
+"+.	c #B4EA80",
+"@.	c #BDF18A",
+"#.	c #98AD88",
+"$.	c #455F36",
+"%.	c #344035",
+"&.	c #323E34",
+"*.	c #354731",
+"=.	c #4C7C21",
+"-.	c #A3D275",
+";.	c #B0E97A",
+">.	c #BAF184",
+",.	c #BAED87",
+"'.	c #4A6736",
+").	c #374834",
+"!.	c #334034",
+"~.	c #446D26",
+"{.	c #9CCF6B",
+"].	c #ABE771",
+"^.	c #91B078",
+"/.	c #6F7374",
+"(.	c #2E3436",
+"_.	c #3B532D",
+":.	c #98CD64",
+"<.	c #A7E66A",
+"[.	c #B2EF77",
+"}.	c #B3ED7A",
+"|.	c #3D5136",
+"1.	c #2E3536",
+"2.	c #374A2F",
+"3.	c #91CA5A",
+"4.	c #A3E562",
+"5.	c #AEEE70",
+"6.	c #8EB26E",
+"7.	c #303836",
+"8.	c #2F3736",
+"9.	c #2F3636",
+"0.	c #2E3636",
+"a.	c #4D8220",
+"b.	c #8CC752",
+"c.	c #9FE35B",
+"d.	c #91C066",
+"e.	c #606A60",
+"f.	c #4B6B36",
+"g.	c #2F3735",
+"h.	c #3C562C",
+"i.	c #323F33",
+"j.	c #528C1D",
+"k.	c #86C44A",
+"l.	c #7FA75D",
+"m.	c #95CA63",
+"n.	c #79BE37",
+"o.	c #435E32",
+"p.	c #3C562E",
+"q.	c #589B19",
+"r.	c #55961A",
+"s.	c #A4EC5D",
+"t.	c #A4E95F",
+"u.	c #86D637",
+"v.	c #77C728",
+"w.	c #67B818",
+"x.	c #A0EB57",
+"y.	c #9FE857",
+"z.	c #9DEA50",
+"A.	c #9BE750",
+"B.	c #99E949",
+"C.	c #97E64A",
+"D.	c #97E946",
+"E.	c #95E546",
+"F.	c #98E54B",
+"G.	c #9EEB53",
+"H.	c #9AE64F",
+"I.	c #8AD73D",
+"J.	c #78C72A",
+"K.	c #68B91A",
+"L.	c #65B419",
+"M.	c #68B61D",
+"N.	c #6CB722",
+"O.	c #72BA2B",
+"P.	c #72BC29",
+"Q.	c #87CF42",
+"R.	c #97DA56",
+"S.	c #9DDE5D",
+"T.	c #9ADA5D",
+"U.	c #94D257",
+"V.	c #89C74C",
+"W.	c #80C042",
+"X.	c #7CBD3D",
+"Y.	c #77B938",
+"Z.	c #70B42D",
+"`.	c #62AA1F",
+" +	c #478312",
+".+	c #4E8F11",
+"++	c #4F940F",
+"@+	c #50960E",
+"#+	c #4F980A",
+"$+	c #4E9A08",
+"%+	c #4E9907",
+"&+	c #4D9509",
+"*+	c #4C920B",
+"=+	c #4B8E0D",
+"-+	c #4A8910",
+";+	c #457C15",
+"                            . + + @                             ",
+"                            + # # +                             ",
+"                            + $ % +                             ",
+"                            + # # +                             ",
+"                            @ + + @                             ",
+"                          & * = - ; >                           ",
+"                      , ' ) ! ~ ~ { ] ^ /                       ",
+"                    ( _ : < [ } | 1 2 3 4 5                     ",
+"                    6 7 8 9 0 a b c d e 3 f                     ",
+"                  g h 3 i [ j k 1 l m n o p q                   ",
+"                  + r s + + + + + + + + t u +                   ",
+"                  + v w x y z A B C C C C D +                   ",
+"                  + E w F y z A G C C C C H +                   ",
+"                  + I w J K z A G C C C C L +                   ",
+"                  + M w N O z A G C P Q C R +                   ",
+"                  + S T U V W X Y Z `  .C ..+                   ",
+"                  + +.T @.#.$.%.&.*.=.C C -.+                   ",
+"                  + ;.T >.,.'.).!.~.C C C {.+                   ",
+"                  + ].T ^./.(.(.(.(.(._.C :.+                   ",
+"                  + <.T [.}.|.1.(.2.C C C 3.+                   ",
+"                  + 4.T 5.6.7.8.9.0.a.C C b.+                   ",
+"                  + c.T d.e.f.8.g.h.i.j.C k.+                   ",
+"                  + c.T l.m.n.o.p.q.r.Q C k.+                   ",
+"                  + c.T s.t.u.v.w.C C C C k.+                   ",
+"                  + c.T x.y.u.v.w.C C C C k.+                   ",
+"                  + c.T z.A.u.v.w.C C C C k.+                   ",
+"                  + c.T B.C.u.v.w.C C C C k.+                   ",
+"                  + c.T D.E.u.v.w.C C C C k.+                   ",
+"                  + c.F.G.H.I.J.K.L.M.N.O.k.+                   ",
+"                  + P.Q.R.S.T.U.V.W.X.Y.Z.`.+                   ",
+"                     +.+++@+#+$+%+&+*+=+-+;+                    ",
+"                                                                "};
--- nemiver-0.7.3.orig/debian/changelog
+++ nemiver-0.7.3/debian/changelog
@@ -0,0 +1,155 @@
+nemiver (0.7.3-2) unstable; urgency=low
+
+  * Fixed build failure wirh gcc-4.5 (Closes: #565093)
+  * Updated Standards-Version to 3.8.4
+
+ -- Luca Bruno <lucab@debian.org>  Thu, 04 Mar 2010 23:26:22 +0100
+
+nemiver (0.7.3-1) unstable; urgency=low
+
+  * New upstream version
+    + Support editing breakpoint condition
+
+ -- Luca Bruno <lucab@debian.org>  Sun, 20 Dec 2009 16:16:47 +0100
+
+nemiver (0.7.2-1) unstable; urgency=low
+
+  * New upstream version
+    + Support breakpoint ignore counts
+
+ -- Luca Bruno <lucab@debian.org>  Thu, 17 Sep 2009 17:18:28 +0200
+
+nemiver (0.7.1-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Luca Bruno <lucab@debian.org>  Thu, 06 Aug 2009 20:41:21 +0200
+
+nemiver (0.7.0-1) unstable; urgency=low
+
+  * New upstream version
+    + Now using GDB Variable Objects (via GDB/MI)
+  * dh_scroolkeeper is deprecated now, removed
+  * Updated Standards-Version to 3.8.2
+
+ -- Luca Bruno <lucab@debian.org>  Fri, 24 Jul 2009 16:24:32 +0200
+
+nemiver (0.6.7-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Luca Bruno <lucab@debian.org>  Tue, 05 May 2009 22:14:08 +0200
+
+nemiver (0.6.6-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Luca Bruno <lucab@debian.org>  Fri, 10 Apr 2009 18:29:46 +0200
+
+nemiver (0.6.5-1) unstable; urgency=low
+
+  * New upstream release (LP: #327128)
+  * Use $(QUILT_STAMPFN) as patch target
+  * Added new intltool build-dep
+  * Bumped Standards-Version to 3.8.1 (no changes needed)
+
+ -- Luca Bruno <lucab@debian.org>  Fri, 13 Mar 2009 22:16:20 +0100
+
+nemiver (0.6.4-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Luca Bruno <lucab@debian.org>  Fri, 28 Nov 2008 20:31:33 +0100
+
+nemiver (0.6.3-1) unstable; urgency=low
+
+  * New upstream release
+    + bugfix and translations update
+  * New upstream website, updating all references
+
+ -- Luca Bruno <lucab@debian.org>  Mon, 13 Oct 2008 19:21:28 +0200
+
+nemiver (0.6.2-1) unstable; urgency=low
+
+  * New upstream version
+    + bugfix and translations update
+
+ -- Luca Bruno <lucab@debian.org>  Thu, 11 Sep 2008 21:55:24 +0200
+
+nemiver (0.6.1-1) unstable; urgency=low
+
+  * New upstream version
+    + conditional breakpoint
+    + arbitrary function calls
+    + better HIG compliance
+  * Bumped Standards-Version to 3.8.0, added README.source for quilt
+  * Updated Andrea's mail address
+
+ -- Luca Bruno <lucab@debian.org>  Sun, 03 Aug 2008 19:44:27 +0200
+
+nemiver (0.5.4-1) unstable; urgency=low
+
+  * New upstream version
+    + code cleanup and compilation fixes
+    + better handling of variable 'this'
+
+ -- Luca Bruno <lucab@debian.org>  Tue, 24 Jun 2008 11:31:21 +0200
+
+nemiver (0.5.3-1) unstable; urgency=low
+
+  * New upstream version
+  * Dropping .desktop patch, accepted upstream
+
+ -- Luca Bruno <lucab@debian.org>  Mon, 26 May 2008 21:09:52 +0200
+
+nemiver (0.5.2-1) unstable; urgency=low
+
+  * New upstream release
+    + fix an infinite loop on output parsing
+    + option to completely stop debugging
+    + brakpoints setting for not-yet-loaded shared libraries
+  * Now using libgtksourceviewmm 2.0 (closes: #474344)
+
+ -- Luca Bruno <lucab@debian.org>  Fri, 18 Apr 2008 20:51:47 +0200
+
+nemiver (0.5.1-1) unstable; urgency=low
+
+  * New upstream release 
+    + fix build for gcc 4.3
+    + ability to inspect libtool wrapper scripts
+
+ -- Luca Bruno <lucab@debian.org>  Sat, 29 Mar 2008 09:58:33 +0100
+
+nemiver (0.5.0-1) unstable; urgency=low
+
+  * New upstream release
+    + Added hex editor widget via libgtkhex
+  * Dropping patches and manpage accepted upstream
+
+ -- Luca Bruno <lucab@debian.org>  Sun, 16 Mar 2008 20:57:35 +0100
+
+nemiver (0.4.0-3) unstable; urgency=medium
+
+  * Removed spurious scroolkeeper database (closes: #469431)
+  * Bumped versioned build-dep on debhelper due to dh_icons
+
+ -- Luca Bruno <lucab@debian.org>  Thu, 06 Mar 2008 15:44:12 +0100
+
+nemiver (0.4.0-2) unstable; urgency=low
+
+  * Added manpage for nemiver(1)
+  * Enable and register scrollkeeper entry (closes: #457522)
+
+ -- Luca Bruno <lucab@debian.org>  Wed, 09 Jan 2008 13:59:21 +0100
+
+nemiver (0.4.0-1) unstable; urgency=low
+ 
+  * Shipping libnemivercommon as a private lib (patch from SVN r539-542
+    by Josselin Mouette)
+  * Patch from SVN (r513) to fix a misnamed glade file
+  * Patch from SVN (r509) to reflect a libgtop API change
+  * debian/copyright rewritten in a machine-interpretable format
+  * Initial release (Closes: #392988)  
+
+ -- Luca Bruno <lucab@debian.org>  Sun, 18 Nov 2007 11:59:38 +0100
+
--- nemiver-0.7.3.orig/debian/docs
+++ nemiver-0.7.3/debian/docs
@@ -0,0 +1,3 @@
+NEWS
+README
+TODO
--- nemiver-0.7.3.orig/debian/dirs
+++ nemiver-0.7.3/debian/dirs
@@ -0,0 +1 @@
+/usr/share/pixmaps/
--- nemiver-0.7.3.orig/debian/rules
+++ nemiver-0.7.3/debian/rules
@@ -0,0 +1,79 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+include /usr/share/quilt/quilt.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)
+
+CFLAGS = -Wall -g
+DESTDIR = $(CURDIR)/debian/nemiver
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+config.status: $(QUILT_STAMPFN)
+	dh_testdir
+	./configure --host=$(DEB_HOST_GNU_TYPE) \
+                   --build=$(DEB_BUILD_GNU_TYPE) \
+		   --prefix=/usr \
+		   --disable-scrollkeeper \
+		   --with-gconf-schema-file-dir=\$${prefix}/share/gconf/schemas \
+		   --enable-memoryview \
+		   --enable-variable-walker \
+		   --enable-global-variables \
+		   CFLAGS="$(CFLAGS)" 
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+	$(MAKE)
+	touch $@
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+	[ ! -f Makefile ] || $(MAKE) distclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	$(MAKE) DESTDIR=$(DESTDIR) install
+	cp $(CURDIR)/debian/nemiver.xpm $(DESTDIR)/usr/share/pixmaps/
+
+binary-indep: build install
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installmenu
+	dh_gconf
+	dh_icons
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps -- --ignore-missing-info
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+
+.PHONY: build clean binary-indep binary-arch binary install
--- nemiver-0.7.3.orig/debian/watch
+++ nemiver-0.7.3/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/(.*)\.\d/nemiver-(.*)\.tar\.gz
--- nemiver-0.7.3.orig/debian/menu
+++ nemiver-0.7.3/debian/menu
@@ -0,0 +1,6 @@
+?package(nemiver):needs="X11"\
+	section="Applications/Programming"\
+	title="Nemiver"\
+	command="/usr/bin/nemiver"\
+	longtitle="Graphical debugger" \
+	icon="/usr/share/pixmaps/nemiver.xpm"
--- nemiver-0.7.3.orig/debian/patches/series
+++ nemiver-0.7.3/debian/patches/series
@@ -0,0 +1 @@
+gcc-4.5.diff
--- nemiver-0.7.3.orig/debian/patches/gcc-4.5.diff
+++ nemiver-0.7.3/debian/patches/gcc-4.5.diff
@@ -0,0 +1,26 @@
+Index: nemiver-0.7.3/src/common/nmv-object.cc
+===================================================================
+--- nemiver-0.7.3.orig/src/common/nmv-object.cc	2010-03-04 18:31:26.349484063 +0100
++++ nemiver-0.7.3/src/common/nmv-object.cc	2010-03-04 18:34:16.273732730 +0100
+@@ -59,7 +59,7 @@
+     *m_priv = *a_object.m_priv;
+ }
+ 
+-Object::Object&
++Object&
+ Object::operator= (Object const &a_object)
+ {
+     if (this == &a_object)
+Index: nemiver-0.7.3/src/langs/nmv-cpp-ast.cc
+===================================================================
+--- nemiver-0.7.3.orig/src/langs/nmv-cpp-ast.cc	2010-03-04 18:37:20.733483290 +0100
++++ nemiver-0.7.3/src/langs/nmv-cpp-ast.cc	2010-03-04 18:37:27.744982512 +0100
+@@ -64,7 +64,7 @@
+     m_int_value = a_t.get_int_value ();
+ }
+ 
+-Token::Token&
++Token&
+ Token::operator= (const Token &a_t)
+ {
+     m_kind = a_t.get_kind ();