r34304 - in /desktop/experimental/gtk+3.0/debian: changelog patches/071_fix-installation-of-HTML-images.patch patches/series

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Tue Apr 17 17:15:59 UTC 2012


Author: biebl
Date: Tue Apr 17 17:15:57 2012
New Revision: 34304

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=34304
Log:
debian/patches/071_fix-installation-of-HTML-images.patch: Fix installation
of HTML images for out-of-tree builds when using absolute paths.
Closes: #656803

Added:
    desktop/experimental/gtk+3.0/debian/patches/071_fix-installation-of-HTML-images.patch
Modified:
    desktop/experimental/gtk+3.0/debian/changelog
    desktop/experimental/gtk+3.0/debian/patches/series

Modified: desktop/experimental/gtk+3.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gtk%2B3.0/debian/changelog?rev=34304&op=diff
==============================================================================
--- desktop/experimental/gtk+3.0/debian/changelog [utf-8] (original)
+++ desktop/experimental/gtk+3.0/debian/changelog [utf-8] Tue Apr 17 17:15:57 2012
@@ -17,8 +17,11 @@
   * Update Vcs-* URLs.
   * Remove --enable-xinput configure flag as xinput support is no longer
     optional and this flag has thus been removed upstream.
-
- -- Michael Biebl <biebl at debian.org>  Mon, 16 Apr 2012 15:19:01 +0200
+  * debian/patches/071_fix-installation-of-HTML-images.patch: Fix installation
+    of HTML images for out-of-tree builds when using absolute paths.
+    Closes: #656803
+
+ -- Michael Biebl <biebl at debian.org>  Tue, 17 Apr 2012 19:13:46 +0200
 
 gtk+3.0 (3.4.0-1) experimental; urgency=low
 

Added: desktop/experimental/gtk+3.0/debian/patches/071_fix-installation-of-HTML-images.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gtk%2B3.0/debian/patches/071_fix-installation-of-HTML-images.patch?rev=34304&op=file
==============================================================================
--- desktop/experimental/gtk+3.0/debian/patches/071_fix-installation-of-HTML-images.patch (added)
+++ desktop/experimental/gtk+3.0/debian/patches/071_fix-installation-of-HTML-images.patch [utf-8] Tue Apr 17 17:15:57 2012
@@ -1,0 +1,30 @@
+From 4c220ef6650afeba334570ad00db0a95c9ba38e6 Mon Sep 17 00:00:00 2001
+From: Michael Biebl <biebl at debian.org>
+Date: Tue, 17 Apr 2012 13:29:09 +0200
+Subject: [PATCH] Fix installation of HTML images for absolute paths
+
+when using out-of-tree builds.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=674163
+---
+ gtk-doc.make |    4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/gtk-doc.make b/gtk-doc.make
+index 6664c16..e401468 100644
+--- a/gtk-doc.make
++++ b/gtk-doc.make
+@@ -176,8 +176,8 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+ 	  if test -f $(abs_srcdir)/$$file ; then \
+ 	    cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
+ 	  fi; \
+-	  if test -f $(abs_builddir)/$$file ; then \
+-	    cp $(abs_builddir)/$$file $(abs_builddir)/html; \
++	  if test -f $$file ; then \
++	    cp $$file $(abs_builddir)/html; \
+ 	  fi; \
+ 	done;
+ 	@echo '  DOC   Fixing cross-references'
+-- 
+1.7.10
+

Modified: desktop/experimental/gtk+3.0/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gtk%2B3.0/debian/patches/series?rev=34304&op=diff
==============================================================================
--- desktop/experimental/gtk+3.0/debian/patches/series [utf-8] (original)
+++ desktop/experimental/gtk+3.0/debian/patches/series [utf-8] Tue Apr 17 17:15:57 2012
@@ -9,3 +9,4 @@
 060_ignore-random-icons.patch
 061_multiarch_module_fallback.patch
 070_revert-widget-set-up-signals-after-initializing.patch
+071_fix-installation-of-HTML-images.patch




More information about the pkg-gnome-commits mailing list