[Pkg-xfce-commits] r2440 - in desktop/trunk/xfce4-appfinder/debian: . patches

ncommander-guest at alioth.debian.org ncommander-guest at alioth.debian.org
Sun Oct 19 06:21:29 UTC 2008


Author: ncommander-guest
Date: 2008-10-19 06:21:29 +0000 (Sun, 19 Oct 2008)
New Revision: 2440

Added:
   desktop/trunk/xfce4-appfinder/debian/patches/
   desktop/trunk/xfce4-appfinder/debian/patches/00_enable-label-word-wrap.patch
   desktop/trunk/xfce4-appfinder/debian/patches/series
Modified:
   desktop/trunk/xfce4-appfinder/debian/changelog
   desktop/trunk/xfce4-appfinder/debian/control
   desktop/trunk/xfce4-appfinder/debian/rules
Log:
  - added quilt to build-dep
* debian/rules:
  - added quilt rules

Modified: desktop/trunk/xfce4-appfinder/debian/changelog
===================================================================
--- desktop/trunk/xfce4-appfinder/debian/changelog	2008-10-19 06:03:51 UTC (rev 2439)
+++ desktop/trunk/xfce4-appfinder/debian/changelog	2008-10-19 06:21:29 UTC (rev 2440)
@@ -14,6 +14,9 @@
   * debian/control:
     - bumped standards to 3.8.0
     - added myself to uploaders
+    - added quilt to build-dep
+  * debian/rules:
+    - added quilt rules
 
  -- Michael Casadevall <sonicmctails at gmail.com>  Sun, 19 Oct 2008 01:58:21 -0400
 

Modified: desktop/trunk/xfce4-appfinder/debian/control
===================================================================
--- desktop/trunk/xfce4-appfinder/debian/control	2008-10-19 06:03:51 UTC (rev 2439)
+++ desktop/trunk/xfce4-appfinder/debian/control	2008-10-19 06:21:29 UTC (rev 2440)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
 Uploaders: Martin Loschwitz <madkiss at debian.org>, Emanuele Rocca <ema at debian.org>, Simon Huggins <huggie at earth.li>, Yves-Alexis Perez <corsac at debian.org>, Michael Casadevall <sonicmctails at gmail.com>
-Build-Depends: debhelper (>= 4.0.0), libxfcegui4-dev (>= 4.4.2), libxfce4mcs-dev (>= 4.4.2), libxft-dev, libxml-parser-perl
+Build-Depends: debhelper (>= 4.0.0), libxfcegui4-dev (>= 4.4.2), libxfce4mcs-dev (>= 4.4.2), libxft-dev, libxml-parser-perl, quilt
 Standards-Version: 3.8.0
 Homepage: http://www.xfce.org/
 Vcs-Svn: svn://svn.debian.org/pkg-xfce/desktop/trunk/xfce4-appfinder/

Added: desktop/trunk/xfce4-appfinder/debian/patches/00_enable-label-word-wrap.patch
===================================================================
--- desktop/trunk/xfce4-appfinder/debian/patches/00_enable-label-word-wrap.patch	                        (rev 0)
+++ desktop/trunk/xfce4-appfinder/debian/patches/00_enable-label-word-wrap.patch	2008-10-19 06:21:29 UTC (rev 2440)
@@ -0,0 +1,34 @@
+--- src/main.c~	2007-11-16 22:34:14.000000000 +0100
++++ src/main.c	2007-11-16 22:33:56.000000000 +0100
+@@ -271,6 +271,7 @@
+ 
+         label = gtk_label_new(NULL);
+         gtk_misc_set_alignment (GTK_MISC(label), 0, 0);
++        gtk_label_set_line_wrap (GTK_LABEL(label), TRUE);
+         gtk_widget_show(label);
+         gtk_table_attach_defaults (GTK_TABLE (table), label,
+                                    1, 2, 0, 1);
+@@ -295,6 +296,7 @@
+ 
+         label = gtk_label_new(NULL);
+         gtk_misc_set_alignment (GTK_MISC(label), 0, 0);
++        gtk_label_set_line_wrap (GTK_LABEL(label), TRUE);
+         gtk_widget_show(label);
+         gtk_table_attach_defaults (GTK_TABLE (table), label,
+                                    1, 2, 1, 2);
+@@ -328,6 +330,7 @@
+ 
+         label = gtk_label_new(NULL);
+         gtk_misc_set_alignment (GTK_MISC(label), 0, 0);
++        gtk_label_set_line_wrap (GTK_LABEL(label), TRUE);
+         gtk_widget_show(label);
+         gtk_table_attach_defaults (GTK_TABLE (table), label,
+                                    1, 2, 2, 3);
+@@ -353,6 +356,7 @@
+ 
+         label = gtk_label_new(NULL);
+         gtk_misc_set_alignment (GTK_MISC(label), 0, 0);
++        gtk_label_set_line_wrap (GTK_LABEL(label), TRUE);
+         gtk_widget_show(label);
+         gtk_table_attach_defaults (GTK_TABLE (table), label,
+                                    1, 2, 3, 4);

Added: desktop/trunk/xfce4-appfinder/debian/patches/series
===================================================================
--- desktop/trunk/xfce4-appfinder/debian/patches/series	                        (rev 0)
+++ desktop/trunk/xfce4-appfinder/debian/patches/series	2008-10-19 06:21:29 UTC (rev 2440)
@@ -0,0 +1 @@
+00_enable-label-word-wrap.patch -p0

Modified: desktop/trunk/xfce4-appfinder/debian/rules
===================================================================
--- desktop/trunk/xfce4-appfinder/debian/rules	2008-10-19 06:03:51 UTC (rev 2439)
+++ desktop/trunk/xfce4-appfinder/debian/rules	2008-10-19 06:21:29 UTC (rev 2440)
@@ -1,6 +1,8 @@
 #!/usr/bin/make -f
 # -*- makefile -*-
 
+include /usr/share/quilt/quilt.make
+
 # 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)
@@ -14,7 +16,7 @@
 	CFLAGS += -O2
 endif
 
-config.status: configure
+config.status: configure $(QUILT_STAMPFN)
 	dh_testdir
 	# Add here commands to configure the package.
 	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc --enable-final
@@ -27,7 +29,7 @@
 	$(MAKE)
 	touch build-stamp
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp 




More information about the Pkg-xfce-commits mailing list