Bug#564318: xserver-xorg-video-intel: same problem with latest Debian kernel (2.6.32-5)

2010-01-16 Thread Julien Cristau
On Fri, Jan 15, 2010 at 23:50:06 +0100, Bjørn Mork wrote:

 Bjørn Mork bj...@mork.no writes:
 
  I see that I have the same issue of vesafb loaded befor the Intel fb.  Is 
  this
  the problem?  If so, then I guess either xserver-xorg-video-intel or the
  kernel should prevent it.  I've not done anything to force vesafb AFAIK
 
 Well, not intentionally at least.  Typically, right after posting this
 it struck me: I had vga=792 on my kernel command line as a leftover
 since forever...  That's what screwed up.
 
 I guess you need to add /proc/cmdline to your reportbug script now :-)
 
It was added to the Xorg log recently, so it's already there.

 Something should also probably be done to warn lusers like myself of
 this problem when auto-enabling KMS.  Looking for VESA modes on the
 command line maybe?
 
 Happy now.  Just need to find out how I enable the nice native
 resolution from boot.  I guess it must be documented somewhere...
 
You can add video=i915 to the kernel command line for now.

Cheers,
Julien



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#563035: console-setup: bottom 2-3 lines are cut off in virtual terminals with Fixed14

2010-01-16 Thread Anton Zinoviev
On Sat, Jan 16, 2010 at 04:52:47AM +0100, Vincent Lefevre wrote:
 
 I've done some tests. Running setupcon solves the problem
 (questions 1.1 and 1.2 of the console-setup FAQ should be merged
 to make this clear).

You are right - 1.1 and 1.2 are two symptoms of one problem.

 Couldn't setupcon be run at the right time? For instance, is there a 
 script that is run after one has switched to a console?

Unfortunately there is no right time for this - there is no script that 
is run after one has switched to a console.  I suppose that if you 
switch to the console, run setupcon, then go again to X and return back 
to the console, the bottom 3 lines will be cut again.  So you will have 
to run setupcon again.

The FAQ mentions 

Option VBERestore true

when one is using the i810 driver.  Maybe there is some similar option 
for the Nvidia driver?  

Anton Zinoviev



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xorg-server: Changes to 'ubuntu'

2010-01-16 Thread Bryce Harrington
 debian/changelog  |   17 +++
 debian/patches/100_rethrow_signals.patch  |4 --
 debian/patches/160_log_timestamping.patch |   44 --
 debian/patches/series |1 
 4 files changed, 18 insertions(+), 48 deletions(-)

New commits:
commit 060d4ddfec992ee86c1839ceaf7ad173e88b11fd
Author: Bryce Harrington br...@bryceharrington.org
Date:   Sat Jan 16 03:10:32 2010 -0800

Timestamping is no longer needed

diff --git a/debian/changelog b/debian/changelog
index 0dc1a33..1124677 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,12 +1,19 @@
+xorg-server (2:1.7.3.902-1ubuntu8) lucid; urgency=low
+
+  * Drop 160_log_timestamping.patch.  The bootup time objectives have been
+met so this patch is no longer required.
+
+ -- Bryce Harrington br...@ubuntu.com  Sat, 16 Jan 2010 02:28:30 -0800
+
 xorg-server (2:1.7.3.902-1ubuntu7) lucid; urgency=low
 
   * Update 100_rethrow_signals.patch: Don't log more error messages after
 the log has been closed, else it causes a SIGSEGV (signal 11) crash
 under several different conditions, including on even ordinary error
 exits.
-(LP: #506510, #507345, #506977, #504497)
+(LP: #506510, #507345, #506977, #504497, #507083)
 
- -- Bryce Harrington br...@ubuntu.com  Fri, 15 Jan 2010 13:48:12 -0800
+ -- Bryce Harrington br...@ubuntu.com  Fri, 15 Jan 2010 15:22:34 -0800
 
 xorg-server (2:1.7.3.902-1ubuntu6) lucid; urgency=low
 
diff --git a/debian/patches/160_log_timestamping.patch 
b/debian/patches/160_log_timestamping.patch
deleted file mode 100644
index a40052b..000
--- a/debian/patches/160_log_timestamping.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-Binary files xorg-server-ubuntu-git-patched/.git/index and 
xorg-server-ubuntu-git-working/.git/index differ
-diff -Nurp xorg-server-ubuntu-git-patched/os/log.c 
xorg-server-ubuntu-git-working/os/log.c
 xorg-server-ubuntu-git-patched/os/log.c2009-12-01 18:49:34.0 
-0800
-+++ xorg-server-ubuntu-git-working/os/log.c2009-12-01 20:29:19.0 
-0800
-@@ -314,6 +314,29 @@ LogVMessageVerb(MessageType type, int ve
- const char *s  = X_UNKNOWN_STRING;
- char tmpBuf[1024];
- 
-+struct timeval time;
-+time_t tv_sec;
-+suseconds_t tv_usec;
-+static Bool first = TRUE;
-+static time_t start_tv_sec;
-+static suseconds_t start_usec;
-+int diff_sec, diff_usec;
-+
-+gettimeofday(time, NULL);
-+tv_sec = time.tv_sec;
-+tv_usec = time.tv_usec;
-+if (first == TRUE) {
-+start_tv_sec = tv_sec;
-+start_usec = tv_usec;
-+first = FALSE;
-+}
-+diff_sec = (int)difftime(tv_sec, start_tv_sec);
-+diff_usec = (tv_usec - start_usec);
-+if (diff_usec  0) {
-+diff_sec--;
-+diff_usec += 100;
-+}
-+
- /* Ignore verbosity for X_ERROR */
- if (logVerbosity = verb || logFileVerbosity = verb || type == X_ERROR) {
-   switch (type) {
-@@ -355,7 +378,8 @@ LogVMessageVerb(MessageType type, int ve
-   }
- 
- /* if s is not NULL we need a space before format */
--snprintf(tmpBuf, sizeof(tmpBuf), %s%s%s, s ? s : ,
-+snprintf(tmpBuf, sizeof(tmpBuf), [%5d.%06d] %s%s%s, diff_sec, 
diff_usec,
-+   s ? s : ,
-s ?   : ,
-format);
- LogVWrite(verb, tmpBuf, args);
diff --git a/debian/patches/series b/debian/patches/series
index 641e603..625d6ac 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -18,7 +18,6 @@
 121_only_switch_vt_when_active.diff
 #143_default_to_vesa.patch
 157_check_null_modes.patch
-160_log_timestamping.patch
 162_null_crtc_in_rotation.patch
 164_trap-aspect-ratios.patch
 165_man_xorg_conf_no_device_ident.patch

commit 47ca1e88f92d931ad8841a9cd5808658ac744aa7
Author: Bryce Harrington br...@bryceharrington.org
Date:   Fri Jan 15 15:07:12 2010 -0800

Don't write to log file after it's been closed.  Duh.

diff --git a/debian/changelog b/debian/changelog
index 438699e..0dc1a33 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+xorg-server (2:1.7.3.902-1ubuntu7) lucid; urgency=low
+
+  * Update 100_rethrow_signals.patch: Don't log more error messages after
+the log has been closed, else it causes a SIGSEGV (signal 11) crash
+under several different conditions, including on even ordinary error
+exits.
+(LP: #506510, #507345, #506977, #504497)
+
+ -- Bryce Harrington br...@ubuntu.com  Fri, 15 Jan 2010 13:48:12 -0800
+
 xorg-server (2:1.7.3.902-1ubuntu6) lucid; urgency=low
 
   * debian/xserver-xorg-core.preinst.in:
diff --git a/debian/patches/100_rethrow_signals.patch 
b/debian/patches/100_rethrow_signals.patch
index 2da1df4..97545e5 100644
--- a/debian/patches/100_rethrow_signals.patch
+++ b/debian/patches/100_rethrow_signals.patch
@@ -104,7 +104,7 @@ diff -Nurp 

Bug#565427: libgl1-mesa-dri: any 3d applications completely freeze system

2010-01-16 Thread Adam Bartley
Dear Julien,

Installing the 7.7 version has fixed the problem. Many thanks for your
prompt advice.

With best wishes,

Adam Bartley

On Sat, Jan 16, 2010 at 5:09 AM, Julien Cristau jcris...@debian.org wrote:

 On Sat, Jan 16, 2010 at 04:48:19 +1100, Adam Bartley wrote:

  Package: libgl1-mesa-dri
  Version: 7.6.1-1
  Justification: renders package unusable
  Severity: grave
 
  *** Please type your report below this line ***
 
  The latest update freezes the system entirely whenever *any* applications
  that use opengl start. There is no way to
  reboot safely and the system must be hard rebooted. As there is no
 response
  at all I have not tried anysort of trace
  on the error, though will do so if requested. (Please give instructions.)
  The system is a powerpc ibook running a
  radeon 9200. Only the latest version added to 'testing' causes this
 error.
 
 Please upgrade to mesa 7.7 from experimental.  If that doesn't help
 please provide your dmesg, xorg.conf and Xorg log.

 Thanks,
 Julien



Bug#565488: xserver-xorg-core: server crash with nv driver

2010-01-16 Thread matthieu castet
Package: xserver-xorg-core
Version: 2:1.7.4-1
Severity: normal


Hi,

running x11perf -range ftext,scroll500 produce a server crash [1]



[1]
[mi] EQ overflowing. The server is probably stuck in an infinite loop.

Backtrace:
0: /usr/bin/X11/X (xorg_backtrace+0x3b) [0x80a8a9b]
1: /usr/bin/X11/X (mieqEnqueue+0x1ab) [0x80a280b]
2: /usr/bin/X11/X (xf86PostMotionEventP+0xcc) [0x80c5e2c]
3: /usr/lib/xorg/modules/input/evdev_drv.so (0xb767c000+0x4801) [0xb7680801]
4: /usr/lib/xorg/modules/input/evdev_drv.so (0xb767c000+0x4af6) [0xb7680af6]
5: /usr/bin/X11/X (0x8048000+0x6e57f) [0x80b657f]
6: /usr/bin/X11/X (0x8048000+0x100ac4) [0x8148ac4]
7: (vdso) (__kernel_sigreturn+0x0) [0xb77cf400]
8: /usr/lib/xorg/modules/drivers/nv_drv.so (0xb76d9000+0x1173c) [0xb76ea73c]
9: /usr/lib/xorg/modules/libxaa.so (XAATEGlyphRendererScanlineLSBFirst+0x1f7) 
[0xb6548a67]
10: /usr/lib/xorg/modules/libxaa.so (0xb6513000+0x12498) [0xb6525498]
11: /usr/lib/xorg/modules/libxaa.so (XAAImageText16TEColorExpansion+0xfc) 
[0xb65257bc]
12: /usr/lib/xorg/modules/libxaa.so (0xb6513000+0x4ba44) [0xb655ea44]
13: /usr/bin/X11/X (0x8048000+0xc74ec) [0x810f4ec]
14: /usr/bin/X11/X (doImageText+0x1ed) [0x807fedd]
15: /usr/bin/X11/X (ImageText+0x7f) [0x808010f]
16: /usr/bin/X11/X (0x8048000+0x452d6) [0x808d2d6]
17: /usr/bin/X11/X (0x8048000+0x479e7) [0x808f9e7]
18: /usr/bin/X11/X (0x8048000+0x1e95a) [0x806695a]
19: /lib/i686/cmov/libc.so.6 (__libc_start_main+0xe5) [0x46cc9b55]
20: /usr/bin/X11/X (0x8048000+0x1e541) [0x8066541]


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Apr 12  2006 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1710452 Jan 12 13:00 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation NV25 [GeForce4 Ti 4200] 
(rev a3)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 4113 Jan 16 11:40 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadbitmap
Loaddbe
Loadddc
Loadextmod
Loadfreetype
Loadglx
Loaddri
Loadint10
Loadrecord
Loadtype1
Loadv4l
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout fr
#Driver evdev
#Option Device /dev/input/event1
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ExplorerPS/2
Option  Emulate3Buttons   true
#Driver evdev
#Option Device /dev/input/event2
EndSection

Section Device
Identifier  NVIDIA Geforce 4 MX
Driver  nv
#Driver nvidia
#Driver nouveau
#Option MigrationHeuristic greedy
#Option NoAccel 1
#Option AccelMethod XAA
Option DPMS
Option CursorShadowYOffset 2
Option CursorShadow on
Option CursorShadowXOffset 4
Option CursorShadowAlpha 64 

Option NoLogo on
Option NvAGP 3
#Option RenderAccel 0
#Option TVOverScan 0.0
#Option DigitalVibrance 255

#Option TwinView off 
##on
#Option TwinViewOrientation Clone
#Option SecondMonitorHorizSync 30-50
#Option SecondMonitorVertRefresh 60
#Option TVStandard PAL-B

#Option MetaModes 

Bug#565427: marked as done (libgl1-mesa-dri: any 3d applications completely freeze system)

2010-01-16 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2010 12:34:24 +0100
with message-id 4b51a440.6050...@ens-lyon.org
and subject line Re: Bug#565427: libgl1-mesa-dri: any 3d applications 
completely  freeze system
has caused the Debian Bug report #565427,
regarding libgl1-mesa-dri: any 3d applications completely freeze system
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
565427: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565427
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libgl1-mesa-dri
Version: 7.6.1-1
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***

The latest update freezes the system entirely whenever *any* applications
that use opengl start. There is no way to
reboot safely and the system must be hard rebooted. As there is no response
at all I have not tried anysort of trace
on the error, though will do so if requested. (Please give instructions.)
The system is a powerpc ibook running a
radeon 9200. Only the latest version added to 'testing' causes this error.

Thanks for the attention,

Adam Bartley

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.30-2-powerpc
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libgl1-mesa-dri depends on:
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libdrm2   2.4.15-1   Userspace interface to kernel
DRM
ii  libexpat1 2.0.1-7XML parsing C library - runtime
li

libgl1-mesa-dri recommends no packages.

Versions of packages libgl1-mesa-dri suggests:
pn  libglide3 none (no description available)

-- no debconf information
---End Message---
---BeginMessage---
Version: 7.7-1


Adam Bartley wrote:
 Dear Julien,

 Installing the 7.7 version has fixed the problem. Many thanks for your
 prompt advice.

 With best wishes,


---End Message---


Bug#565313: xserver-xorg-video-radeon

2010-01-16 Thread Bob Hauck
I also have the dim green-tinted display in 16-bit mode.  Seems to work 
fine in 24 bits but Flash video plays poorly in 24-bit mode which is why 
I prefer to use 16 bits.  Versions prior to the upgrade the week of Jan 
15 2010 worked normally in 16-bit mode.


I have xserver-xorg 1:7.5+1 and xserver-xorg-video-radeon 1:6.12.4-2. 
My video card is a Radeon Mobility 9200.  Output from lspci:


01:00.0 VGA compatible controller: ATI Technologies Inc M9+ 5C61 [Radeon 
Mobility 9200 (AGP)] (rev 01)



--
 -| Bob Hauck (Brother Nail Gun of The Short Path)
 -| http://www.haucks.org/



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#565488: xserver-xorg-core: server crash with nv driver

2010-01-16 Thread Julien Cristau
On Sat, Jan 16, 2010 at 12:13:44 +0100, matthieu castet wrote:

 running x11perf -range ftext,scroll500 produce a server crash [1]
 
 
 
 [1]
 [mi] EQ overflowing. The server is probably stuck in an infinite loop.
 
That's not a crash.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: reassign 565488 to xserver-xorg-video-nv

2010-01-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 565488 xserver-xorg-video-nv
Bug #565488 [xserver-xorg-core] xserver-xorg-core: server crash with nv driver
Bug reassigned from package 'xserver-xorg-core' to 'xserver-xorg-video-nv'.
Bug No longer marked as found in versions xorg-server/2:1.7.4-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#561008: console-setup: approximations for 'toilet -f future' symbols look different before and after X

2010-01-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 561008 xserver-xorg-video-intel 2:2.9.1-1
Bug #561008 [console-setup] console-setup: approximations for 'toilet -f 
future' symbols look different before and after X
Bug reassigned from package 'console-setup' to 'xserver-xorg-video-intel'.
Bug No longer marked as found in versions console-setup/1.50.
Bug #561008 [xserver-xorg-video-intel] console-setup: approximations for 
'toilet -f future' symbols look different before and after X
Bug Marked as found in versions xserver-xorg-video-intel/2:2.9.1-1.
 thank you
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#561008: console-setup: approximations for 'toilet -f future' symbols look different before and after X

2010-01-16 Thread Francesco Poli
On Sat, 16 Jan 2010 15:56:46 +0200 Anton Zinoviev wrote:

[...]
 On Sat, Jan 16, 2010 at 12:24:14PM +0100, Francesco Poli wrote:
 
  I have just performed the test you requested, and I can confirm that
  lat1u-16.psf.gz is OK (without X).
 
 Then I am reassigning to xserver-xorg-video-intel.

Thank you, Anton.
Now let's see what the X Strike Force has to say...


-- 
 http://www.inventati.org/frx/progs/scripts/pdebuild-hooks.html
 Need some pdebuild hook scripts?
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpBVEsj0WjFL.pgp
Description: PGP signature


Processed: severity of 561008 is minor, tagging 561008

2010-01-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 561008 minor
Bug #561008 [xserver-xorg-video-intel] console-setup: approximations for 
'toilet -f future' symbols look different before and after X
Severity set to 'minor' from 'normal'

 tags 561008 upstream
Bug #561008 [xserver-xorg-video-intel] console-setup: approximations for 
'toilet -f future' symbols look different before and after X
Added tag(s) upstream.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xutils-dev: Changes to 'refs/tags/xutils-dev-1_7.5+1'

2010-01-16 Thread Julien Cristau
Tag 'xutils-dev-1_7.5+1' created by Julien Cristau jcris...@debian.org at 
2010-01-16 15:44 +

Tagging upload of xutils-dev 1:7.5+1 to unstable.

Changes since xutils-dev-1_7.5-1:
Julien Cristau (11):
  xsfbs.sh: fix typo and remove svn keyword
  xsfbs.mk: kill obsolete DEFAULT_DCRESOLUTIONS and SOURCE_DIR usage
  xsfbs.mk: remove more obsolete code
  Merge branch 'debian-unstable' of git.debian.org:/git/pkg-xorg/xsfbs into 
debian-unstable
  Add watch files and debian/rules target to download tarballs.
  New upstream releases
  Drop 07_cf_GNUArchitecture_for_GNU_kFreeBSD.diff, applied upstream.
  util-macros 1.4.2
  Update debian/copyright from util-macros/COPYING.
  Update install file for new util-macros
  Prepare changelog for upload

---
 debian/changelog   |   12 
 debian/copyright   |   65 
 debian/patches/07_cf_GNUArchitecture_for_GNU_kFreeBSD.diff |   27 
 debian/patches/series  |1 
 debian/rules   |   16 
 debian/watch.gccmakedep|2 
 debian/watch.imake |2 
 debian/watch.lndir |2 
 debian/watch.makedepend|2 
 debian/watch.util-macros   |2 
 debian/watch.xorg-cf-files |2 
 debian/xsfbs/xsfbs.mk  |   17 
 debian/xsfbs/xsfbs.sh  |4 
 debian/xutils-dev.install  |2 
 makedepend/AUTHORS |1 
 makedepend/COPYING |1 
 makedepend/ChangeLog   |  569 +
 makedepend/Makefile.am |   24 
 makedepend/Makefile.in |  478 -
 makedepend/aclocal.m4  | 1834 +++--
 makedepend/autogen.sh  |1 
 makedepend/compile |  142 
 makedepend/config.guess|  107 
 makedepend/config.sub  |  116 
 makedepend/configure   | 4269 -
 makedepend/configure.ac|   13 
 makedepend/cppsetup.c  |  108 
 makedepend/def.h   |   44 
 makedepend/depcomp |  172 
 makedepend/ifparser.c  |2 
 makedepend/ifparser.h  |2 
 makedepend/imakemdep.h | 1090 ---
 makedepend/include.c   |   18 
 makedepend/install-sh  |  517 +
 makedepend/main.c  |   71 
 makedepend/makedepend-config.h.in  |   30 
 makedepend/makedepend.man  |2 
 makedepend/missing |  104 
 makedepend/parse.c |   20 
 makedepend/pr.c|   14 
 util-macros/COPYING|   36 
 util-macros/ChangeLog  |  184 
 util-macros/INSTALL|  291 
 util-macros/Makefile.am|6 
 util-macros/Makefile.in|  226 
 util-macros/aclocal.m4 |  217 
 util-macros/configure  | 1655 ++---
 util-macros/configure.ac   |   16 
 util-macros/install-sh |  231 
 util-macros/missing|   49 
 util-macros/xorg-macros.m4.in  |   57 
 util-macros/xorg-macros.pc.in  |   16 
 util-macros/xorgversion.m4 |7 
 xorg-cf-files/ChangeLog| 2500 +++
 xorg-cf-files/DragonFly.cf |8 
 xorg-cf-files/FreeBSD.cf   |2 
 xorg-cf-files/Imake.cf |5 
 xorg-cf-files/Imake.rules  |2 
 xorg-cf-files/Imake.tmpl   |2 
 xorg-cf-files/Makefile.am  |   11 
 xorg-cf-files/Makefile.in  |  311 
 

xutils-dev: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog   |   12 
 debian/copyright   |   65 
 debian/patches/07_cf_GNUArchitecture_for_GNU_kFreeBSD.diff |   27 
 debian/patches/series  |1 
 debian/rules   |   16 
 debian/watch.gccmakedep|2 
 debian/watch.imake |2 
 debian/watch.lndir |2 
 debian/watch.makedepend|2 
 debian/watch.util-macros   |2 
 debian/watch.xorg-cf-files |2 
 debian/xsfbs/xsfbs.mk  |   17 
 debian/xsfbs/xsfbs.sh  |4 
 debian/xutils-dev.install  |2 
 makedepend/AUTHORS |1 
 makedepend/COPYING |1 
 makedepend/ChangeLog   |  569 +
 makedepend/Makefile.am |   24 
 makedepend/Makefile.in |  478 -
 makedepend/aclocal.m4  | 1834 +++--
 makedepend/autogen.sh  |1 
 makedepend/compile |  142 
 makedepend/config.guess|  107 
 makedepend/config.sub  |  116 
 makedepend/configure   | 4269 -
 makedepend/configure.ac|   13 
 makedepend/cppsetup.c  |  108 
 makedepend/def.h   |   44 
 makedepend/depcomp |  172 
 makedepend/ifparser.c  |2 
 makedepend/ifparser.h  |2 
 makedepend/imakemdep.h | 1090 ---
 makedepend/include.c   |   18 
 makedepend/install-sh  |  517 +
 makedepend/main.c  |   71 
 makedepend/makedepend-config.h.in  |   30 
 makedepend/makedepend.man  |2 
 makedepend/missing |  104 
 makedepend/parse.c |   20 
 makedepend/pr.c|   14 
 util-macros/COPYING|   36 
 util-macros/ChangeLog  |  184 
 util-macros/INSTALL|  291 
 util-macros/Makefile.am|6 
 util-macros/Makefile.in|  226 
 util-macros/aclocal.m4 |  217 
 util-macros/configure  | 1655 ++---
 util-macros/configure.ac   |   16 
 util-macros/install-sh |  231 
 util-macros/missing|   49 
 util-macros/xorg-macros.m4.in  |   57 
 util-macros/xorg-macros.pc.in  |   16 
 util-macros/xorgversion.m4 |7 
 xorg-cf-files/ChangeLog| 2500 +++
 xorg-cf-files/DragonFly.cf |8 
 xorg-cf-files/FreeBSD.cf   |2 
 xorg-cf-files/Imake.cf |5 
 xorg-cf-files/Imake.rules  |2 
 xorg-cf-files/Imake.tmpl   |2 
 xorg-cf-files/Makefile.am  |   11 
 xorg-cf-files/Makefile.in  |  311 
 xorg-cf-files/NetBSD.cf|   14 
 xorg-cf-files/OpenBSD.cf   |2 
 xorg-cf-files/X11.tmpl |4 
 xorg-cf-files/aclocal.m4   | 1253 +++
 xorg-cf-files/config.guess | 1561 
 xorg-cf-files/config.sub   | 1686 +
 xorg-cf-files/configure| 4136 ++--
 xorg-cf-files/configure.ac |   10 
 xorg-cf-files/darwin.cf|2 
 xorg-cf-files/gnu.cf   |2 
 xorg-cf-files/ibm.cf   |2 
 xorg-cf-files/ibmLib.rules

Processing of xutils-dev_7.5+1_amd64.changes

2010-01-16 Thread Archive Administrator
xutils-dev_7.5+1_amd64.changes uploaded successfully to localhost
along with the files:
  xutils-dev_7.5+1.dsc
  xutils-dev_7.5+1.tar.gz
  xutils-dev_7.5+1_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-vmware: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |   20 ++--
 debian/control   |2 +-
 debian/rules |2 --
 debian/vmware.ids|2 --
 debian/xserver-xorg-video-vmware.install |1 -
 5 files changed, 19 insertions(+), 8 deletions(-)

New commits:
commit ee11c7689826c793fe93df23e674a99f41f25ba3
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 15:52:56 2010 +

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index f4c6073..0f3472c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-vmware (1:10.16.9-1) UNRELEASED; urgency=low
+xserver-xorg-video-vmware (1:10.16.9-1) unstable; urgency=low
 
   [ Timo Aaltonen ]
   * New upstream release.
@@ -8,7 +8,7 @@ xserver-xorg-video-vmware (1:10.16.9-1) UNRELEASED; urgency=low
   * Bump build-dep on xutils-dev for util-macros 1.4.
   * Don't install a list of pci ids, the server doesn't use this anymore.
 
- -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 14:56:52 +
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 15:52:44 +
 
 xserver-xorg-video-vmware (1:10.16.8-1) experimental; urgency=low
 

commit d787f9384c6f7acdf59b486fb068c6c6d3448535
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 15:52:34 2010 +

Don't install a list of pci ids, the server doesn't use this anymore.

diff --git a/debian/changelog b/debian/changelog
index bb7f2bc..f4c6073 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-vmware (1:10.16.9-1) UNRELEASED; urgency=low
 
   [ Julien Cristau ]
   * Bump build-dep on xutils-dev for util-macros 1.4.
+  * Don't install a list of pci ids, the server doesn't use this anymore.
 
  -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 14:56:52 +
 
diff --git a/debian/rules b/debian/rules
index d3c67ac..28c48d5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -73,8 +73,6 @@ install: build
dh_installdirs
 
cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
-   install -d $(CURDIR)/debian/tmp/usr/share/xserver-xorg/pci
-   install -m 644 $(CURDIR)/debian/vmware.ids 
$(CURDIR)/debian/tmp/usr/share/xserver-xorg/pci
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi
diff --git a/debian/vmware.ids b/debian/vmware.ids
deleted file mode 100644
index 63db6a9..000
--- a/debian/vmware.ids
+++ /dev/null
@@ -1,2 +0,0 @@
-15ad0405
-15ad0710
diff --git a/debian/xserver-xorg-video-vmware.install 
b/debian/xserver-xorg-video-vmware.install
index 4b1d2d9..614cfb4 100644
--- a/debian/xserver-xorg-video-vmware.install
+++ b/debian/xserver-xorg-video-vmware.install
@@ -1,3 +1,2 @@
 usr/lib/xorg/modules/drivers/*.so
 usr/share/man/man4/*
-usr/share/xserver-xorg/*

commit 5f0e029df2d0cf31377249f74f1fe39f1e5b1e2b
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 15:46:05 2010 +

Bump build-dep on xutils-dev for util-macros 1.4.

diff --git a/debian/changelog b/debian/changelog
index 17d66f9..bb7f2bc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,9 @@ xserver-xorg-video-vmware (1:10.16.9-1) UNRELEASED; urgency=low
   * New upstream release.
 + fixes loading with server 1.7 (closes: #564922)
 
+  [ Julien Cristau ]
+  * Bump build-dep on xutils-dev for util-macros 1.4.
+
  -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 14:56:52 +
 
 xserver-xorg-video-vmware (1:10.16.8-1) experimental; urgency=low
diff --git a/debian/control b/debian/control
index 0401469..10b712f 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends:
  dpkg-dev (= 1.14.17),
  automake,
  libtool,
- xutils-dev
+ xutils-dev (= 1:7.5),
 Standards-Version: 3.8.3
 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-vmware
 Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-vmware.git

commit fbb7b6492035b7fab14c726604d64e9b1841eb12
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 14:58:35 2010 +

Add bug closer

diff --git a/debian/changelog b/debian/changelog
index 8c72877..17d66f9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ xserver-xorg-video-vmware (1:10.16.9-1) UNRELEASED; urgency=low
 
   [ Timo Aaltonen ]
   * New upstream release.
++ fixes loading with server 1.7 (closes: #564922)
 
  -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 14:56:52 +
 

commit 2d767b57e579b359c6d217445252b614fa34af51
Author: Cyril Brulebois k...@debian.org
Date:   Sun Dec 6 00:43:20 2009 +0100

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index 9e46805..b6e3fe8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,14 @@
-xserver-xorg-video-vmware (1:10.16.8-1) UNRELEASED; urgency=low
+xserver-xorg-video-vmware (1:10.16.8-1) experimental; urgency=low
 
+  [ Timo 

xserver-xorg-video-vmware: Changes to 'refs/tags/xserver-xorg-video-vmware-1_10.16.9-1'

2010-01-16 Thread Julien Cristau
Tag 'xserver-xorg-video-vmware-1_10.16.9-1' created by Julien Cristau 
jcris...@debian.org at 2010-01-16 15:53 +

Tagging upload of xserver-xorg-video-vmware 1:10.16.9-1 to unstable.

Changes since xserver-xorg-video-vmware-1_10.16.8-1:
Gaetan Nadon (6):
  .gitignore: use common defaults with custom section # 24239
  .gitignore: use common defaults with custom section # 24239
  Several driver modules do not have a ChangeLog target in Makefile.am 
#23814
  INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES

Julien Cristau (5):
  Merge remote branch 'origin/debian-experimental' into debian-unstable
  Add bug closer
  Bump build-dep on xutils-dev for util-macros 1.4.
  Don't install a list of pci ids, the server doesn't use this anymore.
  Prepare changelog for upload

Michel Dänzer (3):
  vmware: Fix crash with xserver = 1.7.
  VMWAREComposite: Only hide cursor if source picture is backed by drawable.
  Bump for 10.16.9 release.

Timo Aaltonen (2):
  Merge commit 'xf86-video-vmware-10.16.9' into debian-unstable
  Update the changelogs.

---
 .gitignore   |   83 +-
 ChangeLog|   84 +++
 Makefile.am  |   11 +++-
 configure.ac |   17 --
 debian/changelog |   12 
 debian/control   |2 
 debian/rules |2 
 debian/vmware.ids|2 
 debian/xserver-xorg-video-vmware.install |1 
 man/.gitignore   |1 
 src/vmware.c |   11 +++-
 src/vmwarecurs.c |   36 +++--
 vmwarectrl/.gitignore|2 
 13 files changed, 219 insertions(+), 45 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of xserver-xorg-video-vmware_10.16.9-1_amd64.changes

2010-01-16 Thread Archive Administrator
xserver-xorg-video-vmware_10.16.9-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-vmware_10.16.9-1.dsc
  xserver-xorg-video-vmware_10.16.9.orig.tar.gz
  xserver-xorg-video-vmware_10.16.9-1.diff.gz
  xserver-xorg-video-vmware_10.16.9-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-vmware_10.16.9-1_amd64.changes ACCEPTED

2010-01-16 Thread Archive Administrator



Accepted:
xserver-xorg-video-vmware_10.16.9-1.diff.gz
  to 
main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_10.16.9-1.diff.gz
xserver-xorg-video-vmware_10.16.9-1.dsc
  to main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_10.16.9-1.dsc
xserver-xorg-video-vmware_10.16.9-1_amd64.deb
  to 
main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_10.16.9-1_amd64.deb
xserver-xorg-video-vmware_10.16.9.orig.tar.gz
  to 
main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_10.16.9.orig.tar.gz


Override entries for your package:
xserver-xorg-video-vmware_10.16.9-1.dsc - source x11
xserver-xorg-video-vmware_10.16.9-1_amd64.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 564922 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xutils-dev_7.5+1_amd64.changes ACCEPTED

2010-01-16 Thread Archive Administrator



Accepted:
xutils-dev_7.5+1.dsc
  to main/x/xutils-dev/xutils-dev_7.5+1.dsc
xutils-dev_7.5+1.tar.gz
  to main/x/xutils-dev/xutils-dev_7.5+1.tar.gz
xutils-dev_7.5+1_amd64.deb
  to main/x/xutils-dev/xutils-dev_7.5+1_amd64.deb


Override entries for your package:
xutils-dev_7.5+1.dsc - source x11
xutils-dev_7.5+1_amd64.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#564922: marked as done (xserver-xorg-video-vmware: vmware_drv.so fails to load)

2010-01-16 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2010 16:11:03 +
with message-id e1nwbet-if...@ries.debian.org
and subject line Bug#564922: fixed in xserver-xorg-video-vmware 1:10.16.9-1
has caused the Debian Bug report #564922,
regarding xserver-xorg-video-vmware: vmware_drv.so fails to load
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
564922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=564922
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-video-vmware
Version: 1:10.16.8-1
Severity: grave
Tags: patch
Justification: renders package unusable

After apt-get upgrading, vmware_drv.so failed to load. This bug has previously 
been reported at freedesktop.org, and the patch found at

https://bugs.freedesktop.org/attachment.cgi?id=30980

fixed the problem for me.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Dec 15 12:02 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1864736 Jan 12  2010 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:0f.0 VGA compatible controller: VMware SVGA II Adapter

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1112 Dec 15 12:02 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout de
Option  XkbVariantnodeadkeys
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 21884 Jan 11 18:42 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.4
Release Date: 2010-01-08
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-amd64 x86_64 Debian
Current Operating System: Linux debian-ball-devel 2.6.32-trunk-amd64 #1 SMP Sun 
Jan 10 22:40:40 UTC 2010 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-trunk-amd64 
root=UUID=546b77a4-fcc4-46f2-983a-96ad96d1f8b5 ro quiet
Build Date: 12 January 2010  11:05:18AM
xorg-server 2:1.7.4-1 (jcris...@debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon Jan 11 18:42:15 2010
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.

libpciaccess: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 .gitignore  |   74 +++---
 ChangeLog   |   96 ++
 Makefile.am |   11 +-
 configure.ac|   15 +-
 debian/changelog|7 +
 debian/control  |2 
 include/pciaccess.h |   21 
 src/.gitignore  |8 -
 src/Makefile.am |1 
 src/common_bridge.c |   40 +++
 src/common_init.c   |1 
 src/common_io.c |  252 
 src/linux_sysfs.c   |  183 +++---
 src/pciaccess_private.h |   22 
 14 files changed, 660 insertions(+), 73 deletions(-)

New commits:
commit a0117334f4dd0ae87fb3194b63ad285f599f69d3
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:20:47 2010 +

Bump xutils-dev build-dep for util-macros 1.4.

diff --git a/debian/changelog b/debian/changelog
index e3c3a2e..2387d1d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 libpciaccess (0.11.0-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Bump xutils-dev build-dep for util-macros 1.4.
 
  -- Julien Cristau jcris...@debian.org  Sat, 02 Jan 2010 09:49:25 +
 
diff --git a/debian/control b/debian/control
index b041d2f..5d09866 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends:
  libtool,
  automake,
  zlib1g-dev,
- xutils-dev ( = 1:7.4+4 )
+ xutils-dev (= 1:7.5),
 Standards-Version: 3.8.2
 Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libpciaccess
 Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/libpciaccess.git

commit 130da9057cbd53f8de1f5a9d66ce5d331695ebb0
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 2 09:49:42 2010 +

Bump changelogs

diff --git a/ChangeLog b/ChangeLog
index 2458fc3..5f86edf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,99 @@
+commit fac83b8116e19d4efbf8438d1cc485656cca5c60
+Author: Adam Jackson a...@redhat.com
+Date:   Mon Dec 14 17:27:12 2009 -0500
+
+libpciaccess 0.11.0
+
+Signed-off-by: Adam Jackson a...@redhat.com
+
+commit 947ab16f2938e8883503ef679a40684dfe2a90e5
+Author: Adam Jackson a...@redhat.com
+Date:   Mon Dec 14 16:26:31 2009 -0500
+
+Fix I/O handle array allocator to work for devices past the first
+
+Signed-off-by: Adam Jackson a...@redhat.com
+
+commit d4e008eeb9af7773edadd259cf55da43411f1a7f
+Author: Adam Jackson a...@redhat.com
+Date:   Mon Dec 14 16:19:35 2009 -0500
+
+Fix pci_device_open_io() to actually return something useful
+
+Remember, code review just means we're all inept.
+
+Signed-off-by: Adam Jackson a...@redhat.com
+
+commit 5e8d4c19b4f618e22b6e8e1ad3294d8708067474
+Author: Adam Jackson a...@redhat.com
+Date:   Wed Nov 18 13:53:49 2009 -0500
+
+I/O port access routines
+
+Acked-by: Tiago Vignatti tiago.vigna...@nokia.com
+Acked-by: Matt Turner matts...@gmail.com
+Signed-off-by: Adam Jackson a...@redhat.com
+
+commit b2fbe63bdf3522c5d3df5eda2ca3c3b8770c02c9
+Author: Adam Jackson a...@redhat.com
+Date:   Wed Nov 18 14:12:57 2009 -0500
+
+Add pci_device_get_parent_bridge()
+
+Copied from linuxPci.c in the X server.
+
+Acked-by: Tiago Vignatti tiago.vigna...@nokia.com
+Signed-off-by: Adam Jackson a...@redhat.com
+
+commit b2b3c3bfdac23c1c8e33f47b28f22c1d4a78cc71
+Author: Gaetan Nadon mems...@videotron.ca
+Date:   Fri Nov 27 20:56:05 2009 -0500
+
+Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
+
+Now that the INSTALL file is generated.
+Allows running make maintainer-clean.
+
+commit 57f4d11fef7021e77549a70cbf40ca43e60ea55f
+Author: Gaetan Nadon mems...@videotron.ca
+Date:   Wed Oct 28 14:09:10 2009 -0400
+
+INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
+
+Add missing INSTALL file. Use standard GNU file on building tarball
+README may have been updated
+Remove AUTHORS file as it is empty and no content available yet.
+Remove NEWS file as it is empty and no content available yet.
+
+commit caa398b5305cb4c5299e283b9833ed2251698893
+Author: Gaetan Nadon mems...@videotron.ca
+Date:   Tue Oct 27 15:07:25 2009 -0400
+
+Deploy the new XORG_DEFAULT_OPTIONS #24242
+
+This macro aggregate a number of existing macros that sets commmon
+X.Org components configuration options. It shields the configuration file 
from
+future changes.
+
+commit b8284cb2097601d5934773ab75db388b9fa5a9db
+Author: Gaetan Nadon mems...@videotron.ca
+Date:   Mon Oct 26 22:08:43 2009 -0400
+
+Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
+
+ChangeLog filename is known to Automake and requires no further
+coding in the makefile.
+
+commit 28830993636cc5820842345b511d301af33d9c49
+Author: Gaetan Nadon mems...@videotron.ca
+Date:   Thu Oct 22 12:34:20 2009 -0400
+
+.gitignore: use common defaults with custom section # 24239
+
+Using common defaults will reduce errors and maintenance.
+

libpciaccess: Changes to 'upstream-unstable'

2010-01-16 Thread Julien Cristau
 .gitignore  |   74 +++---
 INSTALL |  236 
 Makefile.am |   11 +-
 configure.ac|   15 +-
 include/pciaccess.h |   21 
 src/.gitignore  |8 -
 src/Makefile.am |1 
 src/common_bridge.c |   40 +++
 src/common_init.c   |1 
 src/common_io.c |  252 
 src/linux_sysfs.c   |  183 +++---
 src/pciaccess_private.h |   22 
 12 files changed, 556 insertions(+), 308 deletions(-)

New commits:
commit fac83b8116e19d4efbf8438d1cc485656cca5c60
Author: Adam Jackson a...@redhat.com
Date:   Mon Dec 14 17:27:12 2009 -0500

libpciaccess 0.11.0

Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/configure.ac b/configure.ac
index 12847ca..ffc1c8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.57])
 
-AC_INIT(libpciaccess, 0.10.9, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=libpciaccess],
 libpciaccess)
+AC_INIT(libpciaccess, 0.11.0, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=libpciaccess],
 libpciaccess)
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE
 

commit 947ab16f2938e8883503ef679a40684dfe2a90e5
Author: Adam Jackson a...@redhat.com
Date:   Mon Dec 14 16:26:31 2009 -0500

Fix I/O handle array allocator to work for devices past the first

Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/src/common_io.c b/src/common_io.c
index b4aa360..58628b4 100644
--- a/src/common_io.c
+++ b/src/common_io.c
@@ -28,13 +28,13 @@
 #include pciaccess.h
 #include pciaccess_private.h
 
-static struct pci_io_handle **ios;
+static struct pci_io_handle *ios;
 static unsigned int num_ios;
 
 static struct pci_io_handle *
 new_io_handle(void)
 {
-struct pci_io_handle **new;
+struct pci_io_handle *new;
 
 new = realloc(ios, sizeof(struct pci_io_handle) * (num_ios + 1));
 if (!new)
@@ -43,13 +43,13 @@ new_io_handle(void)
 ios = new;
 num_ios++;
 
-return ios[num_ios - 1];
+return ios + num_ios - 1;
 }
 
 static void
 delete_io_handle(struct pci_io_handle *handle)
 {
-struct pci_io_handle **new;
+struct pci_io_handle *new;
 int i = 0;
 
 if (!handle || !num_ios || (void *)handle  (void *)ios ||
@@ -57,7 +57,7 @@ delete_io_handle(struct pci_io_handle *handle)
 return;
 
 for (i = 0; i  num_ios; i++) {
-if (ios[i] == handle) {
+if (ios + i == handle) {
 memmove(ios[i], ios[i+1], sizeof(struct pci_io_handle) *
 (num_ios - i - 1));
 break;

commit d4e008eeb9af7773edadd259cf55da43411f1a7f
Author: Adam Jackson a...@redhat.com
Date:   Mon Dec 14 16:19:35 2009 -0500

Fix pci_device_open_io() to actually return something useful

Remember, code review just means we're all inept.

Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/src/common_io.c b/src/common_io.c
index bc5ba0a..b4aa360 100644
--- a/src/common_io.c
+++ b/src/common_io.c
@@ -114,6 +114,8 @@ pci_device_open_io(struct pci_device *dev, pciaddr_t base, 
pciaddr_t size)
delete_io_handle(ret);
return NULL;
}
+
+return ret;
 }
 
 return NULL;

commit 5e8d4c19b4f618e22b6e8e1ad3294d8708067474
Author: Adam Jackson a...@redhat.com
Date:   Wed Nov 18 13:53:49 2009 -0500

I/O port access routines

Acked-by: Tiago Vignatti tiago.vigna...@nokia.com
Acked-by: Matt Turner matts...@gmail.com
Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/include/pciaccess.h b/include/pciaccess.h
index 8128656..88515e2 100644
--- a/include/pciaccess.h
+++ b/include/pciaccess.h
@@ -1,5 +1,6 @@
 /*
  * (C) Copyright IBM Corporation 2006
+ * Copyright 2009 Red Hat, Inc.
  * All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
@@ -507,4 +508,22 @@ int  pci_device_vgaarb_unlock   (void);
 /* return the current device count + resource decodes for the device */
 int pci_device_vgaarb_get_info (struct pci_device *dev, int *vga_count, 
int *rsrc_decodes);
 
+/*
+ * I/O space access.
+ */
+
+struct pci_io_handle;
+
+struct pci_io_handle *pci_device_open_io(struct pci_device *dev, pciaddr_t 
base,
+pciaddr_t size);
+struct pci_io_handle *pci_legacy_open_io(struct pci_device *dev, pciaddr_t 
base,
+pciaddr_t size);
+void pci_device_close_io(struct pci_device *dev, struct pci_io_handle *handle);
+uint32_t pci_io_read32(struct pci_io_handle *handle, uint32_t reg);
+uint16_t pci_io_read16(struct pci_io_handle *handle, uint32_t reg);
+uint8_t pci_io_read8(struct pci_io_handle *handle, uint32_t reg);
+void pci_io_write32(struct pci_io_handle *handle, 

x11-apps: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/rules|7 +++
 debian/watch.bitmap |2 ++
 debian/watch.oclock |2 ++
 debian/watch.x11perf|2 ++
 debian/watch.xbiff  |2 ++
 debian/watch.xcalc  |2 ++
 debian/watch.xclipboard |2 ++
 debian/watch.xclock |2 ++
 debian/watch.xconsole   |2 ++
 debian/watch.xcursorgen |2 ++
 debian/watch.xditview   |2 ++
 debian/watch.xedit  |2 ++
 debian/watch.xeyes  |2 ++
 debian/watch.xgc|2 ++
 debian/watch.xload  |2 ++
 debian/watch.xlogo  |2 ++
 debian/watch.xmag   |2 ++
 debian/watch.xman   |2 ++
 debian/watch.xmore  |2 ++
 debian/watch.xwd|2 ++
 debian/watch.xwud   |2 ++
 21 files changed, 47 insertions(+)

New commits:
commit 15be96b3b51b7c8ef5d431df34a1522fd36ffc47
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:07:31 2010 +

Add watch files and rule to download tarballs

diff --git a/debian/rules b/debian/rules
index 3708ce7..140904f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -105,3 +105,10 @@ binary-indep: build install
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary install
+
+.PHONY: get-tarballs
+get-tarballs: $(addprefix get-tarball-,$(SUBDIRS))
+
+.PHONY: get-tarball-%
+get-tarball-%:
+   uscan --no-conf --download --no-symlink --package $* --upstream-version 
$(shell awk -F = '/^PACKAGE_VERSION=/ { print $$2 }'  $*/configure ) 
--watchfile debian/watch.$* || test $$? = 1
diff --git a/debian/watch.bitmap b/debian/watch.bitmap
new file mode 100644
index 000..c810e1d
--- /dev/null
+++ b/debian/watch.bitmap
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ bitmap-(.*)\.tar\.gz
diff --git a/debian/watch.oclock b/debian/watch.oclock
new file mode 100644
index 000..5c55e9a
--- /dev/null
+++ b/debian/watch.oclock
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ oclock-(.*)\.tar\.gz
diff --git a/debian/watch.x11perf b/debian/watch.x11perf
new file mode 100644
index 000..fff9220
--- /dev/null
+++ b/debian/watch.x11perf
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ x11perf-(.*)\.tar\.gz
diff --git a/debian/watch.xbiff b/debian/watch.xbiff
new file mode 100644
index 000..5f7890d
--- /dev/null
+++ b/debian/watch.xbiff
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xbiff-(.*)\.tar\.gz
diff --git a/debian/watch.xcalc b/debian/watch.xcalc
new file mode 100644
index 000..58efc51
--- /dev/null
+++ b/debian/watch.xcalc
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xcalc-(.*)\.tar\.gz
diff --git a/debian/watch.xclipboard b/debian/watch.xclipboard
new file mode 100644
index 000..f502c13
--- /dev/null
+++ b/debian/watch.xclipboard
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xclipboard-(.*)\.tar\.gz
diff --git a/debian/watch.xclock b/debian/watch.xclock
new file mode 100644
index 000..52cb9ef
--- /dev/null
+++ b/debian/watch.xclock
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xclock-(.*)\.tar\.gz
diff --git a/debian/watch.xconsole b/debian/watch.xconsole
new file mode 100644
index 000..3e4eeaa
--- /dev/null
+++ b/debian/watch.xconsole
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xconsole-(.*)\.tar\.gz
diff --git a/debian/watch.xcursorgen b/debian/watch.xcursorgen
new file mode 100644
index 000..b17135e
--- /dev/null
+++ b/debian/watch.xcursorgen
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xcursorgen-(.*)\.tar\.gz
diff --git a/debian/watch.xditview b/debian/watch.xditview
new file mode 100644
index 000..b58e836
--- /dev/null
+++ b/debian/watch.xditview
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xditview-(.*)\.tar\.gz
diff --git a/debian/watch.xedit b/debian/watch.xedit
new file mode 100644
index 000..756cd67
--- /dev/null
+++ b/debian/watch.xedit
@@ -0,0 +1,2 @@
+version=3
+opts=filenamemangle=s/^/x11-apps_$pkg_version.orig-/ 
http://xorg.freedesktop.org/releases/individual/app/ xedit-(.*)\.tar\.gz
diff --git a/debian/watch.xeyes b/debian/watch.xeyes
new file mode 100644
index 000..f81d4f8
--- /dev/null
+++ b/debian/watch.xeyes
@@ -0,0 +1,2 @@
+version=3

xserver-xorg-input-joystick: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog   |8 
 debian/control |   19 ++-
 debian/local/66-xorg-joystick.rules|8 
 debian/rules   |2 ++
 debian/xserver-xorg-input-joystick-dev.install |2 ++
 debian/xserver-xorg-input-joystick.postinst.in |   23 +++
 6 files changed, 61 insertions(+), 1 deletion(-)

New commits:
commit 394fdd2a27cbda9cf1df707d3e44a4fe1a111f76
Author: Timo Aaltonen tjaal...@cc.hut.fi
Date:   Tue Dec 8 16:43:39 2009 +0200

Add xserver-xorg-input-joystick-dev for the header and .pc files.

diff --git a/debian/changelog b/debian/changelog
index a4119ef..2e69904 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low
 
   * Install a udev rules file to autoload the driver.
   * Run udevadm trigger on postinst, and depend on udev [linux-any].
+  * Add xserver-xorg-input-joystick-dev for the header and .pc files.
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 08 Dec 2009 16:32:07 +0200
 
diff --git a/debian/control b/debian/control
index f987c80..6ba8288 100644
--- a/debian/control
+++ b/debian/control
@@ -36,3 +36,19 @@ Description: X.Org X server -- joystick input driver
  URL:http://lists.freedesktop.org/mailman/listinfo/xorg
  .
  This package is built from the X.org xf86-input-joystick driver module.
+
+Package: xserver-xorg-input-joystick
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: X.Org X server -- joystick input driver (development headers)
+ This package provides the development headers for the joystick input
+ driver found in xserver-xorg-input-joystick. Non-developers likely have
+ little use for this package.
+ .
+ More information about X.Org can be found at:
+ URL:http://www.X.org
+ URL:http://xorg.freedesktop.org
+ URL:http://lists.freedesktop.org/mailman/listinfo/xorg
+ .
+ This package is built from the X.org xf86-input-joystick driver module.
diff --git a/debian/xserver-xorg-input-joystick-dev.install 
b/debian/xserver-xorg-input-joystick-dev.install
new file mode 100644
index 000..605b936
--- /dev/null
+++ b/debian/xserver-xorg-input-joystick-dev.install
@@ -0,0 +1,2 @@
+usr/include/xorg/*
+usr/lib/pkgconfig/xorg-joystick.pc

commit 98586eac671d77e94cc2419fe1e1dce515c0b44c
Author: Timo Aaltonen tjaal...@cc.hut.fi
Date:   Tue Dec 8 16:38:48 2009 +0200

Run udevadm trigger on postinst, and depend on udev [linux-any].

diff --git a/debian/changelog b/debian/changelog
index 23df76b..a4119ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low
 
   * Install a udev rules file to autoload the driver.
+  * Run udevadm trigger on postinst, and depend on udev [linux-any].
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 08 Dec 2009 16:32:07 +0200
 
diff --git a/debian/control b/debian/control
index b6d8529..f987c80 100644
--- a/debian/control
+++ b/debian/control
@@ -23,7 +23,8 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-joystic
 
 Package: xserver-xorg-input-joystick
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends},
+ udev [linux-any],
 Provides: ${xinpdriver:Provides}
 Replaces: xserver-xorg ( 6.8.2-35)
 Description: X.Org X server -- joystick input driver
diff --git a/debian/xserver-xorg-input-joystick.postinst.in 
b/debian/xserver-xorg-input-joystick.postinst.in
new file mode 100644
index 000..b4c84c0
--- /dev/null
+++ b/debian/xserver-xorg-input-joystick.postinst.in
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+set -e
+
+THIS_PACKAGE=xserver-xorg-input-joystick
+THIS_SCRIPT=postinst
+
+#INCLUDE_SHELL_LIB#
+
+case $1 in
+  configure)
+  if dpkg --compare-versions $2 lt 1:1.5.0-2; then
+if [ `uname -s` = Linux ]; then
+  udevadm trigger --subsystem-match=input --action=change
+fi
+  fi
+esac
+
+#DEBHELPER#
+
+exit 0
+
+# vim:set ai et sw=2 ts=2 tw=80:

commit dccb9d5fd6e9b57851b5a92ca48ecdc42efeae55
Author: Timo Aaltonen tjaal...@cc.hut.fi
Date:   Tue Dec 8 16:34:53 2009 +0200

Install a udev rules file to autoload the driver.

diff --git a/debian/changelog b/debian/changelog
index 190bb9d..23df76b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low
+
+  * Install a udev rules file to autoload the driver.
+
+ -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 08 Dec 2009 16:32:07 +0200
+
 xserver-xorg-input-joystick (1:1.5.0-1) experimental; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/local/66-xorg-joystick.rules 
b/debian/local/66-xorg-joystick.rules
new file mode 100644
index 000..4b31ec0
--- /dev/null
+++ b/debian/local/66-xorg-joystick.rules
@@ -0,0 +1,8 @@
+ACTION!=add|change, 

xfonts-75dpi: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/control   |2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit d347dc2558c60027f3556008e01748d212b18d06
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 2 07:09:55 2010 +

Version the xfonts-utils build-dependency.

We need the fontrootdir variable in fontutil.pc.

diff --git a/debian/changelog b/debian/changelog
index b454def..645add5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xfonts-75dpi (1:1.0.1+1) UNRELEASED; urgency=low
+
+  * Version the xfonts-utils build-dependency.  We need the fontrootdir
+variable in fontutil.pc.
+
+ -- Julien Cristau jcris...@debian.org  Fri, 01 Jan 2010 15:55:52 +
+
 xfonts-75dpi (1:1.0.1) unstable; urgency=low
 
   * New upstream releases for X11R7.5:
diff --git a/debian/control b/debian/control
index 3e7910b..909274c 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: fonts
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow dnusi...@debian.org, Julien Cristau 
jcris...@debian.org
-Build-Depends: debhelper (= 5.0.31), pkg-config, xfonts-utils
+Build-Depends: debhelper (= 5.0.31), pkg-config, xfonts-utils (= 1:7.5)
 Standards-Version: 3.8.3
 
 Package: xfonts-75dpi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: closing 531295

2010-01-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 close 531295
Bug#531295: libx11-6: warning: obsolete option 
'--print-installation-architecture'
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to Kurt Roeckx k...@roeckx.be

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xfs: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit e78650fe4cdf18612881564042ae635a0765d022
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:36 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 21f1938..298f47a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xfs (1:1.0.8-7) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:11 +
+
 xfs (1:1.0.8-6) unstable; urgency=low
 
   * QA upload.
diff --git a/debian/rules b/debian/rules
index edc47a8..60507e3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,14 +39,14 @@ build: build-stamp
 build-stamp: $(STAMP_DIR)/patch $(STAMP_DIR)/genscripts
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info \
 --sysconfdir=/etc $(confflags) \
 CFLAGS=$(CFLAGS) \
 CPPFLAGS=$(CPPFLAGS)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -59,7 +59,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f INSTALL aclocal.m4 config.guess config.sub configure
rm -f depcomp install-sh missing mkinstalldirs xfs-config.h.in
rm -f $$(find -name Makefile.in)
@@ -76,7 +76,7 @@ install: build
cp $(CURDIR)/debian/$(PACKAGE).insserv \
   $(CURDIR)/debian/$(PACKAGE)/etc/insserv.conf.d/$(PACKAGE)
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11-utils: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit da0bdf17bc392faf454c83ca842b7a1d44636741
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:36 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1603b88..1e3055f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 x11-utils (7.5+2) UNRELEASED; urgency=low
 
+  [ Brice Goglin ]
   * listres 1.0.2.
   * viewres 1.0.2.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Brice Goglin bgog...@debian.org  Sun, 20 Dec 2009 09:46:39 +0100
 
 x11-utils (7.5+1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 17713d7..74397b8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,15 +45,15 @@ build-stamp: $(BUILD_STAMPS)
 
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts $(STAMP_DIR)/patch
dh_testdir
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p $*-build
+   cd $*-build  \
../$*/configure --prefix=/usr --mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info $(confflags) \
--disable-xprint \
CFLAGS=$(CFLAGS) \
RSH=rsh \
MANCONF=/etc/manpath.config
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd $*-build  $(MAKE)
$@
 
 clean: xsfclean
@@ -65,7 +65,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -76,7 +76,7 @@ install: build
dh_installdirs
 
for FILE in $(SUBDIRS); do \
-   cd $$FILE-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) 
DESTDIR=$(CURDIR)/debian/tmp install ; \
+   cd $$FILE-build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install ; \
cd ..; \
done
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11-session-utils: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 1c46d97d2b92f1ae12ae608a947371b84aacf1db
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:37 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 6d42889..f25bc8f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+x11-session-utils (7.5+2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:12 +
+
 x11-session-utils (7.5+1) unstable; urgency=low
 
   [ Julien Cristau ]
diff --git a/debian/rules b/debian/rules
index 49a0966..217c1e6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,15 +45,15 @@ build-stamp: $(BUILD_STAMPS)
 
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts $(STAMP_DIR)/patch
dh_testdir
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p $*-build
+   cd $*-build  \
../$*/configure --prefix=/usr --mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info $(confflags) \
--disable-xprint \
CFLAGS=$(CFLAGS) \
RSH=rsh \
MANCONF=/etc/manpath.config
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd $*-build  $(MAKE)
$@
 
 clean: xsfclean
@@ -65,7 +65,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -76,7 +76,7 @@ install: build
dh_installdirs
 
for FILE in $(SUBDIRS); do \
-   cd $$FILE-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) 
DESTDIR=$(CURDIR)/debian/tmp install ; \
+   cd $$FILE-build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install ; \
cd ..; \
done
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xbacklight: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 7444cb65712d56ca158cf50e13047ebc3f50c5d0
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:37 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index bb45c5e..008e8fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xbacklight (1.1.1-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:12 +
+
 xbacklight (1.1.1-1) unstable; urgency=low
 
   * Switch to debhelper 7 and dh.
diff --git a/debian/rules b/debian/rules
index f44255c..e222d74 100755
--- a/debian/rules
+++ b/debian/rules
@@ -26,7 +26,7 @@ ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
 endif
 
-BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
+BUILDDIR = build
 
 override_dh_auto_configure:
autoreconf -vfi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xdm: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |2 ++
 debian/rules |2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 00bddbae7581fa35b74e85af81083c20c8c05d3d
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:37 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a80ea10..b77a3c1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,8 @@ xdm (1:1.1.9-1) UNRELEASED; urgency=low
 disappeared since then, so this isn't necessary anymore.
   * log_sourcing_better.diff: resurrect patch header from the monolith's
 078_xdm_log_sourcing_better.diff.
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
 
   [ Brice Goglin ]
   * New upstream release.
diff --git a/debian/rules b/debian/rules
index d145721..5652360 100755
--- a/debian/rules
+++ b/debian/rules
@@ -51,7 +51,7 @@ ifeq ($(DEB_BUILD_ARCH_OS), linux)
confflags += --with-selinux
 endif
 
-BUILD_DIR := obj-$(DEB_BUILD_GNU_TYPE)
+BUILD_DIR := build
 
 stampdir_targets+=config
 config: $(STAMP_DIR)/config


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xinit: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit a9a3c5d20e0158e4c0eb190d41f717fa5d38c5fd
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:37 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 80fbfd8..eb2fa6d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xinit (1.2.0-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:13 +
+
 xinit (1.2.0-1) unstable; urgency=low
 
   [ Brice Goglin ]
diff --git a/debian/rules b/debian/rules
index 8e3e17b..904ba24 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,13 +36,13 @@ build: build-stamp
 build-stamp: configure $(STAMP_DIR)/genscripts
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 MANCONF=/etc/manpath.config
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) || exit 1
+   cd build  $(MAKE) || exit 1
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 compile config.guess config.h.in config.sub configure
rm -f depcomp install-sh missing INSTALL
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
install -d debian/tmp/etc/X11/xinit
install -m 755 debian/local/xserverrc debian/tmp/etc/X11/xinit


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11-apps: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit c1ab07389db87d39bca3a70cd0f39a3eb132dc99
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:37 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index c6c6d60..8a6da24 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
 x11-apps (7.5+2) UNRELEASED; urgency=low
 
+  [ Brice Goglin ]
   * Update debian/copyright and package description according
 to ico and xedit additions.
   * x11pref 1.5.1.
@@ -8,6 +9,10 @@ x11-apps (7.5+2) UNRELEASED; urgency=low
   * xeyes 1.1.0.
   * xlogo 1.0.2.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Brice Goglin bgog...@debian.org  Sun, 06 Dec 2009 20:54:44 +0100
 
 x11-apps (7.5+1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 140904f..677a153 100755
--- a/debian/rules
+++ b/debian/rules
@@ -43,9 +43,9 @@ build-stamp: $(BUILD_STAMPS)
$@
 
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts $(STAMP_DIR)/patch
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
+   mkdir -p $*-build
 
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   cd $*-build  \
../$*/configure --prefix=/usr --mandir=\$${prefix}/share/man \
  --infodir=\$${prefix}/share/info $(confflags) \
  --disable-xprint \
@@ -53,7 +53,7 @@ $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts 
$(STAMP_DIR)/patch
  CFLAGS=$(CFLAGS) \
  RSH=rsh \
  MANCONF=/etc/manpath.config
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd $*-build  $(MAKE)
$@
 
 clean: xsfclean
@@ -65,7 +65,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -76,7 +76,7 @@ install: build
dh_installdirs
 
for FILE in $(SUBDIRS); do \
-   cd $$FILE-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) 
DESTDIR=$(CURDIR)/debian/tmp install ; \
+   cd $$FILE-build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install ; \
cd ..; \
done
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11-xserver-utils: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit bb6f4c6e7b70875c2b90f8fbe692c947398acced
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:38 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1ccbc75..97e5026 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+x11-xserver-utils (7.5+2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:13 +
+
 x11-xserver-utils (7.5+1) unstable; urgency=low
 
   [ Julien Cristau ]
diff --git a/debian/rules b/debian/rules
index 2cce569..e07ce46 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,15 +45,15 @@ build-stamp: $(BUILD_STAMPS)
 
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts $(STAMP_DIR)/patch
dh_testdir
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p $*-build
+   cd $*-build  \
../$*/configure --prefix=/usr --mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info $(confflags) \
--disable-xprint \
CFLAGS=$(CFLAGS) \
RSH=rsh \
MANCONF=/etc/manpath.config
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd $*-build  $(MAKE)
$@
 
 clean: xsfclean
@@ -65,7 +65,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -76,7 +76,7 @@ install: build
dh_installdirs
 
for FILE in $(SUBDIRS); do \
-   cd $$FILE-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) 
DESTDIR=$(CURDIR)/debian/tmp install ; \
+   cd $$FILE-build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install ; \
cd ..; \
done
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11-xkb-utils: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit b553cc3b02947a13c2c4346f07468a419b55e898
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:38 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 38c3237..bf2d6df 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+x11-xkb-utils (7.5+2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:14 +
+
 x11-xkb-utils (7.5+1) unstable; urgency=low
 
   * xkbcomp 1.1.1.
diff --git a/debian/rules b/debian/rules
index a4b078c..8a49f6e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -47,12 +47,12 @@ build-stamp: $(BUILD_STAMPS)
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts $(STAMP_DIR)/patch
dh_testdir
 
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p $*-build
+   cd $*-build  \
../$*/configure --prefix=/usr --mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info $(confflags) \
CFLAGS=$(CFLAGS)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd $*-build  $(MAKE)
$@
 
 clean: xsfclean
@@ -64,7 +64,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -75,7 +75,7 @@ install: build
dh_installdirs
 
for FILE in $(SUBDIRS); do \
-   cd $$FILE-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) 
DESTDIR=$(CURDIR)/debian/tmp install ; \
+   cd $$FILE-build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install ; \
cd ..; \
done
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11-xfs-utils: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit fbf8a6405e372fc0b3976434d8661185cb0e5cd0
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:38 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 408904e..f884e13 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+x11-xfs-utils (7.4+2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:14 +
+
 x11-xfs-utils (7.4+1) unstable; urgency=low
 
   [ Brice Goglin ]
diff --git a/debian/rules b/debian/rules
index 8994aa5..44cf5a1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -43,14 +43,14 @@ build-stamp: $(BUILD_STAMPS)
$@
 
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/genscripts
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p $*-build
+   cd $*-build  \
../$*/configure --prefix=/usr \
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info $(confflags) \

--with-localealiasfile=/usr/share/X11/locale/locale.alias \
CFLAGS=$(CFLAGS)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd $*-build  $(MAKE)
$@
 
 clean: xsfclean
@@ -62,7 +62,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -73,7 +73,7 @@ install: build
dh_installdirs
 
for FILE in $(SUBDIRS); do \
-   cd $$FILE-obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) 
DESTDIR=$(CURDIR)/debian/tmp install ; \
+   cd $$FILE-build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install ; \
cd ..; \
done
 #  mv $(CURDIR)/debian/tmp/usr/bin/fontname.sh 
$(CURDIR)/debian/tmp/usr/bin/fontname


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xterm: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 82383d25ec821bd51d7a275b96b434260093a44c
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:38 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 69c147d..748b4cb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xterm (253-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:14 +
+
 xterm (253-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/rules b/debian/rules
index 9f64a9b..d92b017 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,8 +46,8 @@ CFLAGS += \
 configure: $(STAMP_DIR)/configure
 $(STAMP_DIR)/configure: $(STAMP_DIR)/patch
dh_testdir
-   [ -d obj-$(DEB_BUILD_GNU_TYPE) ] || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   [ -d build ] || mkdir build
+   cd build  \
../configure \
--prefix=/usr \
--exec-prefix=/usr \
@@ -74,7 +74,7 @@ $(STAMP_DIR)/configure: $(STAMP_DIR)/patch
 build: $(STAMP_DIR)/build
 $(STAMP_DIR)/build: $(STAMP_DIR)/configure debian/local/xterm.faq.gz
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
touch $@
 
 .PHONY: clean
@@ -82,7 +82,7 @@ clean: xsfclean
dh_testdir
dh_testroot
rm -rf $(STAMP_DIR)
-   rm -rf obj-$(DEB_BUILD_GNU_TYPE)
+   rm -rf build
dh_clean debian/local/xterm.faq.gz
 
 .PHONY: install
@@ -92,7 +92,7 @@ install: build
dh_clean -k
dh_installdirs
# General installation
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   cd build  \
$(MAKE) install mandir=/usr/share/man/man1 libdir=/etc 
DESTDIR=$(DEBTREEDIR)

## Install lxterm command and manual page.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xutils-dev: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 4e8d5d1b112e6788bda60af29ff4514de162415d
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:38 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a16..f228f39 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xutils-dev (1:7.5+2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:15 +
+
 xutils-dev (1:7.5+1) unstable; urgency=low
 
   * Add watch files and debian/rules target to download tarballs.
diff --git a/debian/rules b/debian/rules
index e943e5b..09d76a6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -42,12 +42,12 @@ build-stamp: $(STAMP_DIR)/genscripts $(foreach dir, 
$(SUBDIRS), $(STAMP_DIR)/bui
$@
 
 $(STAMP_DIR)/build-%: $(STAMP_DIR)/patch
-   mkdir -p $*-obj-$(DEB_BUILD_GNU_TYPE)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p $*-build
+   cd $*-build  \
../$*/configure --prefix=/usr --mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info $(confflags) \
CFLAGS=$(CFLAGS)
-   cd $*-obj-$(DEB_BUILD_GNU_TYPE)  \
+   cd $*-build  \
$(MAKE)
$@
 
@@ -60,7 +60,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf *-obj-*
+   rm -rf *-build
 
dh_clean
 
@@ -71,7 +71,7 @@ install: build
dh_installdirs
 
set -e; for FILE in $(SUBDIRS); do \
-   $(MAKE) -C $${FILE}-obj-$(DEB_BUILD_GNU_TYPE) 
DESTDIR=$(CURDIR)/debian/tmp install; \
+   $(MAKE) -C $${FILE}-build DESTDIR=$(CURDIR)/debian/tmp install; 
\
done
 
 # Build architecture-dependent files here.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-sunffb: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 529486feb456eea7a0e26c680d2e2bcd37e72581
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:39 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index af707e4..7203bd1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-sunffb (1:1.2.1-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:15 +
+
 xserver-xorg-video-sunffb (1:1.2.1-1) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index 12701ac..e6c648f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp: $(STAMP_DIR)/patch
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-newport: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit b0b28560415dfcc539ac5fafb05841979ca54a7b
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:39 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 5d32c39..543ed13 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-newport (1:0.2.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:08 +0200
 
 xserver-xorg-video-newport (1:0.2.2-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index f1e2716..aa21a2f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -53,7 +53,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-mach64: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |2 ++
 debian/rules |   14 +++---
 2 files changed, 9 insertions(+), 7 deletions(-)

New commits:
commit ddee01a843b3897f6d015b622cb1a8ef96f15f22
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:39 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 75eeb67..602c680 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 xserver-xorg-video-mach64 (6.8.2-3) UNRELEASED; urgency=low
 
   * Drop obsolete build-dep on xf86miscproto.
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
 
  -- Julien Cristau jcris...@debian.org  Sun, 06 Dec 2009 14:58:38 +0100
 
diff --git a/debian/rules b/debian/rules
index 7794d15..0151197 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
  
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-openchrome: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 906e0406e4f91185ace15a0c0f0f4c78362905c4
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:40 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index c460e3a..47b176b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-openchrome (1:0.2.904+svn812-2) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Build against Xserver 1.7.
   * Remove 01_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:59:03 +0200
 
 xserver-xorg-video-openchrome (1:0.2.904+svn812-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 8ddf7b7..2f286cb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,7 +4,7 @@ PACKAGE = xserver-xorg-video-openchrome
 
 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
+DEB_BUILDDIR = build
 
 export DH_ALWAYS_EXCLUDE=.la
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-sis: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 10d32142ffbc773b54806fb50ae6a781370d80e8
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:39 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a8bea2b..e48cbf8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-video-sis (1:0.10.2-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Remove 03_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:11 +0200
 
 xserver-xorg-video-sis (1:0.10.1-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 3c752c2..78ba5c7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,17 +40,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -62,7 +62,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -75,7 +75,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-radeonhd: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   12 ++--
 2 files changed, 13 insertions(+), 6 deletions(-)

New commits:
commit 9aef336b47ed82cf785b258b00cbb848897608df
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:40 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index e20c84d..b195c0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-radeonhd (1.3.0-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:17 +
+
 xserver-xorg-video-radeonhd (1.3.0-2) unstable; urgency=low
 
   * Add ${misc:Depends} to xserver-xorg-video-radeonhd-dbg's Depends.
diff --git a/debian/rules b/debian/rules
index e25c54d..8018b82 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,13 +40,13 @@ build-stamp: $(STAMP_DIR)/patch
 
autoreconf -vfi
 
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 --enable-maintainer-mode \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -59,7 +59,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -rf configure config.guess config.sub config.h.in
rm -rf $$(find -name Makefile.in)
rm -rf aclocal.m4 missing depcomp install-sh ltmain.sh
@@ -72,9 +72,9 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
install -d -m 755 debian/tmp/usr/bin
-   install -m 755 obj-$(DEB_BUILD_GNU_TYPE)/utils/conntest/rhd_conntest 
debian/tmp/usr/bin/
+   install -m 755 build/utils/conntest/rhd_conntest debian/tmp/usr/bin/
 
 # Build architecture-dependent files here.
 binary-arch: install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-suncg14: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 6c8a0b33c34d6ef78d1012835d70bb8dc92324b8
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:40 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index f8fc00a..8ee9b9c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-suncg14 (1:1.1.1-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:17 +
+
 xserver-xorg-video-suncg14 (1:1.1.1-2) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index 28f53ef..c4dd2b2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -54,7 +54,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-intel: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   16 
 2 files changed, 15 insertions(+), 8 deletions(-)

New commits:
commit 09ea42d31a94cf9773153e6218939dbfc42e2586
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:40 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 0bdbb13..4d0ea0e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-intel (2:2.9.1-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:17 +
+
 xserver-xorg-video-intel (2:2.9.1-2) unstable; urgency=low
 
   * Upload to unstable.
diff --git a/debian/rules b/debian/rules
index 414e4bb..f1c550f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,19 +36,19 @@ configure: $(STAMP_DIR)/patch
dh_testdir
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
+build/config.status: configure
dh_testdir
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 .PHONY: build
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -60,7 +60,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 config.h.in mkinstalldirs
@@ -74,9 +74,9 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
install -d $(CURDIR)/debian/tmp/usr/bin
-   install -m 755 
obj-$(DEB_BUILD_GNU_TYPE)/src/reg_dumper/intel_reg_dumper 
$(CURDIR)/debian/tmp/usr/bin/
+   install -m 755 build/src/reg_dumper/intel_reg_dumper 
$(CURDIR)/debian/tmp/usr/bin/
 
 # Build architecture-dependent files here.
 binary-arch: DH_OPTIONS=-s


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-mouse: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit a46d8405354c9f19f2bb40acc362d4f2017e47d5
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:40 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 044950b..1eb79e4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-input-mouse (1:1.5.0-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump the build-dep on xutils-dev (= 1:7.5~1).
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:04 +0200
 
 xserver-xorg-input-mouse (1:1.4.0-4) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index d41a543..2477466 100755
--- a/debian/rules
+++ b/debian/rules
@@ -38,12 +38,12 @@ configure: $(STAMP_DIR)/patch
 
 build: build-stamp
 build-stamp: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -55,7 +55,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -68,7 +68,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-fpit: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 59e412d43804fc39b88945b6bfb559e5a286d562
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:41 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index dd0f0d1..6151a39 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-input-fpit (1:1.3.0-3) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:03 +0200
 
 xserver-xorg-input-fpit (1:1.3.0-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index ca84e7b..e564a1e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 mkinstalldirs config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-elographics: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit bb5923f7fa5e181b92a0583d31b646db6e9d8839
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:41 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1949bfe..e2f2962 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-input-elographics (1:1.2.3-3) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:02 +0200
 
 xserver-xorg-input-elographics (1:1.2.3-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index e681ec1..29e2f28 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 mkinstalldirs config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-tdfx: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 3acd95bc8efed5628d94366ff00873e13545c9e8
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:41 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a24811f..0df60a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-video-tdfx (1:1.4.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Remove 04_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:13 +0200
 
 xserver-xorg-video-tdfx (1:1.4.1-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 6437fb7..5440d94 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp: $(STAMP_DIR)/patch
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-dummy: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 78b2e00c0849e974b42634c160b08ba370dc44e7
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:42 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 131f0c0..a90ac6a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-dummy (1:0.3.2-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:06 +0200
 
 xserver-xorg-video-dummy (1:0.3.1-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 2b2c3d2..4dd80ac 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-citron: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit f7b7cb04e299443e5ac906a10c2218294fa1a6de
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:42 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 856ca16..9e232d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-input-citron (1:2.2.2-2) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:02 +0200
 
 xserver-xorg-input-citron (1:2.2.2-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 01c042f..a7a4f48 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -53,7 +53,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-mga: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit b283ddd20481b1be1cd881bd41168ed2aaf476a7
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:42 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index be14567..e02b63e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-video-mga (1:1.4.11.dfsg-2) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:08 +0200
 
 xserver-xorg-video-mga (1:1.4.11.dfsg-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 708a184..a78c31d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 compile config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-fbdev: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 1ebbcfd3ede6c285d6abd4212929918bc00fd3d2
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:42 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1353c0f..dde39a4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-fbdev (1:0.4.1-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:06 +0200
 
 xserver-xorg-video-fbdev (1:0.4.0-4) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 5d979b2..e0809de 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-sisusb: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit d4fa0e7954273483a808ee98b688a13839606194
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:42 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index fd04679..b916e60 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-sisusb (1:0.9.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:11 +0200
 
 xserver-xorg-video-sisusb (1:0.9.1-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 8ed1cc0..746e645 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-trident: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit dd0f9ad6ba13743b92b675b96c73ce29a79a66cc
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:43 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 0028817..2242ab9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-video-trident (1:1.3.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Remove 01_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:13 +0200
 
 xserver-xorg-video-trident (1:1.3.1-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 15fe668..d83895a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp: $(STAMP_DIR)/patch
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-hyperpen: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit ea53f7ae167b48db6635b2e6e7d374e40fa7143b
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:43 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index ee3b046..633355d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-input-hyperpen (1:1.3.0-2) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:03 +0200
 
 xserver-xorg-input-hyperpen (1:1.3.0-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index d8522f2..ee14ecd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp:
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -54,7 +54,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-keyboard: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 43f560721146e513230863083489805abfe2e56c
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:43 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a56b0b0..85ab0fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-input-keyboard (1:1.4.0-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump the build-dep on xutils-dev (= 1:7.5~1).
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:03 +0200
 
 xserver-xorg-input-keyboard (1:1.3.2-4) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index dbcb505..2bb43a0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -38,12 +38,12 @@ configure: $(STAMP_DIR)/patch
 
 build: build-stamp
 build-stamp: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -55,7 +55,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -68,7 +68,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-suncg6: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 3b46bdb8f51eda74112af7ea57905f0d286f4e07
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:43 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 19399ca..031a3a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-suncg6 (1:1.1.1-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:23 +
+
 xserver-xorg-video-suncg6 (1:1.1.1-2) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index 01aab63..d4529ae 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -53,7 +53,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-neomagic: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit a791335d904f4ad302da6fbbc77343bfc06dffa2
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:43 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 7ae66cb..63c1534 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-neomagic (1:1.2.4-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:08 +0200
 
 xserver-xorg-video-neomagic (1:1.2.3-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 088e815..ad835e2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: 
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-nv: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit ac53060fc95507e9fd5eb05f56abb6c63645dcd5
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:44 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 4ecdf57..26d0352 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-nv (1:2.1.15-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:09 +0200
 
 xserver-xorg-video-nv (1:2.1.14-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 34af655..a06fbe2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,18 +36,18 @@ configure:
dh_testdir
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
+build/config.status: configure
dh_testdir
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS)
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: 
@@ -59,7 +59,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 config.h.in mkinstalldirs
@@ -72,7 +72,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-aiptek: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit e2e71038d05653dd5f22506f160ac96fe4e2e187
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:44 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 5daeab9..bc413f0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-input-aiptek (1:1.3.0-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:02 +0200
 
 xserver-xorg-input-aiptek (1:1.2.0-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 2b41b79..2a593cf 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS)
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 mkinstalldirs config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-chips: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 4117d8ed2ce40b83ae4da26c1f4a6ea94c08df18
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:44 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 04af49d..bb57b7e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-chips (1:1.2.2-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:06 +0200
 
 xserver-xorg-video-chips (1:1.2.1-3) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index b79215b..f280cd1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 compile config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-mutouch: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 21f164954847ed345671855de010e103a45889fd
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:44 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index e13537c..4e10e88 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-input-mutouch (1:1.2.1-3) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:04 +0200
 
 xserver-xorg-input-mutouch (1:1.2.1-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index c098e61..d180aba 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-penmount: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 29f3ff7bd6625d89acfba40ad896aa58816c4eb8
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:45 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index cf5909e..41ba985 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-input-penmount (1:1.4.0-3) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:04 +0200
 
 xserver-xorg-input-penmount (1:1.4.0-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 432c068..4e34983 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 mkinstalldirs config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-glide: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 4e084bbbd2f7646d9ccb7c0776462d67e47a1f1c
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:45 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 3ae3a3e..8f189b3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-glide (1.0.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstrem release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:06 +0200
 
 xserver-xorg-video-glide (1.0.2-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 27cc179..5902393 100755
--- a/debian/rules
+++ b/debian/rules
@@ -38,13 +38,13 @@ build-stamp: $(STAMP_DIR)/patch
 
autoreconf -vfi
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 --enable-maintainer-mode \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -rf configure config.guess config.sub config.h.in
rm -rf $$(find -name Makefile.in)
rm -rf aclocal.m4 missing depcomp install-sh ltmain.sh
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-void: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit a8e8715246fbab86b472290dde4387675c84
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:45 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 4b1fecf..141d7ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-input-void (1:1.3.0-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump the build-dep on xutils-dev (= 1:7.5~1).
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Bump dephelper compat level to 5.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:05 +0200
 
 xserver-xorg-input-void (1:1.2.0-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 15bd66e..38b46a4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 mkinstalldirs config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-v4l: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 4023c9653ea8661d68072b64469a8403c9049441
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:45 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a0582dd..d49a542 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-v4l (1:0.2.0-4) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Bump the epoch to ease autosyncing to ubuntu.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:14 +0200
 
 xserver-xorg-video-v4l (0.2.0-3) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 2544817..3b497d1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp:
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -54,7 +54,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-vesa: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 8415578087d588de503add32a586fee9c3aadf2c
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:46 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 41a3d11..590e2f3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,12 @@
 xserver-xorg-video-vesa (1:2.3.0-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 06 Jan 2010 14:27:00 +0200
 
 xserver-xorg-video-vesa (1:2.2.1-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index c8bfaa8..9c78993 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-sunleo: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   14 +++---
 2 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 28951192211317b12cb8c6c80d29281b00f9e2de
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:46 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 9c465af..38bb153 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-sunleo (1:1.2.0-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:26 +
+
 xserver-xorg-video-sunleo (1:1.2.0-2) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index ab81676..55057be 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 ylwrap mkinstalldirs 
config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-r128: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |2 ++
 debian/rules |   14 +++---
 2 files changed, 9 insertions(+), 7 deletions(-)

New commits:
commit 57f1686c2a17770583cec24c9b564dc29eb33f02
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:46 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 69335fd..0a11d16 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 xserver-xorg-video-r128 (6.8.1-3) UNRELEASED; urgency=low
 
   * Drop obsolete build-dep on xf86miscproto.
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
 
  -- Julien Cristau jcris...@debian.org  Sun, 06 Dec 2009 14:57:24 +0100
 
diff --git a/debian/rules b/debian/rules
index c6632c5..1bef26f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
  
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-suntcx: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 379103da0cd9b091d5767ca3a6a9965159c2024c
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:46 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index a33f505..91de31d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-suntcx (1:1.1.1-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:27 +
+
 xserver-xorg-video-suntcx (1:1.1.1-2) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index 1c7c5cb..77cdae7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -54,7 +54,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-tga: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 62683980d3f00ca8929fe8d84c01f129fe912128
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:47 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index e482f92..d3d893a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-tga (1:1.2.1-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 11:01:22 +0200
 
 xserver-xorg-video-tga (1:1.2.0-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index f6aef27..85e5391 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -53,7 +53,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-cirrus: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit e8611f8a1048cdcfc1737594e18e81b69c4bc74f
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:47 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 68c3c2e..8ff0cda 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-cirrus (1:1.3.2-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 10:53:56 +0200
 
 xserver-xorg-video-cirrus (1:1.3.1-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 8476ace..7f11fd0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-ark: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |4 
 debian/rules |   10 +-
 2 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit 3a1f763ef58aace5c2d996924f7a5bd52d46738b
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:47 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 5961f41..0845b51 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,10 @@ xserver-xorg-video-ark (1:0.7.2-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:05 +0200
 
 xserver-xorg-video-ark (1:0.7.1-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 393cc91..fc543e6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: 
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-suncg3: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit c1cc47dd8c4ef7361857b94b1621cb4750d61503
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:47 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index e04df15..9ef8178 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-suncg3 (1:1.1.1-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:28 +
+
 xserver-xorg-video-suncg3 (1:1.1.1-2) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index d2b7fa4..9a523f8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,12 +36,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -53,7 +53,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-joystick: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 0508bbf03d48cb742ee104beba6eb2803b637351
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:47 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 2e69904..8eb0da5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Install a udev rules file to autoload the driver.
   * Run udevadm trigger on postinst, and depend on udev [linux-any].
   * Add xserver-xorg-input-joystick-dev for the header and .pc files.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 08 Dec 2009 16:32:07 +0200
 
 xserver-xorg-input-joystick (1:1.5.0-1) experimental; urgency=low
diff --git a/debian/rules b/debian/rules
index 532d383..1414a74 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp: $(STAMP_DIR)/patch
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-rendition: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 9a1963c8d3f18a029ac692468b66e47b92ba4c1b
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:47 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 47b45cb..016cc0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-video-rendition (1:4.2.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Remove 03_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:10 +0200
 
 xserver-xorg-video-rendition (1:4.2.1-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 7d866b2..46ad7a4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp: $(STAMP_DIR)/patch
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-glint: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 70fa240713f54d1b76dc238a178f18b1d95a02b5
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:48 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index f6413f8..40ac196 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-glint (1:1.2.4-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:07 +0200
 
 xserver-xorg-video-glint (1:1.2.3-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index a5a5e3b..cdf04ff 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,12 +39,12 @@ configure: $(STAMP_DIR)/patch
 build: build-stamp
 build-stamp: configure
 
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-tseng: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 6aad17524e1cecab9dc1aad6b33d14f2b479f16e
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:48 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index d8730c4..6302cb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-video-tseng (1:1.2.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Remove 01_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:13 +0200
 
 xserver-xorg-video-tseng (1:1.2.1-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 186f680..e73d060 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp: $(STAMP_DIR)/patch
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-evdev: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   14 +++---
 2 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 9e18884ecfa93696fce4037c5a068da77d440f56
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:48 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 8902c90..ac03b39 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-input-evdev (1:2.3.2-4) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:29 +
+
 xserver-xorg-input-evdev (1:2.3.2-3) unstable; urgency=low
 
   * 65-xorg-evdev.rules: instead of blacklisting joysticks, explicitly
diff --git a/debian/rules b/debian/rules
index 78555f7..356b9da 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 ylwrap mkinstalldirs 
config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-s3: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |4 
 debian/rules |   14 +++---
 2 files changed, 11 insertions(+), 7 deletions(-)

New commits:
commit 9563e3bfcaa33acb72ce6976d8eaba0084f7b3c4
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:48 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index f70a375..d923944 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,10 @@ xserver-xorg-video-s3 (1:0.6.3-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:10 +0200
 
 xserver-xorg-video-s3 (1:0.6.2-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index dac14a1..f991bfd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-i128: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit cceec80042c61ea1006cb545f2b578429c789b35
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:49 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index e93d833..f722c40 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-i128 (1:1.3.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:07 +0200
 
 xserver-xorg-video-i128 (1:1.3.2-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 3048dc1..f5a1494 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,12 +39,12 @@ configure:
 build: build-stamp
 build-stamp: configure
dh_testdir
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -56,7 +56,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -69,7 +69,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-savage: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 60079969b542dcf166ee92d51fdf99ec1342962f
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:49 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1c55dce..e472a67 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-savage (1:2.3.1-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:10 +0200
 
 xserver-xorg-video-savage (1:2.3.0-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 096daa7..7f32407 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-acecad: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 6c2e1c62fb5080e8d3e08a5bb26400db2a37a132
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:49 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 78e9593..7406f61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-input-acecad (1:1.4.0-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:01 +0200
 
 xserver-xorg-input-acecad (1:1.3.0-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index b7e95b0..9154293 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure:
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -57,7 +57,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 ylwrap mkinstalldirs config.h.in
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-siliconmotion: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 9faa1c68471b73ec8ad487f2b9b0f0a0a15fe36e
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:49 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index ceeb592..0ec284a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xserver-xorg-video-siliconmotion (1:1.7.3-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:11 +0200
 
 xserver-xorg-video-siliconmotion (1:1.7.2-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 4313708..1d623b2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-vmware: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   14 +++---
 2 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 31b699ac0ee5a552b68f0d15da4792af6f915ead
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:50 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 0f3472c..5874801 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-vmware (1:10.16.9-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:32 +
+
 xserver-xorg-video-vmware (1:10.16.9-1) unstable; urgency=low
 
   [ Timo Aaltonen ]
diff --git a/debian/rules b/debian/rules
index 28c48d5..45420c3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,18 +36,18 @@ configure:
dh_testdir
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/Makefile: configure
+build/Makefile: configure
dh_testdir
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/Makefile
+build-stamp: build/Makefile
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -59,7 +59,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 config.h.in mkinstalldirs
@@ -72,7 +72,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-synaptics: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |2 ++
 debian/rules |   14 +++---
 2 files changed, 9 insertions(+), 7 deletions(-)

New commits:
commit c65889b3de7a2d1762669bc7d7be65814faa9373
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:50 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index ba64ff5..a5b9912 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ xserver-xorg-input-synaptics (1.2.1-2) UNRELEASED; urgency=low
   * Add hurd-i386 to the Architecture field.  Requested by Samuel Thibault.
   * Drop references to hal from debian/NEWS, README.Debian and synaptics(4)
 (closes: #564549).
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 08 Dec 2009 16:15:58 +0200
 
diff --git a/debian/rules b/debian/rules
index 3d6de52..37ad494 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,18 +40,18 @@ endif
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 

 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -63,7 +63,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing aclocal.m4 config.h.in
@@ -76,7 +76,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: DH_OPTIONS=-s


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-ivtvdev: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 89936acf56d7e977604191751d07055a2141f712
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:50 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1d0e564..ef95453 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 xserver-xorg-video-ivtvdev (1.1.0-2) UNRELEASED; urgency=low
 
+  [ Ian Campbell ]
   * Update debian/copyright with correct URL, remove obsolete paragraph about
 an old fork which is no longer used.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Ian Campbell i...@hellion.org.uk  Thu, 21 May 2009 08:45:22 +0100
 
 xserver-xorg-video-ivtvdev (1.1.0-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 1439ed1..2049668 100755
--- a/debian/rules
+++ b/debian/rules
@@ -38,12 +38,12 @@ build: build-stamp
 build-stamp:
dh_testdir
 
-   mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -56,7 +56,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
 
dh_clean
 
@@ -66,7 +66,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-vmmouse: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   10 +-
 2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit cc28c112ec5561c0032cc4a8b9d476a27c2805ca
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:50 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 7e4a4fe..0985612 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,12 @@
 xserver-xorg-input-vmmouse (1:12.6.5-2) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 02:06:47 +0200
 
 xserver-xorg-input-vmmouse (1:12.6.5-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index f7f028f..8f9b639 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,12 +40,12 @@ build: build-stamp
 build-stamp: configure
dh_testdir
 
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing
rm -f $$(find -name Makefile.in)
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-s3virge: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |5 +
 debian/rules |   14 +++---
 2 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit f788d2a664800b3632b3c3b39609131cb419dd22
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:50 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index f7c827d..d4d708e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
 xserver-xorg-video-s3virge (1:1.10.4-1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * New upstream release.
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
   * Remove 01_gen_pci_ids.diff. The X server now uses an internal table to
 choose a driver during autoconfiguration.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:10 +0200
 
 xserver-xorg-video-s3virge (1:1.10.2-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index d02edbf..2e6cc69 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,17 +35,17 @@ confflags += --disable-static
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -57,7 +57,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
@@ -70,7 +70,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-i740: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |4 
 debian/rules |   10 +-
 2 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit a00cfe46a2bf311bb06a06fe71d8f8959e6ae010
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:51 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 1e98243..4a2b497 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,10 @@ xserver-xorg-video-i740 (1:1.3.2-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:07 +0200
 
 xserver-xorg-video-i740 (1:1.3.0-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 34f3df2..aaaec11 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build-stamp:
dh_testdir
 
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: 
@@ -54,7 +54,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-apm: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |4 
 debian/rules |   10 +-
 2 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit 241bbd71554a65d7ebdbbeacd7921ae87f936b04
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:51 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index e1b0e73..fc46e54 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,10 @@ xserver-xorg-video-apm (1:1.2.2-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.8.3.
   * Build against Xserver 1.7.
 
+  [ Julien Cristau ]
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
  -- Timo Aaltonen tjaal...@ubuntu.com  Sat, 05 Dec 2009 01:49:05 +0200
 
 xserver-xorg-video-apm (1:1.2.1-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index b130092..e2f2d97 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,12 +39,12 @@ configure:
 build: build-stamp
 build-stamp: configure
dh_testdir
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: 
@@ -56,7 +56,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.sub config.h.in configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
rm -f $$(find -name Makefile.in)
@@ -69,7 +69,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install serverabi


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libxxf86vm: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 7ec3a8fe681ac4b3249a26efe3a8c6ac5397effa
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:51 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 70b04be..edf8209 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libxxf86vm (1:1.1.0-3) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:35 +
+
 libxxf86vm (1:1.1.0-2) unstable; urgency=low
 
   * Upload to unstable.
diff --git a/debian/rules b/debian/rules
index 13143dc..7496cce 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build: patch build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -54,7 +54,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
find -name Makefile.in -delete
@@ -68,7 +68,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libxau: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   14 +++---
 2 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 4e2067576607e090ddb05e75346e9383d2feac7b
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:51 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 9648e07..abae1ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libxau (1:1.0.5-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:35 +
+
 libxau (1:1.0.5-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/rules b/debian/rules
index eb93bba..029cf26 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,9 +35,9 @@ endif
 configure: $(STAMP_DIR)/patch
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+build/config.status: configure
+   mkdir -p build
+   cd build  \
../configure \
  --prefix=/usr \
  --mandir=\$${prefix}/share/man \
@@ -46,10 +46,10 @@ obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
  CFLAGS=$(CFLAGS)
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
 
touch build-stamp
 
@@ -62,7 +62,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 mkinstalldirs config.h.in
@@ -75,7 +75,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libxdmcp: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   12 ++--
 2 files changed, 13 insertions(+), 6 deletions(-)

New commits:
commit 559be587b7d41aaad48e6bb16d07dd7c6253ac5d
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:51 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 4fa355d..50bfec2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libxdmcp (1:1.0.3-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:34 +
+
 libxdmcp (1:1.0.3-1) unstable; urgency=low
 
   [ Brice Goglin ]
diff --git a/debian/rules b/debian/rules
index 523de2d..96d0824 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,13 +37,13 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cp Wraphelp.c obj-$(DEB_BUILD_GNU_TYPE) #Ick... to allow des building
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cp Wraphelp.c build #Ick... to allow des building
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -55,7 +55,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
find -name Makefile.in -delete
@@ -68,7 +68,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libxkbfile: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 92d558261f2de76d6c34148f2fbaab559e7eb591
Author: Julien Cristau jul...@radis.liafa.jussieu.fr
Date:   Sat Jan 16 16:48:52 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index 782136d..e874e12 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libxkbfile (1:1.0.6-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:35 +
+
 libxkbfile (1:1.0.6-1) unstable; urgency=low
 
   [ Brice Goglin ]
diff --git a/debian/rules b/debian/rules
index 52aaa83..b782ee7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,12 +37,12 @@ build: build-stamp
 build-stamp:
dh_testdir
autoreconf -vfi
-   mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   mkdir -p build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info $(confflags) \
 CFLAGS=$(CFLAGS) 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean:
@@ -54,7 +54,7 @@ clean:
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f aclocal.m4 config.guess config.h.in config.sub configure
rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
find -name Makefile.in -delete
@@ -67,7 +67,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-dependent files here.
 binary-arch: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xtrans: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   14 +++---
 2 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 1a1d8f8331b77421c8447e0351684e19c23f1659
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:52 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index c76ff39..981153b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xtrans (1.2.5-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:36 +
+
 xtrans (1.2.5-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/debian/rules b/debian/rules
index 667db7a..d6dfd63 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,18 +35,18 @@ configure: $(STAMP_DIR)/patch
dh_testdir
autoreconf -vfi
 
-obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
+build/config.status: configure
dh_testdir
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info --disable-shared \
 $(confflags) CFLAGS=$(CFLAGS) 
 
 build: build-stamp
-build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
+build-stamp: build/config.status
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)
$@
 
 clean: xsfclean
@@ -58,7 +58,7 @@ clean: xsfclean
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 config.h.in mkinstalldirs
@@ -71,7 +71,7 @@ install: build
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 
 # Build architecture-independent files here.
 binary-indep: build install


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



pixman: Changes to 'debian-unstable'

2010-01-16 Thread Julien Cristau
 debian/changelog |7 +++
 debian/rules |   10 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 57810f4228da7ac20e066369b0e0fdca5665be97
Author: Julien Cristau jcris...@debian.org
Date:   Sat Jan 16 16:48:52 2010 +

Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good 
reason.  Thanks, Colin Watson!

diff --git a/debian/changelog b/debian/changelog
index edf5ec6..6cc8a9c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+pixman (0.16.4-2) UNRELEASED; urgency=low
+
+  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
+good reason.  Thanks, Colin Watson!
+
+ -- Julien Cristau jcris...@debian.org  Sat, 16 Jan 2010 16:47:36 +
+
 pixman (0.16.4-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/debian/rules b/debian/rules
index 88ea93d..8319e0e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -34,8 +34,8 @@ autogen-stamp: $(QUILT_STAMPFN)
 config: config-stamp
 config-stamp: autogen-stamp
dh_testdir
-   test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
-   cd obj-$(DEB_BUILD_GNU_TYPE)  \
+   test -d build || mkdir build
+   cd build  \
../configure \
  --prefix=/usr \
  --mandir=\$${prefix}/share/man \
@@ -48,7 +48,7 @@ config-stamp: autogen-stamp
 build: build-stamp
 build-stamp: config-stamp
dh_testdir
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
+   cd build  $(MAKE)

touch $@
 
@@ -61,7 +61,7 @@ clean: unpatch
rm -f */config.cache */config.log */config.status
rm -f conftest* */conftest*
rm -rf autom4te.cache */autom4te.cache
-   rm -rf obj-*
+   rm -rf build
rm -f $$(find -name Makefile.in)
rm -f compile config.guess config.sub configure depcomp install-sh
rm -f ltmain.sh missing INSTALL aclocal.m4 config.h.in
@@ -75,7 +75,7 @@ install-stamp: build-stamp
dh_clean -k
dh_installdirs
 
-   cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
+   cd build  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
touch $@
 
 # Install architecture-dependent files here.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



  1   2   3   >