Package: kdevelop
Version: 4:3.3.2-5
Severity: important

The current version of autoconf in sid is 2.60, but for all KDE
templates, kdevelop copies a admin/cvs.sh which checks for 2.5* versions
only. This means that you can't compile a single KDE application
because the autotools chain is not executed successfully.
I attached a proposed patch for admin/cvs.sh which should be integrated
into the KDE application templates so that at least newly created
projects are properly autotooled. Upgrading existing KDE projects is
probably much harder.

Cheers,
Michael


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages kdevelop depends on:
ii  kdebase-bin                 4:3.5.3-2    core binaries for the KDE base mod
ii  kdelibs4c2a                 4:3.5.3-1    core libraries and binaries for al
ii  kdevelop-data               4:3.3.2-5    An IDE for Unix/X11 - data
ii  libacl1                     2.2.39-1     Access control list shared library
ii  libart-2.0-2                2.3.17-1     Library of functions for 2D graphi
ii  libattr1                    2.4.32-1     Extended attribute shared library
ii  libaudio2                   1.8-1        The Network Audio System (NAS). (s
ii  libc6                       2.3.6-15     GNU C Library: Shared libraries
ii  libcvsservice0              4:3.5.2-1+b2 DCOP service for accessing CVS rep
ii  libdb4.3                    4.3.29-5     Berkeley v4.3 Database Libraries [
ii  libfontconfig1              2.3.2-7      generic font configuration library
ii  libfreetype6                2.2.1-2      FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0]         0.1.7-3      Client library for the gamin file 
ii  libgcc1                     1:4.1.1-9    GCC support library
ii  libice6                     1:1.0.0-3    X11 Inter-Client Exchange library
ii  libidn11                    0.6.5-1      GNU libidn library, implementation
ii  libjpeg62                   6b-13        The Independent JPEG Group's JPEG 
ii  libpcre3                    6.4-2        Perl 5 Compatible Regular Expressi
ii  libpng12-0                  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt                   3:3.3.6-2    Qt GUI Library (Threaded runtime v
ii  libsm6                      1:1.0.0-4    X11 Session Management library
ii  libstdc++6                  4.1.1-9      The GNU Standard C++ Library v3
ii  libx11-6                    2:1.0.0-7    X11 client-side library
ii  libxcursor1                 1.1.5.2-5    X cursor management library
ii  libxext6                    1:1.0.0-4    X11 miscellaneous extension librar
ii  libxft2                     2.1.8.2-8    FreeType-based font drawing librar
ii  libxi6                      1:1.0.0-5    X11 Input extension library
ii  libxinerama1                1:1.0.1-4    X11 Xinerama extension library
ii  libxrandr2                  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1                 1:0.9.0.2-4  X Rendering Extension client libra
ii  libxt6                      1:1.0.0-5    X11 toolkit intrinsics library
ii  zlib1g                      1:1.2.3-13   compression library - runtime

Versions of packages kdevelop recommends:
ii  autoconf                     2.60-1      automatic configure script builder
ii  automake1.4 [automaken]      1:1.4-p6-11 A tool for generating GNU Standard
ii  automake1.7 [automaken]      1.7.9-9     A tool for generating GNU Standard
ii  automake1.8 [automaken]      1.8.5-5     A tool for generating GNU Standard
ii  automake1.9 [automaken]      1.9.6-5     A tool for generating GNU Standard
ii  kdevelop-doc                 4:3.3.2-5   An IDE for Unix/X11 - documentatio
ii  libtool                      1.5.22-4    Generic library support script
ii  make                         3.81-2      The GNU version of the "make" util

-- no debconf information
Index: admin/cvs.sh
===================================================================
--- admin/cvs.sh        (revisiĆ³n: 857)
+++ admin/cvs.sh        (copia de trabajo)
@@ -29,7 +29,7 @@
 {
 AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
 case $AUTOCONF_VERSION in
-  Autoconf*2.5* | autoconf*2.5* ) : ;;
+  Autoconf*2.5* | autoconf*2.5* | Autoconf*2.6* | autoconf*2.6* ) : ;;
   "" )
     echo "*** AUTOCONF NOT FOUND!."
     echo "*** KDE requires autoconf 2.52, 2.53 or 2.54"
@@ -44,7 +44,7 @@
  
 AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
 case $AUTOHEADER_VERSION in
-  Autoconf*2.5* | autoheader*2.5* ) : ;;
+  Autoconf*2.5* | autoheader*2.5* | Autoconf*2.6* | autoheader*2.6* ) : ;;
   "" )
     echo "*** AUTOHEADER NOT FOUND!."
     echo "*** KDE requires autoheader 2.52 or 2.53 (part of autoconf)"

Reply via email to