[Pkg-cli-apps-commits] r4350 - in /packages/tomboy/trunk/debian: changelog control patches/02_configurable_compiler.patch patches/03_sm-name.patch rules

slomo at users.alioth.debian.org slomo at users.alioth.debian.org
Sat Dec 20 11:59:58 UTC 2008


Author: slomo
Date: Sat Dec 20 11:59:57 2008
New Revision: 4350

URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=4350
Log:
* debian/rules, debian/control,
  debian/patches/02_configurable_compiler.patch:
  + Update for Mono 2.0 transition (Closes: #509056).
  + Replace mono-gmcs build-dep with mono-devel to pull in csc
  + Remove obsolote libmono-dev build-dep
  + Pass GMCS=/usr/bin/csc to configure to use csc for the build
  + Patch the build system to respect the passed compiler (Patch from James
    Westby)
* New upstream bugfix release.
* debian/patches/03_sm-name.patch:
  + Register as "tomboy" to the session manager instead
    of "Tomboy" (Closes: #508995). Thanks to Josselin Mouette
    for the patch idea.

Added:
    packages/tomboy/trunk/debian/patches/02_configurable_compiler.patch
    packages/tomboy/trunk/debian/patches/03_sm-name.patch
Modified:
    packages/tomboy/trunk/debian/changelog
    packages/tomboy/trunk/debian/control
    packages/tomboy/trunk/debian/rules

Modified: packages/tomboy/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tomboy/trunk/debian/changelog?rev=4350&op=diff
==============================================================================
--- packages/tomboy/trunk/debian/changelog (original)
+++ packages/tomboy/trunk/debian/changelog Sat Dec 20 11:59:57 2008
@@ -1,14 +1,28 @@
-tomboy (0.12.1-2) UNRELEASED; urgency=low
+tomboy (0.12.2-1) experimental; urgency=low
 
   [ Pedro Fragoso ]
   * Wrap Build-deps Deps and Suggests
   * Don't install la files
   * Update debian/copyright to reflect tomboykeybinder tomboyutil
 
+  [ Iain Lane ]
+  * debian/rules, debian/control,
+    debian/patches/02_configurable_compiler.patch:
+    + Update for Mono 2.0 transition (Closes: #509056).
+    + Replace mono-gmcs build-dep with mono-devel to pull in csc
+    + Remove obsolote libmono-dev build-dep
+    + Pass GMCS=/usr/bin/csc to configure to use csc for the build
+    + Patch the build system to respect the passed compiler (Patch from James
+      Westby)
+
   [ Sebastian Dröge ]
-  * 
-
- -- Sebastian Dröge <slomo at debian.org>  Mon, 24 Nov 2008 12:53:03 +0100
+  * New upstream bugfix release.
+  * debian/patches/03_sm-name.patch:
+    + Register as "tomboy" to the session manager instead
+      of "Tomboy" (Closes: #508995). Thanks to Josselin Mouette
+      for the patch idea.
+
+ -- Sebastian Dröge <slomo at debian.org>  Sat, 20 Dec 2008 12:58:35 +0100
 
 tomboy (0.12.1-1) experimental; urgency=low
 

Modified: packages/tomboy/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tomboy/trunk/debian/control?rev=4350&op=diff
==============================================================================
--- packages/tomboy/trunk/debian/control (original)
+++ packages/tomboy/trunk/debian/control Sat Dec 20 11:59:57 2008
@@ -5,12 +5,11 @@
 Build-Depends: cdbs, 
                debhelper (>= 5),
                autotools-dev,
-               mono-gmcs (>= 1.1.13.4),
+               mono-devel (>= 2.0),
                libgtk2.0-cil (>= 2.10.4-2),
                libgnome2.0-cil (>= 2.16.1),
                libgconf2.0-cil,
                libgtkspell-dev (>= 2.0.9),
-               libmono-dev (>= 1.1.13.4), 
                intltool,     
                libpanel-applet2-dev,
                libgnomeprint2.2-dev,

Added: packages/tomboy/trunk/debian/patches/02_configurable_compiler.patch
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tomboy/trunk/debian/patches/02_configurable_compiler.patch?rev=4350&op=file
==============================================================================
--- packages/tomboy/trunk/debian/patches/02_configurable_compiler.patch (added)
+++ packages/tomboy/trunk/debian/patches/02_configurable_compiler.patch Sat Dec 20 11:59:57 2008
@@ -1,0 +1,261 @@
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Makefile.include tomboy-0.12.0.new/Makefile.include
+--- tomboy-0.12.0/Makefile.include	2008-09-22 13:11:22.000000000 +0100
++++ tomboy-0.12.0.new/Makefile.include	2008-12-01 00:48:36.000000000 +0000
+@@ -23,7 +23,7 @@
+ ## Build
+ 
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ 
+ ## Runtime
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Mono.Addins/Mono.Addins/Makefile.in tomboy-0.12.0.new/Mono.Addins/Mono.Addins/Makefile.in
+--- tomboy-0.12.0/Mono.Addins/Mono.Addins/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Mono.Addins/Mono.Addins/Makefile.in	2008-12-01 00:49:52.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Mono.Addins/Mono.Addins.Gui/Makefile.in tomboy-0.12.0.new/Mono.Addins/Mono.Addins.Gui/Makefile.in
+--- tomboy-0.12.0/Mono.Addins/Mono.Addins.Gui/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Mono.Addins/Mono.Addins.Gui/Makefile.in	2008-12-01 00:49:46.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Mono.Addins/Mono.Addins.Setup/Makefile.in tomboy-0.12.0.new/Mono.Addins/Mono.Addins.Setup/Makefile.in
+--- tomboy-0.12.0/Mono.Addins/Mono.Addins.Setup/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Mono.Addins/Mono.Addins.Setup/Makefile.in	2008-12-01 00:49:01.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/test/Makefile.am tomboy-0.12.0.new/test/Makefile.am
+--- tomboy-0.12.0/test/Makefile.am	2008-09-22 13:11:13.000000000 +0100
++++ tomboy-0.12.0.new/test/Makefile.am	2008-12-01 00:51:23.000000000 +0000
+@@ -1,4 +1,4 @@
+-CSC = gmcs
++CSC = $(GMCS)
+ 
+ TARGET = TomboyTest.dll
+ 
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/test/Makefile.in tomboy-0.12.0.new/test/Makefile.in
+--- tomboy-0.12.0/test/Makefile.in	2008-09-22 13:11:46.000000000 +0100
++++ tomboy-0.12.0.new/test/Makefile.in	2008-12-01 00:50:00.000000000 +0000
+@@ -230,7 +230,7 @@
+ target_alias = @target_alias@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-CSC = gmcs
++CSC = $(GMCS)
+ TARGET = TomboyTest.dll
+ CSFLAGS = \
+ 	-debug				\
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/Backlinks/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/Backlinks/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/Backlinks/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/Backlinks/Makefile.in	2008-12-01 00:50:03.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/Bugzilla/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/Bugzilla/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/Bugzilla/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/Bugzilla/Makefile.in	2008-12-01 00:50:08.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/Evolution/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/Evolution/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/Evolution/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/Evolution/Makefile.in	2008-12-01 00:50:10.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/ExportToHtml/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/ExportToHtml/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/ExportToHtml/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/ExportToHtml/Makefile.in	2008-12-01 00:50:13.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/FileSystemSyncService/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/FileSystemSyncService/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/FileSystemSyncService/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/FileSystemSyncService/Makefile.in	2008-12-01 00:50:16.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/FixedWidth/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/FixedWidth/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/FixedWidth/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/FixedWidth/Makefile.in	2008-12-01 00:50:19.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/GalagoPresence/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/GalagoPresence/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/GalagoPresence/Makefile.in	2008-09-22 13:11:44.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/GalagoPresence/Makefile.in	2008-12-01 00:50:23.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/InsertTimestamp/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/InsertTimestamp/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/InsertTimestamp/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/InsertTimestamp/Makefile.in	2008-12-01 00:50:26.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/NoteOfTheDay/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/NoteOfTheDay/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/NoteOfTheDay/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/NoteOfTheDay/Makefile.in	2008-12-01 00:50:32.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/PrintNotes/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/PrintNotes/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/PrintNotes/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/PrintNotes/Makefile.in	2008-12-01 00:50:35.000000000 +0000
+@@ -279,7 +279,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/Sketching/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/Sketching/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/Sketching/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/Sketching/Makefile.in	2008-12-01 00:50:39.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/SshSyncService/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/SshSyncService/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/SshSyncService/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/SshSyncService/Makefile.in	2008-12-01 00:50:41.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/StickyNoteImport/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/StickyNoteImport/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/StickyNoteImport/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/StickyNoteImport/Makefile.in	2008-12-01 00:50:44.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/Tasque/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/Tasque/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/Tasque/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/Tasque/Makefile.in	2008-12-01 00:50:46.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Addins/WebDavSyncService/Makefile.in tomboy-0.12.0.new/Tomboy/Addins/WebDavSyncService/Makefile.in
+--- tomboy-0.12.0/Tomboy/Addins/WebDavSyncService/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Addins/WebDavSyncService/Makefile.in	2008-12-01 00:50:50.000000000 +0000
+@@ -254,7 +254,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)
+diff -Nur -x '*.orig' -x '*~' tomboy-0.12.0/Tomboy/Makefile.in tomboy-0.12.0.new/Tomboy/Makefile.in
+--- tomboy-0.12.0/Tomboy/Makefile.in	2008-09-22 13:11:45.000000000 +0100
++++ tomboy-0.12.0.new/Tomboy/Makefile.in	2008-12-01 00:50:55.000000000 +0000
+@@ -269,7 +269,7 @@
+ 
+ @EXTERNAL_MONO_ADDINS_TRUE at LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
+ CSC_FLAGS = -debug
+-CSC = gmcs $(CSC_FLAGS) -target:exe
++CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+ CSC_LIB = $(CSC) -target:library
+ MONO_DEBUGFLAGS = --debug
+ RUNTIME = mono $(MONO_DEBUGFLAGS)

Added: packages/tomboy/trunk/debian/patches/03_sm-name.patch
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tomboy/trunk/debian/patches/03_sm-name.patch?rev=4350&op=file
==============================================================================
--- packages/tomboy/trunk/debian/patches/03_sm-name.patch (added)
+++ packages/tomboy/trunk/debian/patches/03_sm-name.patch Sat Dec 20 11:59:57 2008
@@ -1,0 +1,11 @@
+--- Tomboy/Utils.cs.old	2008-12-20 12:57:14.000000000 +0100
++++ Tomboy/Utils.cs	2008-12-20 12:58:10.000000000 +0100
+@@ -881,7 +881,7 @@
+ 			} catch {} // Ignore exception if fail (not needed to run)
+ 
+ 			Gtk.Application.Init ();
+-			program = new Gnome.Program ("Tomboy",
++			program = new Gnome.Program ("tomboy",
+ 			                             Defines.VERSION,
+ 			                             Gnome.Modules.UI,
+ 			                             args);

Modified: packages/tomboy/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tomboy/trunk/debian/rules?rev=4350&op=diff
==============================================================================
--- packages/tomboy/trunk/debian/rules (original)
+++ packages/tomboy/trunk/debian/rules Sat Dec 20 11:59:57 2008
@@ -9,7 +9,7 @@
 LDFLAGS+=-Wl,-z,defs -Wl,-O1 -Wl,--as-needed
 DEB_CONFIGURE_EXTRA_FLAGS := --disable-scrollkeeper
 DEB_INSTALL_DOCS_ALL := README NEWS
-DEB_CONFIGURE_EXTRA_FLAGS += --with-mono-addins=system
+DEB_CONFIGURE_EXTRA_FLAGS += --with-mono-addins=system GMCS=/usr/bin/csc
 
 common-configure-indep::
 	mkdir -p $(MONO_SHARED_DIR)/.wapi




More information about the Pkg-cli-apps-commits mailing list