Package: debhelper
Version: 9.20120909
Severity: normal
Tags: patch
Hi Joey! With both Qt4 and Qt5 in the archive we will need a
transition for the buildsystem. In order to avoid FTBFSes of
packages that currently build OK, I've created this small patch.
It would be *great* to have it on experimental so we can ask
people to start testing it.
Thanks for considering it.
Kinds regards, Lisandro.
-- System Information:
Debian Release: 7.0
APT prefers unstable
APT policy: (990, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.2.21+edid (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages debhelper depends on:
ii binutils 2.22-8
ii dpkg 1.16.10
ii dpkg-dev 1.16.10
ii file 1:5.11-3
ii html2text 1.3.2a-15
ii man-db 2.6.3-3
ii perl 5.14.2-21
ii po-debconf 1.0.16+nmu2
debhelper recommends no packages.
Versions of packages debhelper suggests:
ii dh-make 0.62
-- no debconf information
diff -Naur debhelper-9.20120909/Debian/Debhelper/Buildsystem/qmake.pm debhelper-9.20120909.mod/Debian/Debhelper/Buildsystem/qmake.pm
--- debhelper-9.20120909/Debian/Debhelper/Buildsystem/qmake.pm 2011-12-08 19:26:46.000000000 -0300
+++ debhelper-9.20120909.mod/Debian/Debhelper/Buildsystem/qmake.pm 2013-04-14 16:11:56.762544395 -0300
@@ -50,6 +50,11 @@
my @options;
my @flags;
+ # Select Qt4 by default except if overriden otherwise.
+ if (!$ENV{QT_SELECT}) {
+ push @options, "-qt=qt4";
+ }
+
push @options, '-makefile';
push @options, '-nocache';