Bug#270389: kdelibs: t-p-u upload FTBFS on m68k

2004-09-14 Thread Steve Langasek
On Tue, Sep 07, 2004 at 11:59:35AM +0300, Riku Voipio wrote:
> On Tue, Sep 07, 2004 at 12:03:17AM -0700, Steve Langasek wrote:
> > Trying to build kdelibs 3.2.3-3.sarge.2 on m68k failed with the error:

> > Making all in kspell
> > make[4]: Entering directory 
> > `/build/buildd/kdelibs-3.2.3/obj-m68k-linux/doc/kspell'
> > ../../kdoctools/meinproc --srcdir=../../../kdoctools --check --cache 
> > index.cache.bz2 ../../../doc/kspell/index.docbook
> > make[4]: *** [index.cache.bz2] Error 139

> Usually meinproc errors we have seen so far have been building machine 
> running out of ram/disk space. Since all the other builds came out fine, 
> this seems probable this time too.

Ok.  m68k porters, is it possible for this kdelibs t-p-u upload
to be requeued on a beefier machine?

Thanks,
-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Bug#269265: patch for startkde

2004-09-14 Thread Achim Bohnet
Hi,
[sorry if this sounds harsh.  Not my day, I'm in a hurry
and need some sleep :(  All my fault]

why copy complete $KDEHOME, when only one file should be modified?
There's also the need to take customized $KDEHOME, $KDEDIR and $KDEDIRS
into consideration.  A general substitution rule without taking the relevant
group into account makes me also a bit nervous (but AFAIU this could be
fixed with a more sed magic ;)

For all KDE path stuff I would recommend
to use kde-config.  echo "only perl can parse perl" | sed s/perl/KDE/g
;).   Some useful examples in your case:

kde-config --localprefix
kde-config --path config
kde-config --expand --install xdgdata-apps
kde-config --path apps
...

Nevertheless I would suggest to first have a look at kdeconf_update.
It's the kde way to port incompatible changes in config files.

There are also kdereadconfig and kdewriteconfig, but if you use it
for kickerrc manipulations make sure kicker depends on kdebase-bin.

$ dpkg -S /usr/bin/{kde-config,kwriteconfig,kreadconfig,kconf_update,startkde}
kdelibs-bin: /usr/bin/kde-config
kdebase-bin: /usr/bin/kwriteconfig
kdebase-bin: /usr/bin/kreadconfig
kdelibs-bin: /usr/bin/kconf_update
ksmserver: /usr/bin/startkde

Keep up the good work!
Achim
-- 
  To me vi is Zen.  To use vi is to practice zen. Every command is
  a koan. Profound to the user, unintelligible to the uninitiated.
  You discover truth everytime you use it.
  -- [EMAIL PROTECTED]



Bug#271689: kdelibs-data: dangling symlink /usr/share/doc/kde/HTML/en/kspell/common

2004-09-14 Thread Adeodato Simó
* Martin Dickopp [Tue, 14 Sep 2004 17:00:47 +0200]:

> /usr/share/doc/kde/HTML/en/kspell/common is a symlink to a non-existent
> file /en/common.

  /usr/share/doc/kde/HTML/en/kdelibs-apidocs/common is such a dangling
  symlink, too.

-- 
Adeodato Simó
EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621
 
You cannot achieve the impossible without attempting the absurd.




Bug#269265: patch for startkde

2004-09-14 Thread Malte Cornils
tags 269265 patch
thanks

Hello, with the help of notorious Debian developer Frank Lichtenheld we 
recreated my preliminary patch. This one is against kdebase-3.2.2 and ready 
to be tested.

Please try to get this into sarge ;-)

-Malte
diff -Naur kdebase-3.2.2.non-original/debian/control kdebase-3.2.2/debian/control
--- kdebase-3.2.2.non-original/debian/control	2004-09-14 18:24:56.0 +0200
+++ kdebase-3.2.2/debian/control	2004-09-14 18:29:53.0 +0200
@@ -396,7 +396,7 @@
 Package: ksmserver
 Section: kde
 Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, sed (>> 4)
 Replaces: kdebase (<< 4:3.0.0), kwin (<< 4:3.2.0)
 Description: KDE Session Manager
  KDE is a powerful Open Source graphical desktop environment
diff -Naur kdebase-3.2.2.non-original/startkde kdebase-3.2.2/startkde
--- kdebase-3.2.2.non-original/startkde	2003-10-14 17:55:21.0 +0200
+++ kdebase-3.2.2/startkde	2004-09-14 20:43:29.0 +0200
@@ -3,6 +3,23 @@
 #  DEFAULT KDE STARTUP SCRIPT ( KDE-3.2 )
 #
 
+# sed_magic changes some configuration files to KDE3.2 syntax
+
+function sed_magic () {
+
+KICKERFILE=$HOME/.kde3/share/config/kickerrc
+
+	grep "file:/usr/share/applnk" $KICKERFILE | \
+	sed -e 's#^.*file:/usr/share/applnk/##g' | \
+	while read filename; do
+		newfile=$(find /usr/share/applications -name $(basename "$filename"))
+		if [ -n "$newfile" ]; then
+			sed -i -e "s#file:/usr/share/applnk/$filename#file:$newfile#g" $KICKERFILE
+		fi
+	done
+
+}
+
 # When the X server dies we get a HUP signal from xinit. We must ignore it
 # because we still need to do some cleanup.
 trap 'echo GOT SIGHUP' HUP
@@ -30,9 +47,35 @@
 # The user's personal KDE directory is usually ~/.kde, but this setting
 # may be overridden by setting KDEHOME.
 
-kdehome=$HOME/.kde
+kdehome=$HOME/.kde3
 test -n "$KDEHOME" && kdehome=`echo "$KDEHOME"|sed "s,^\~/,$HOME/,"`
 
+if test "$kdehome" == "$HOME/.kde3" ; then
+
+if test -d "$HOME/.kde3" ; then
+echo "continuing normal bootup.. debug: NOT!"
+else
+echo -n "Directory .kde3 does not exist, "
+echo "creating it now from .kde."
+
+if test -d "$HOME/.kde" ; then
+
+cp -a "$HOME/.kde" "$HOME/.kde3"
+
+if test $? -eq 0 ; then
+sed_magic;
+else
+echo "Copy did not work - doing normal startup"
+#FIXME: cleanup?
+fi
+
+fi
+fi
+else
+echo -n "Found modified KDEHOME, I am afraid to touch this - "
+echo "normal startup."
+fi
+
 # Activate the kde font directories.
 #
 # There are 4 directories that may be used for supplying fonts for KDE.


Processed: patch for startkde

2004-09-14 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 269265 patch
Bug#269265: kdelibs: KDE woody->sarge: .desktop files changed their location 
(RC?)
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



Bug#271548: libkdgantt0-dev missing from SID

2004-09-14 Thread Daniel Schepler
Brian Thomason <[EMAIL PROTECTED]> writes:

> Are KDXMLTools.h and related files going to be provided by another package, or
> are there other headers that provide the same interfaces? 
> -Brian

The KDGantt*.h headers aren't installed in any packages (part of the
upstream changes), but you could get them from the kdepim sources.  In
fact, depending on what you need libkdgantt for, it might be better
simply to copy the sources too.  (I'm curious what you do need it for.
There are no Debian packages which depend on libkdgantt0.)
-- 
Daniel Schepler  "Please don't disillusion me.  I
[EMAIL PROTECTED]haven't had breakfast yet."
 -- Orson Scott Card



Bug#271548: libkdgantt0-dev missing from SID

2004-09-14 Thread Brian Thomason




Are KDXMLTools.h and related files going to be provided by another
package, or are there other headers that provide the same interfaces?  

-Brian

Daniel Schepler wrote:

  Brian Thomason <[EMAIL PROTECTED]> writes:

  
  
Package: libkdgantt0-dev
Version: unavailable; reported 2004-09-13
Severity: normal
Tags: sid

Has this been virtualized by another package?  I can;t seem to find any
information on its disappearance.

I apologize if this has already been addressed elsewhere.

  
  
The kdepim upstream stopped installing libkdgantt as a separate
library (so libkdgantt0 was also dropped).  Now the contents of
libkdgantt are linked directly into libkorganizer.
  


--

This message contains information which may be confidential and privileged. Unless you are the 
addressee (or authorized to receive for the addressee), you may not use, copy or disclose to anyone 
the message or any information contained in the message. If you have received the message in error, 
please advise the sender and delete the message.  Thank you.




Bug#271548: libkdgantt0-dev missing from SID

2004-09-14 Thread Brian Thomason




Many thanks for the update.  I'll change our packages build deps
accordingly.

-Brian

Daniel Schepler wrote:

  Brian Thomason <[EMAIL PROTECTED]> writes:

  
  
Package: libkdgantt0-dev
Version: unavailable; reported 2004-09-13
Severity: normal
Tags: sid

Has this been virtualized by another package?  I can;t seem to find any
information on its disappearance.

I apologize if this has already been addressed elsewhere.

  
  
The kdepim upstream stopped installing libkdgantt as a separate
library (so libkdgantt0 was also dropped).  Now the contents of
libkdgantt are linked directly into libkorganizer.
  


--

This message contains information which may be confidential and privileged. Unless you are the 
addressee (or authorized to receive for the addressee), you may not use, copy or disclose to anyone 
the message or any information contained in the message. If you have received the message in error, 
please advise the sender and delete the message.  Thank you.




Bug#271689: kdelibs-data: dangling symlink /usr/share/doc/kde/HTML/en/kspell/common

2004-09-14 Thread Martin Dickopp
Package: kdelibs-data
Version: 4:3.3.0-1.1
Severity: minor

/usr/share/doc/kde/HTML/en/kspell/common is a symlink to a non-existent
file /en/common.

Cheers,
Martin


-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.8-1-amd64-k8
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8

Versions of packages kdelibs-data depends on:
ii  hicolor-icon-theme0.5-3  Default fallback theme for Freedes

-- no debconf information



Bug#265960: marked as done (kopete: "Now Listening" plugin does not work)

2004-09-14 Thread Debian Bug Tracking System
Your message dated Tue, 14 Sep 2004 16:42:15 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#265960: kopete: "Now Listening" plugin does not work
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--
Received: (at submit) by bugs.debian.org; 15 Aug 2004 22:21:15 +
>From [EMAIL PROTECTED] Sun Aug 15 15:21:15 2004
Return-path: <[EMAIL PROTECTED]>
Received: from 14.80-201-80.adsl.skynet.be (lecter) [80.201.80.14] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BwTNK-0004yr-00; Sun, 15 Aug 2004 15:21:15 -0700
Received: from anthony by lecter with local (Exim 3.36 #1 (Debian))
id 1BwTRk-0008Fq-00; Mon, 16 Aug 2004 00:25:48 +0200
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Anthony Labarre <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: kopete: "Now Listening" plugin does not work
X-Mailer: reportbug 2.64
Date: Mon, 16 Aug 2004 00:25:43 +0200
Message-Id: <[EMAIL PROTECTED]>
Sender: Anthony Labarre <[EMAIL PROTECTED]>
X-BadReturnPath: [EMAIL PROTECTED] rewritten as [EMAIL PROTECTED]
  using "From" header
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kopete
Version: 4:3.2.3-1
Severity: normal


Though enabled and configured, the Now Listening plugin does not produce any
output when playing songs or playlists in xmms, be it with ICQ or MSN.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (ignored: LC_ALL set to fr_BE)

Versions of packages kopete depends on:
ii  kdelibs4  4:3.3.0-1  KDE core libraries
ii  libart-2.0-2  2.3.16-6   Library of functions for 2D graphi
ii  libc6 2.3.2.ds1-16   GNU C Library: Shared libraries an
ii  libfam0c102   2.7.0-5client library to control the FAM 
ii  libgadu3  1:1.5-2Gadu-Gadu protocol library - runti
ii  libgcc1   1:3.4.1-5  GCC support library
ii  libglib1.21.2.10-9   The GLib library of C routines
ii  libgtk1.2 1.2.10-17  The GIMP Toolkit set of widgets fo
ii  libice6   4.3.0.dfsg.1-6 Inter-Client Exchange library
ii  libjpeg62 6b-9   The Independent JPEG Group's JPEG 
ii  libpcre3  4.5-1.1Perl 5 Compatible Regular Expressi
ii  libpng12-01.2.5.0-7  PNG library - runtime
ii  libqt3c102-mt 3:3.3.2-5  Qt GUI Library (Threaded runtime v
ii  libsm64.3.0.dfsg.1-6 X Window System Session Management
ii  libssl0.9.7   0.9.7d-5   SSL shared libraries
ii  libstdc++51:3.3.4-7  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-6 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-6 X Window System miscellaneous exte
ii  libxi64.3.0.dfsg.1-6 X Window System Input extension li
ii  libxml2   2.6.11-3   GNOME XML library
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  libxslt1.11.1.8-3XSLT processing library - runtime 
ii  xlibs 4.3.0.dfsg.1-6 X Window System client libraries m
ii  xmms  1.2.10-1   Versatile X audio player that look
ii  zlib1g1:1.2.1.1-5compression library - runtime

-- no debconf information

---
Received: (at 265960-done) by bugs.debian.org; 14 Sep 2004 14:43:19 +
>From [EMAIL PROTECTED] Tue Sep 14 07:43:19 2004
Return-path: <[EMAIL PROTECTED]>
Received: from 34.red-80-32-129.pooles.rima-tde.net (stewie) [80.32.129.34] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C7EWd-ir-00; Tue, 14 Sep 2004 07:43:19 -0700
Received: by stewie (Postfix, from userid 1000)
id E2F377B2E7; Tue, 14 Sep 2004 16:42:16 +0200 (CEST)
From: Alejandro Exojo <[EMAIL PROTECTED]>
Organization: http://www.badopi.org/
To: Anthony Labarre <[EMAIL PROTECTED]>,
[EMAIL PROTECTE

Bug#271664: juk has problems with libFLAC4 1.1.1 (works with 1.1.0 from testing)

2004-09-14 Thread Jos Poortvliet
Package: juk
Version: 3.3.0-1

Starting Juk gives the following error:

juk: error while loading shared libraries: libFLAC.so.4: cannot open shared 
object file: No such file or directory

After downgrading libFLAC4 to 1.1.0 from testing, it works fine. so juk doesnt 
seem to like libFLAC4 1.1.1. I also filed a bugreport to juk, I dunno what 
the source of the problem is: juk, libFLAC4, or the package(s).

 I am using Debian GNU/Linux unstable, kernel 2.6.8.1-ck7.

Hope you can fix it, or forward this to the appropriate person.

tnx for the work on packaging juk, its a great audio player!

grtz

Superstoned


pgplRJ7QHTxoR.pgp
Description: PGP signature


Bug#271637: kopete fails to reconnect

2004-09-14 Thread Alberto Hernando
Package: kopete
Version: 4:3.3.0-2
Severity: important

In some cases, kopete loses the connection with all the protocols. I
have yahoo, msn and jabber configured. In such cases, it is impossible
to manually reconnect. It is needed to close the program and start it
again. Then, everything works fine. Sorry, but I can't reproduce it,
though it has happened several times.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (ignored: LC_ALL set to [EMAIL 
PROTECTED])

Versions of packages kopete depends on:
ii  kdelibs4   4:3.3.0-1.1   KDE core libraries
ii  libart-2.0-2   2.3.16-6  Library of functions for 2D graphi
ii  libc6  2.3.2.ds1-13  GNU C Library: Shared libraries an
ii  libfam0c1022.7.0-5   client library to control the FAM 
ii  libgadu3   1:1.5-2   Gadu-Gadu protocol library - runti
ii  libgcc11:3.4.1-4sarge1   GCC support library
ii  libglib1.2 1.2.10-9  The GLib library of C routines
ii  libgtk1.2  1.2.10-17 The GIMP Toolkit set of widgets fo
ii  libice64.3.0.dfsg.1-4Inter-Client Exchange library
ii  libidn11   0.5.2-3   GNU libidn library, implementation
ii  libjpeg62  6b-9.alberto  The Independent JPEG Group's JPEG 
ii  libpcre3   4.5-1.1   Perl 5 Compatible Regular Expressi
ii  libpng12-0 1.2.5.0-7 PNG library - runtime
ii  libqt3c102-mt  3:3.3.3-3 Qt GUI Library (Threaded runtime v
ii  libsm6 4.3.0.dfsg.1-4X Window System Session Management
ii  libstdc++5 1:3.3.4-6sarge1.2 The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-4X Window System protocol client li
ii  libxext6   4.3.0.dfsg.1-4X Window System miscellaneous exte
ii  libxi6 4.3.0.dfsg.1-4X Window System Input extension li
ii  libxml22.6.11-3  GNOME XML library
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  libxslt1.1 1.1.8-4   XSLT processing library - runtime 
ii  xlibs  4.3.0.dfsg.1-4X Window System client libraries m
ii  xmms   1.2.10-1  Versatile X audio player that look
ii  zlib1g 1:1.2.1.1-7   compression library - runtime

-- no debconf information



Bug#271548: libkdgantt0-dev missing from SID

2004-09-14 Thread Daniel Schepler
Brian Thomason <[EMAIL PROTECTED]> writes:

> Package: libkdgantt0-dev
> Version: unavailable; reported 2004-09-13
> Severity: normal
> Tags: sid
>
> Has this been virtualized by another package?  I can;t seem to find any
> information on its disappearance.
>
> I apologize if this has already been addressed elsewhere.

The kdepim upstream stopped installing libkdgantt as a separate
library (so libkdgantt0 was also dropped).  Now the contents of
libkdgantt are linked directly into libkorganizer.
-- 
Daniel Schepler  "Please don't disillusion me.  I
[EMAIL PROTECTED]haven't had breakfast yet."
 -- Orson Scott Card