Your message dated Sun, 26 Feb 2012 18:32:26 +0000
with message-id <[email protected]>
and subject line Bug#661343: fixed in lcdproc 0.5.5-2
has caused the Debian Bug report #661343,
regarding lcdproc: FTBFS with automake 1.11.3: `pkglibdir' is not a legitimate
directory for `PROGRAMS'
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 [email protected]
immediately.)
--
661343: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=661343
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: lcdproc
Version: 0.5.5-1
Severity: serious
Tags: patch
Justification: fails to build from source (but built successfully in the past)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi there,
tried rebuilding lcdproc but failed due to a new sanity-check introduced by
automake 1.11.3:
dh build --with autotools_dev
dh_testdir
dh_autotools-dev_updateconfig
debian/rules override_dh_auto_configure
make[1]: Entering directory `/«PKGBUILDDIR»'
chmod +x debian/autogen.sh
debian/autogen.sh
Cleaning autotools files...
Running autoreconf...
configure.in:10: installing `./config.guess'
configure.in:10: installing `./config.sub'
configure.in:6: installing `./install-sh'
configure.in:6: installing `./missing'
clients/lcdexec/Makefile.am: installing `./depcomp'
server/drivers/Makefile.am:23: `pkglibdir' is not a legitimate directory for
`PROGRAMS'
autoreconf: automake failed with exit status: 1
make[1]: *** [override_dh_auto_configure] Error 1
make[1]: Leaving directory `/«PKGBUILDDIR»'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Please find attached a patch that has been applied in Ubuntu for this issue.
Cheers,
Andreas
- -- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (400, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-17-generic (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBAgAGBQJPSkspAAoJEGHzRCZ03mYkQyMQALYN9XYoXbj+3pYdaTUkrH82
rqeRuZDRoUH6+dq92Eq4vrHba0yRf0jOwC8e5GoYGIkM9oNcKFfQ8q/elHmnBRHN
eDN5BXjDw7FpLjtnU7f1GVQtrTkEWPybwFsfj3nUlf3r1OElFsVOBf2BRZPQhboP
o+PV/8On0IyDJlQm6+JoPrdBJzjHwn3wDn/yDgL8zYUUb2ciEGQLvIF+IIe4DqhG
62VNnA5V1pb7M3jWzyO/6YMorc67wlCHABuiQZbaNyPG5PdSQon7hTAaZOh2OZyS
04TpzWl99ZylB4xDTtlnoVdWVTAukO3mPuPUDnvO14u32bbJXuYMYUBL+r/ob26U
vzmyd10zAGy7ti3Y0Za2aAoUrxSXaw5dgKm3G7ZSMnGOOJVWAmNOxQfsSjoAf1j6
jE3VuOf/blkEs/cXkXRCpKgtZEHmnKKatnKMJZPNX8juPKDmY6W8Lgag4JcoWYEV
O6tuv/jAJM9jCKuC1fCQfDabPHvtDQk9R3FLujqwhVHJpfdPHdUbhqTf5QwVd5Fp
OWf5PAxSW8GonEv3yKGCCdlvSdFQ1hT5Cz0zATLvcIFofDOpjeJTEjgZdCNXG5jB
sTgtxPW9Rd5hYvgRGaHplOkEAYmfzSkjkwshebzlXeBsFc9vLzJqNvOST7prN1bz
Hce1FZg79kgtcq+/M3Or
=JrK4
-----END PGP SIGNATURE-----
lcdproc_0.5.5-1-amd64-20120226-1600.gz
Description: GNU Zip compressed data
Description: With automake 1.11.3, pkglib_PROGRAMS is not valid anymore,
so work around this by using my_execbin_PROGRAMS.
Author: Andreas Moog <[email protected]>
Bug: http://sourceforge.net/support/tracker.php?aid=3494755
Bug-Ubuntu: https://bugs.launchpad.net/bugs/934265
Forwarded: yes, https://sourceforge.net/tracker/download.php?group_id=119&atid=100119&file_id=436745&aid=3494755
Index: lcdproc-0.5.5/server/drivers/Makefile.am
===================================================================
--- lcdproc-0.5.5.orig/server/drivers/Makefile.am 2012-02-26 14:04:37.000000000 +0100
+++ lcdproc-0.5.5/server/drivers/Makefile.am 2012-02-26 14:13:17.764467350 +0100
@@ -20,7 +20,8 @@
## Keep the lists sorted!
-pkglib_PROGRAMS = @DRIVERS@
+my_execbindir = $(pkglibdir)
+my_execbin_PROGRAMS = @DRIVERS@
EXTRA_PROGRAMS = bayrad CFontz CFontz633 CFontzPacket curses debug CwLnx ea65 EyeboxOne g15 glcdlib glk hd44780 icp_a106 imon imonlcd IOWarrior irman joy lb216 lcdm001 lcterm lirc lis MD8800 mdm166a ms6931 mtc_s16209x MtxOrb mx5000 NoritakeVFD picolcd pyramid sed1330 sed1520 serialPOS serialVFD shuttleVFD stv5730 SureElec svga t6963 text tyan sli ula200 xosd i2500vfd irtrans
noinst_LIBRARIES = libLCD.a libbignum.a
--- End Message ---
--- Begin Message ---
Source: lcdproc
Source-Version: 0.5.5-2
We believe that the bug you reported is fixed in the latest version of
lcdproc, which is due to be installed in the Debian FTP archive:
lcdproc-dbg_0.5.5-2_amd64.deb
to main/l/lcdproc/lcdproc-dbg_0.5.5-2_amd64.deb
lcdproc-extra-drivers_0.5.5-2_amd64.deb
to main/l/lcdproc/lcdproc-extra-drivers_0.5.5-2_amd64.deb
lcdproc_0.5.5-2.debian.tar.gz
to main/l/lcdproc/lcdproc_0.5.5-2.debian.tar.gz
lcdproc_0.5.5-2.dsc
to main/l/lcdproc/lcdproc_0.5.5-2.dsc
lcdproc_0.5.5-2_amd64.deb
to main/l/lcdproc/lcdproc_0.5.5-2_amd64.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Dominique Dumont <[email protected]> (supplier of updated lcdproc package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sun, 26 Feb 2012 19:00:59 +0100
Source: lcdproc
Binary: lcdproc lcdproc-extra-drivers lcdproc-dbg
Architecture: source amd64
Version: 0.5.5-2
Distribution: unstable
Urgency: low
Maintainer: Dominique Dumont <[email protected]>
Changed-By: Dominique Dumont <[email protected]>
Description:
lcdproc - LCD display driver daemon and clients
lcdproc-dbg - debugging symbols for lcdproc
lcdproc-extra-drivers - extra drivers for the LCD display driver daemon
Closes: 661343
Changes:
lcdproc (0.5.5-2) unstable; urgency=low
.
* Applied patch to cope with new automake 1.11.3 (Thanks Andreas)
(Closes: #661343)
* control: bumped standard-version to 3.9.3 (no other changes)
* copyright: updated format URL
Checksums-Sha1:
7f128140490ced7545c74d29096d8c935bf1ce77 2339 lcdproc_0.5.5-2.dsc
c99c4d28989ac07c915bf0977f8ab60bf4c3720f 11693 lcdproc_0.5.5-2.debian.tar.gz
138a769b22ec889587ef51267712c08947b068e5 385844 lcdproc_0.5.5-2_amd64.deb
6a7c3619980833baa78a3d6e58d0084a1ae0ef04 105750
lcdproc-extra-drivers_0.5.5-2_amd64.deb
320a8f7919987d903d9fd380923f82b12eb43b14 88036 lcdproc-dbg_0.5.5-2_amd64.deb
Checksums-Sha256:
c5edd885faa24701e1c607251ee5654beed3129a95f0f904a121039c58e0ac11 2339
lcdproc_0.5.5-2.dsc
f8330e14f062a1767c38dd74ef054fda290c11d4016c98c4bb7ccb713c32032a 11693
lcdproc_0.5.5-2.debian.tar.gz
5eb4feae67b2b9e6a4a161a8e7c26d1eb7d3a5a692fcb1882408c615f36c9d21 385844
lcdproc_0.5.5-2_amd64.deb
6c1b5b80a513edcba565b4e0c967ee34744d0a5e11f343c5095369db368406e2 105750
lcdproc-extra-drivers_0.5.5-2_amd64.deb
4abc02694374db064128eabf50e306315d888bc153c5ce8baf6c87f59b4a99be 88036
lcdproc-dbg_0.5.5-2_amd64.deb
Files:
7d77dc790d95495cfef5293aa152efc2 2339 utils extra lcdproc_0.5.5-2.dsc
de75909fe00eb0d0fd5a7579e63add46 11693 utils extra
lcdproc_0.5.5-2.debian.tar.gz
91b7d8d35fbe52fd917cfc2d1c6860da 385844 utils extra lcdproc_0.5.5-2_amd64.deb
8d5dd4d08119a7954d2bcf75e22c44c6 105750 utils extra
lcdproc-extra-drivers_0.5.5-2_amd64.deb
45b364ffea1a8db915f6b23931402e21 88036 debug extra
lcdproc-dbg_0.5.5-2_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBAgAGBQJPSnSYAAoJEMMfT9lJqytscRcQAKXBh+TQ2lb1VYvFh3nPlIkm
Fz9K4i6Us41oqVTwRfjHD5H5cGzqQxQMNTmVL5bVP7tdi2OKTlfri5lGOnOZA7Fw
+Q4kkvp6c6e8+uPWwwTMl/gQm+FXjxo4nESY9S3g1bwz9BZXXG+WHNz8YiXrTP13
nFluqSJCevqDgfpdxfLW9CxOTKbU2gfKijfGWdFB4gsyzNdEnWrvjXCE/5F9n6na
lLZfizHX4yqhJU/TjH3GoMMjmWMyYeYVQBSouJK9rjU7cDRyl51eNJf7H7B6DqXJ
vx9Y7bJZaUaVJz8/dQIWOSIaTAhNx0y3R2MIIzfWGYI5xyVCRm60QzM5+kZXYlsr
OJIeIWuUJwviwZvr33eUaKYyQT0owKNEpDmd94hRldFZnaxfaT/HeAxDFQaB7bsX
mKHtg3lmWmUnrBngE4nOrcnlvd0SaDQgYzGDUpl4gkF2RWwwt9ldAGA44WGnlWyP
OlLqw6XGiO48lgf3vOE3gjxnUCT8W/DK3PiuacYuKJCZuQKIW18dsJUblkoUX0ev
jdF37T+uVu+KYfmwU9z2FT7ks+4IUCiagJFgetkXcTt6o3HdHdjdF7luDCDo4bG3
st7QtohhPp+/nbCexFjBIClvkJramdmHF95pvLuO9LCdEYcBdSGWXi3b3vzdQ0KY
1IREexwIN9vfwTkoLeDs
=rSFr
-----END PGP SIGNATURE-----
--- End Message ---