Advertisement
Guest User

Untitled

a guest
May 6th, 2017
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. diff -u ndesk-dbus-0.6.0/debian/changelog ndesk-dbus-0.6.0/debian/changelog
  2. --- ndesk-dbus-0.6.0/debian/changelog
  3. +++ ndesk-dbus-0.6.0/debian/changelog
  4. @@ -1,3 +1,9 @@
  5. +ndesk-dbus (0.6.0-1ubuntu1) jaunty; urgency=low
  6. +
  7. + * Update for mono 2.0 transition
  8. +
  9. + -- Iain Lane <laney@ubuntu.com> Fri, 28 Nov 2008 21:29:36 +0000
  10. +
  11. ndesk-dbus (0.6.0-1) unstable; urgency=low
  12.  
  13. * New upstream release.
  14. diff -u ndesk-dbus-0.6.0/debian/control ndesk-dbus-0.6.0/debian/control
  15. --- ndesk-dbus-0.6.0/debian/control
  16. +++ ndesk-dbus-0.6.0/debian/control
  17. @@ -1,10 +1,11 @@
  18. Source: ndesk-dbus
  19. Section: devel
  20. Priority: optional
  21. -Maintainer: Debian Mono Group <pkg-mono-group@lists.alioth.debian.org>
  22. +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com>
  23. +XSBC-Original-Maintainer: Debian Mono Group <pkg-mono-group@lists.alioth.debian.org>
  24. Uploaders: Sebastian Dröge <slomo@debian.org>
  25. Build-Depends: debhelper (>= 5), dpatch
  26. -Build-Depends-Indep: cli-common-dev (>= 0.4.4), mono-gmcs (>= 1.1.13) | c-sharp-2.0-compiler, libmono-dev (>= 1.1.13), mono-gac | global-assembly-cache-tool, libmono-corlib2.0-cil, libmono-system2.0-cil, libmono2.0-cil, pkg-config
  27. +Build-Depends-Indep: cli-common-dev (>= 0.4.4), mono-devel (>= 2.0), libmono-dev (>= 2.0), mono-gac | global-assembly-cache-tool, libmono-corlib2.0-cil, libmono-system2.0-cil, libmono2.0-cil, pkg-config
  28. Standards-Version: 3.7.2
  29.  
  30. Package: libndesk-dbus1.0-cil
  31. diff -u ndesk-dbus-0.6.0/debian/patches/00list ndesk-dbus-0.6.0/debian/patches/00list
  32. --- ndesk-dbus-0.6.0/debian/patches/00list
  33. +++ ndesk-dbus-0.6.0/debian/patches/00list
  34. @@ -1,0 +2 @@
  35. +10_use_csc.dpatch
  36. only in patch2:
  37. unchanged:
  38. --- ndesk-dbus-0.6.0.orig/debian/patches/10_use_csc.dpatch
  39. +++ ndesk-dbus-0.6.0/debian/patches/10_use_csc.dpatch
  40. @@ -0,0 +1,47 @@
  41. +#! /bin/sh /usr/share/dpatch/dpatch-run
  42. +## 10_use_csc.dpatch by Iain Lane <laney@ubuntu.com>
  43. +##
  44. +## All lines beginning with `## DP:' are a description of the patch.
  45. +## DP: Patch configure file to look for csc instead of gmcs as part of mono transition
  46. +
  47. +@DPATCH@
  48. +diff -urNad ndesk-dbus-0.6.0~/configure ndesk-dbus-0.6.0/configure
  49. +--- ndesk-dbus-0.6.0~/configure 2007-10-16 02:38:06.000000000 +0100
  50. ++++ ndesk-dbus-0.6.0/configure 2008-11-28 21:38:19.000000000 +0000
  51. +@@ -2660,8 +2660,8 @@
  52. + :
  53. + fi
  54. +
  55. +-# Extract the first word of "gmcs", so it can be a program name with args.
  56. +-set dummy gmcs; ac_word=$2
  57. ++# Extract the first word of "csc", so it can be a program name with args.
  58. ++set dummy csc; ac_word=$2
  59. + { echo "$as_me:$LINENO: checking for $ac_word" >&5
  60. + echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
  61. + if test "${ac_cv_path_GMCS+set}" = set; then
  62. +@@ -2702,8 +2702,8 @@
  63. +
  64. +
  65. + if test "x$GMCS" = "xno"; then
  66. +- { { echo "$as_me:$LINENO: error: You need to install gmcs" >&5
  67. +-echo "$as_me: error: You need to install gmcs" >&2;}
  68. ++ { { echo "$as_me:$LINENO: error: You need to install a c-sharp compiler" >&5
  69. ++echo "$as_me: error: You need to install a c-sharp compiler" >&2;}
  70. + { (exit 1); exit 1; }; }
  71. + fi
  72. +
  73. +diff -urNad ndesk-dbus-0.6.0~/configure.ac ndesk-dbus-0.6.0/configure.ac
  74. +--- ndesk-dbus-0.6.0~/configure.ac 2007-10-16 02:35:16.000000000 +0100
  75. ++++ ndesk-dbus-0.6.0/configure.ac 2008-11-28 21:38:14.000000000 +0000
  76. +@@ -25,9 +25,9 @@
  77. + MONO_REQ_VERSION=1.1.13
  78. + PKG_CHECK_MODULES(MONO, mono >= $MONO_REQ_VERSION)
  79. +
  80. +-AC_PATH_PROG(GMCS, gmcs, no)
  81. ++AC_PATH_PROG(GMCS, csc, no)
  82. + if test "x$GMCS" = "xno"; then
  83. +- AC_MSG_ERROR([You need to install gmcs])
  84. ++ AC_MSG_ERROR([You need to install a c-sharp compiler])
  85. + fi
  86. + AC_SUBST(GMCS)
  87. +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement