diff options
author | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2012-12-05 10:40:53 -0500 |
---|---|---|
committer | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2012-12-05 10:40:53 -0500 |
commit | 57be74b7508ef5c6e7daef0e16259d650b44e02c (patch) | |
tree | 7cd267de6411646f945d9f9e34dfa67e74e964d8 | |
parent | 7fc48c2b9637fd1b91b58dc3e4d029c64327d26d (diff) | |
download | ayatana-ido-57be74b7508ef5c6e7daef0e16259d650b44e02c.tar.gz ayatana-ido-57be74b7508ef5c6e7daef0e16259d650b44e02c.tar.bz2 ayatana-ido-57be74b7508ef5c6e7daef0e16259d650b44e02c.zip |
- Add xvfb to Build-Depends.
- Override dh_auto_test to run them through xvfb-run.
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/control | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 38d6766..00527e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,11 +9,13 @@ ido (12.10.3-0ubuntu1) UNRELEASED; urgency=low other indicator stack packages. - List libgtest-dev explicitly in Build-Depends. - Add Vcs-Bzr, Vcs-Browser fields with a notice to uploaders. + - Add xvfb to Build-Depends. * debian/rules: - Add and export DPKG_GENSYMBOLS_CHECK_LEVEL instead of passing -c4 to dh_makeshlibs. - Override dh_autoreconf to call autogen.sh and not run configure... - Drop the override for dh_makeshlibs. + - Override dh_auto_test to run them through xvfb-run. [ Didier Roche ] * Automatic snapshot from revision 118 (bootstrap) diff --git a/debian/control b/debian/control index e1689d5..d2d85ed 100644 --- a/debian/control +++ b/debian/control @@ -7,6 +7,7 @@ Build-Depends: debhelper (>= 9), gnome-common, libxorg-gtest-dev, libgtest-dev, + xvfb, libglib2.0-dev (>=2.14.0), libgtk-3-dev (>= 3.0), gtk-doc-tools, diff --git a/debian/rules b/debian/rules index 7305fba..bf038e4 100755 --- a/debian/rules +++ b/debian/rules @@ -12,3 +12,5 @@ override_dh_install: find debian/tmp/usr/lib -name *.la -delete dh_install --fail-missing +override_dh_auto_test: + xvfb-run dh_auto_test |