Bug#329328: sysvinit attempts to mount selinux when it is not available

2005-09-22 Thread C.Y.M
This fixes the problem.. although its not a real fix.

--- rules.orig  2005-09-22 03:39:27.0 -0700
+++ rules   2005-09-22 03:31:28.0 -0700
@@ -30,7 +30,7 @@
 # Builds the binary package.
$(checkdir)
 ifeq ($(DEB_HOST_ARCH_OS),linux)
-   (cd src; make DISTRO=Debian WITH_SELINUX=yes)
+   (cd src; make DISTRO=Debian WITH_SELINUX=no)
 else
(cd src; make DISTRO=Debian)
 endif



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#328082: gnomoradio: Please go through C++ 'c2' transition

2005-09-22 Thread Steve Langasek
Hi Riccardo,

Ah, I seem to have overlooked some needed changes when preparing this NMU;
please find an updated patch attached.

Unfortunately, I'm concerned by what I found in this package's shlibs files:

librainbow 0 librainbow0 (=  ${VERSION} )
libroboradio 0 libroboradio0 (=  ${VERSION} )
libroboradio-mp3 0  libroboradio0 (=  ${VERSION} )
libroboradio-audio  0 libroboradio0 (=  ${VERSION} )

This indicates that these libraries are not actually exporting stable ABIs,
which would mean they shouldn't be shipped as shared libraries in Debian.
As a result, I'm not willing to NMU for this issue; please sort out with
upstream how to best fix these libraries so that they can be compliant with
Debian policy.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
diff -u gnomoradio-0.15.1/config.guess gnomoradio-0.15.1/config.guess
--- gnomoradio-0.15.1/config.guess
+++ gnomoradio-0.15.1/config.guess
@@ -3,7 +3,7 @@
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
 #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
-timestamp='2005-03-24'
+timestamp='2005-08-03'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -17,13 +17,15 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
+# 02110-1301, USA.
 #
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
 # configuration script generated by Autoconf, you may include it under
 # the same distribution terms that you use for the rest of that program.
 
+
 # Originally written by Per Bothner [EMAIL PROTECTED].
 # Please send patches to [EMAIL PROTECTED].  Submit a context
 # diff and a properly formatted ChangeLog entry.
@@ -66,11 +68,11 @@
 while test $# -gt 0 ; do
   case $1 in
 --time-stamp | --time* | -t )
-   echo $timestamp ; exit 0 ;;
+   echo $timestamp ; exit ;;
 --version | -v )
-   echo $version ; exit 0 ;;
+   echo $version ; exit ;;
 --help | --h* | -h )
-   echo $usage; exit 0 ;;
+   echo $usage; exit ;;
 -- ) # Stop option processing
shift; break ;;
 - )# Use stdin as input.
@@ -123,7 +125,7 @@
;;
  ,,*)   CC_FOR_BUILD=$CC ;;
  ,*,*)  CC_FOR_BUILD=$HOST_CC ;;
-esac ;'
+esac ; set_cc_for_build= ;'
 
 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
 # ([EMAIL PROTECTED] 1994-08-24)
@@ -196,55 +198,20 @@
# contains redundant information, the shorter form:
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
echo ${machine}-${os}${release}
-   exit 0 ;;
-amd64:OpenBSD:*:*)
-   echo x86_64-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-amiga:OpenBSD:*:*)
-   echo m68k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-cats:OpenBSD:*:*)
-   echo arm-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-hp300:OpenBSD:*:*)
-   echo m68k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-luna88k:OpenBSD:*:*)
-   echo m88k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-mac68k:OpenBSD:*:*)
-   echo m68k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-macppc:OpenBSD:*:*)
-   echo powerpc-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-mvme68k:OpenBSD:*:*)
-   echo m68k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-mvme88k:OpenBSD:*:*)
-   echo m88k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-mvmeppc:OpenBSD:*:*)
-   echo powerpc-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-sgi:OpenBSD:*:*)
-   echo mips64-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
-sun3:OpenBSD:*:*)
-   echo m68k-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
+   exit ;;
 *:OpenBSD:*:*)
-   echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
-   exit 0 ;;
+   UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
+   echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
+   exit ;;
 *:ekkoBSD:*:*)
echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
-   exit 0 ;;
+   exit ;;
 macppc:MirBSD:*:*)
echo powerppc-unknown-mirbsd${UNAME_RELEASE}
-   exit 0 ;;
+   exit ;;
 *:MirBSD:*:*)
echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
-   exit 0 ;;
+   exit ;;
 alpha:OSF1:*:*)
case $UNAME_RELEASE in
*4.0)
@@ -297,40 +264,43 @@
# A Xn.n version is an unreleased experimental baselevel.
# 1.2 uses 1.2 for uname -r.

Bug#329462: general: standard value $LANG=[EMAIL PROTECTED] - very tiny GTK1 font

2005-09-22 Thread Steve Langasek
reassign 329462 libgtk1.2
severity 329462 important
thanks

On Thu, Sep 22, 2005 at 02:57:15AM +0200, Annett Fritz wrote:
 Package: general
 Severity: grave
 Tags: l10n
 Justification: renders package unusable

 The standard value $LANG=[EMAIL PROTECTED] breaks fontsize for some gtk1
 programs like gxedit or tipptrainer. With $LANG=de_DE they show a
 readable font. 
 A normal user doesn't know that when he chooses the locale
 dpkg-reconfigure locales during installation.

Can you explain what you mean when you say it breaks fontsize?  That
doesn't sound to me like a bug that makes the package unusable.

In any case, I fear that this bug will probably go unfixed since libgtk1.2
is no longer being developed.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Bug#329219: build-depend on kitchensync

2005-09-22 Thread Martin Lohmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Michael Meskes wrote:
 You probably also noticed that the above mentioned report is
 reported against kdepim-dev because that is the package that lacks a
 dependancy. So why do you report a new bug against a different package?

DamnI should have read the whole report. Sorry for creating this
unnecessary noise.

Martin
- --

Powered by Mac OS X

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDMpIAOvJj+wS6JuIRAl+QAJ0QYnzKgpIc70gZa85R+5i0YQAmggCfQ2SR
bafhAva7JMNojOS1F0waJzg=
=id5s
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329622: Bug in dpkg-www

2005-09-22 Thread Jan Jansen
PACKAGE: dpkg-www
VERSION:  2.47

When i perform an automatic installation via fai, the package 'dpkg-www' makes 
the whole install process on this console hangs. It seems that something went 
wrong with the apache webserver, because the output looks like this:
--- output begin 
Setting up dpkg-www (2.47) ...
Updating apache configuration file: /etc/apache/httpd.conf
Restarting apache...
/usr/sbin/apachectl restart: httpd not running, trying to start
/usr/sbin/apachectl restart: httpd started
--- output end 
at this point, the console hangs. I made an process listing to determine which 
installation step might hang, here the appropriate procs:
--- output begin 
16249 tty1 S+ 0:00 /usr/bin/update-menus.real
16285 tty1 S+ 0:00 /usr/bin/perl 
-w /usr/share/debconf/frontend /var/lib/dpkg/info/dpkg-www.postinst configure
16288 tty1 Z+ 0:00 [dpkg-www.postin] defunct
16293 tty1 S  0:00 /usr/sbin/apache
16297 tty1 S  0:00 /usr/sbin/apache
16298 tty1 S  0:00 /usr/sbin/apache
16299 tty1 S  0:00 /usr/sbin/apache
16300 tty1 S  0:00 /usr/sbin/apache
16301 tty1 S  0:00 /usr/sbin/apache
16577 ?S  1:08 [pdflush]
16578 ?S  0:52 [pdflush]
16701 tty2 R+ 0:00 ps ax
--- output end 
When working around this bug, notice that i don't have a configuration of any 
package at this point of installation, this will be done after package 
installation. So, as far i can overview, this cannot be a misconfiguration by 
myself.

Hope i supported/helped you (and Debian)...
Jan Jansen
-- 
-
EKF Elektronik GmbH Industrial Computers  Information Technology
Jan Jansen   mailto:[EMAIL PROTECTED]http://www.ekf.de
Philipp Reis Str. 4  fax: +49 (0)2381-6890-90
D-59065 Hamm (Germany)  phone: +49 (0)2381-6890-0
-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329623: kernel-patch-squashfs: This package should suggest linux-source

2005-09-22 Thread Marco Bodrato
Package: kernel-patch-squashfs
Version: 1:2.1r2-0.1
Severity: minor


I think this package should suggest kernel-source|linux-source.

Keep on working that good!
Marco

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-tm290
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages kernel-patch-squashfs depends on:
ii  bash  3.0-16 The GNU Bourne Again SHell
ii  grep-dctrl2.6.7  Grep Debian package information
ii  patch 2.5.9-2Apply a diff file to an original

kernel-patch-squashfs recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329411: Making this two bugs

2005-09-22 Thread micah

clone 329411 -1
retitle -1 Suggestion: add debconf question
thanks

I have cloned this bug so that there are two separate issues to resolve.

Micah


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#328470: bbpager: [m68k] FTBFS: undefined reference to `__gxx_personality_sj0'

2005-09-22 Thread Christoph Berg
Re: Christian T. Steigies in [EMAIL PROTECTED]
 Automatic build of bbpager_0.4.1b1-1 on garkin by sbuild/m68k 42
 [...]
 m68k-linux-gnu-g++  -O2  -I/usr/include/bt -I/usr/include/freetype2 
 -I/usr/X11R6/include-s  -L/usr/X11R6/lib  -lSM -lICE -lX11 -o bbpager  
 bbpager.o main.o Baseresource.o resource.o wminterface.o pager.o desktop.o  
 -lXext -L/usr/local/lib -L/usr/X11R6/lib -lbt -lXft -lfreetype -lz -lXrender 
 -lX11 -lfontconfig  
 /usr/lib/gcc/m68k-linux-gnu/4.0.2/../../../libbt.a(Application.o): In 
 function `bt::Application::Application(std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  const, char const*, bool)':

Afaict, this is caused by libbt 0.70.0-4 which hasn't transitioned to
the new C++ api on m68k yet (fixed in 0.70.0-5, which failed on m68k).

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#329177: kaffeine: Configuration wizard is displayed each time Kaffeine starts.

2005-09-22 Thread Leonithas Arvanitis
I confirm this bug too. Very annoying...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329625: sendmail: Default MaxHopCount is too low (25 while RFC 2821 recommends at least 100)

2005-09-22 Thread Bjørn Mork
Package: sendmail
Version: 8.13.4-3
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

sendmail uses a default MaxHopCount of only 25, which is clearly too low in
todays email world with stacked virus scanners, spam filters and multiple 
internal gateways.

RFC 2821 doesn't give an absolute limit, but has a clear recommendation:

quote
6.2 Loop Detection

   Simple counting of the number of Received: headers in a message has
   proven to be an effective, although rarely optimal, method of
   detecting loops in mail systems.  SMTP servers using this technique
   SHOULD use a large rejection threshold, normally at least 100
   Received entries.  Whatever mechanisms are used, servers MUST contain
   provisions for detecting and stopping trivial loops.
/quote

I believe the Debian sendmail package should set a default that complies
with this recommendation, either by changing the default at compile time 
or at least by providing an example sendmail.mc with
define(`confMAX_HOP', `100')


- -- Package-specific info:
Ouput of /usr/share/bug/sendmail/script:

ls -alR /etc/mail:
/etc/mail:
total 392
drwxr-sr-x9 smmta  smmsp   4096 2005-09-21 16:06 .
drwxr-xr-x  132 root   root8192 2005-09-19 12:13 ..
- -rw-r--r--1 root   root1055 2005-09-21 16:06 access
- -rw-r-1 smmta  smmsp  12288 2005-09-21 16:06 access.db
- -rw-r--r--1 root   root 281 2004-09-21 20:51 address.resolve
- -rw-r--r--1 root   root1476 2005-07-18 10:37 aliases
- -rw-r--r--1 smmta  smmsp  12288 2005-07-18 10:55 aliases.db
drwxr-xr-x2 root   smmsp   4096 2005-09-08 13:18 CVS
- -rw-r--r--1 root   smmsp   3590 2005-09-06 15:23 databases
- -rw-r-1 smmta  smmsp 31 2001-04-30 00:16 default-auth-info
- -r--r--r--1 daemon daemon  5588 2004-12-16 02:34 helpfile
- -rw-r--r--1 root   root 163 2005-01-20 18:38 local-host-names
- -rw-r--r--1 root   root1706 2003-09-16 09:05 local_virtusertable
drwxr-sr-x2 smmta  smmsp   4096 2005-09-18 03:31 m4
- -rw-r--r--1 root   smmsp 96 2003-04-07 19:23 mailertable
- -rw-r-1 root   smmsp  12288 2005-06-05 22:40 mailertable.db
- -rwxr-xr--1 root   smmsp  11777 2005-09-06 15:23 Makefile
drwxr-sr-x2 root   smmsp   4096 2005-09-06 15:18 OLD
drwxr-xr-x2 root   root4096 2005-06-05 22:40 peers
- -rw-r--r--1 root   root  72 2003-04-07 19:23 relay-domains
drwxr-xr-x2 smmta  smmsp   4096 2004-10-13 10:05 sasl
- -rw-r--r--1 root   smmsp  59780 2005-09-06 15:23 sendmail.cf
- -rw-r--r--1 root   root   59778 2005-06-05 22:40 sendmail.cf.old
- -rw-r--r--1 root   root   11867 2005-06-05 22:40 sendmail.conf
- -rw-r--r--1 root   smmsp   1096 2005-05-12 17:54 sendmail.mc
- -rw-r--r--1 root   root 149 2001-01-15 18:49 service.switch
- -rw-r--r--1 root   root 180 2001-01-15 18:49 service.switch-nodns
drwxr-sr-x2 smmta  smmsp   4096 2004-10-11 14:38 smrsh
lrwxrwxrwx1 root   root  15 2005-07-02 03:30 spamassassin - 
../spamassassin
- -rw-r--r--1 root   smmsp  41799 2005-06-05 22:40 submit.cf
- -rw-r--r--1 root   root   41780 2005-06-05 22:40 submit.cf.old
- -rw-r--r--1 root   smmsp580 2005-06-05 22:40 submit.mc
drwxr-xr-x2 smmta  smmsp   4096 2005-01-11 16:00 tls
- -rw-r--r--1 root   root  71 2003-04-07 19:23 trusted-users
- -rw-r--r--1 root   smmsp117 2005-01-20 18:38 virtusertable
- -rw-r-1 root   smmsp  12288 2005-06-05 22:40 virtusertable.db

/etc/mail/CVS:
total 20
drwxr-xr-x  2 root  smmsp 4096 2005-09-08 13:18 .
drwxr-sr-x  9 smmta smmsp 4096 2005-09-21 16:06 ..
- -rw-r--r--  1 root  root   402 2005-09-08 13:18 Entries
- -rw-r--r--  1 root  smmsp   17 2003-04-02 11:18 Repository
- -rw-r--r--  1 root  smmsp   19 2003-04-02 11:18 Root

/etc/mail/m4:
total 12
drwxr-sr-x  2 smmta smmsp 4096 2005-09-18 03:31 .
drwxr-sr-x  9 smmta smmsp 4096 2005-09-21 16:06 ..
- -rw-r--r--  1 root  root   789 2004-11-07 17:32 clamav-milter.m4
- -rw-r-  1 root  smmsp0 2002-10-23 02:21 dialup.m4
- -rw-r-  1 root  smmsp0 2002-10-23 02:21 provider.m4

/etc/mail/OLD:
total 12
drwxr-sr-x  2 root  smmsp 4096 2005-09-06 15:18 .
drwxr-sr-x  9 smmta smmsp 4096 2005-09-21 16:06 ..
- -rw-r--r--  1 root  root   683 2001-03-27 23:27 sasl.mc

/etc/mail/peers:
total 12
drwxr-xr-x  2 root  root  4096 2005-06-05 22:40 .
drwxr-sr-x  9 smmta smmsp 4096 2005-09-21 16:06 ..
- -rw-r--r--  1 root  root   328 2001-07-18 00:11 provider

/etc/mail/sasl:
total 20
drwxr-xr-x  2 smmta smmsp 4096 2004-10-13 10:05 .
drwxr-sr-x  9 smmta smmsp 4096 2005-09-21 16:06 ..
- -rwxr--r--  1 root  root  3655 2005-09-06 15:22 sasl.m4
- -rw-r-  1 smmta smmsp  748 2004-10-13 10:10 Sendmail.conf.2
- -rw-r-  1 smmta smmsp  610 2003-03-04 14:49 Sendmail.conf.2.OLD

/etc/mail/smrsh:
total 8
drwxr-sr-x  2 smmta smmsp 4096 2004-10-11 14:38 .
drwxr-sr-x  9 smmta smmsp 4096 2005-09-21 16:06 ..
lrwxrwxrwx  1 root  root26 2003-04-24 18:56 mail.local - 

Bug#316526: amarok: 100% CPU after playlist has finished

2005-09-22 Thread Adeodato Simó
  Can you tell me, which gstreamer engine do you use? Thanks.

* Mikael Nilsson [Fri, 01 Jul 2005 17:17:28 +0200]:

 Package: amarok
 Version: 1.2.4-1
 Severity: normal


 Every time a playlist has finished playing, or after I press the Stop or
 Pause buttons, amarok uses 100% of my CPU. This drops to normal as soon as I
 start playing again.

 amarok does *not* use 100% CPU when it is just started and is not playing
 anything, so this seems completely unnecessary.

 I run amarok under GNOME using Gstreamer engine.

* rich lott [Wed, 07 Sep 2005 09:38:50 +0100]:

 Package: amarok
 Version: 1.2.4-1
 Followup-For: Bug #316526


 Yes, I get 100% usr cpu use too. GSTreamer and KDE. 

 I'm afraid I can't recreate it easily - it's something I noticed on my
 laptop when the fan starts and I have nothing that should be using a lot
 of power. Doing a top showed a strange thing: user cpu use 100% but
 amarok doesn't appear at the top of the list of processes.

 Anyway, I found that quitting Amarok restored the CPU to normal levels,
 so I know it's to do with amarok.

-- 
Adeodato Simó
EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621
 
A dream is an answer to a question that we don't know how to ask.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#322251: hylafax-server: Permissions ok, but still doesn't report pdfs

2005-09-22 Thread Giuseppe Sacco
Il giorno gio, 22/09/2005 alle 13.13 +0200, Enric Nadal ha scritto:
[...]
 my /var/spool/hylafax dir has correct permissions for uucp.uucp, but
 hylafax still doesn't send pdfs attachments upon receiving faxes (if
 configured to do so in /var/spool/hylafax/bin/faxrcvd or
 /var/spool/hylafax/etc/FaxNotify)
[...]

Could you please send me a tar.gz archive with
both /var/spool/hylafax/bin/faxrcvd
and /var/spool/hylafax/etc/FaxNotify ?

Thanks,
Giuseppe



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329353: allergic to some fruits

2005-09-22 Thread Yuri D'Elia


On Sep 22, 2005, at 11:48, Florian Ernst wrote:


diff -rud hexedit-1.2.11/hexedit.h hexedit/hexedit.h
--- hexedit-1.2.11/hexedit.h2005-09-20 14:36:48.0 +0200
+++ hexedit/hexedit.h2005-09-21 23:26:02.287924000 +0200
@@ -58,16 +58,18 @@
[...]
-#define usage usage: %s [-s | --sector] [-m | --maximize] [-h |  
--help] filename\n
+#define usage usage: %s [-s | --sector] [-m | --maximize] [-- 
color] [-h | --help] filename\n

+
+#define usage usage: %s [-s | --sector] [-m | --maximize] [-- 
color] [-h | --help] filename\n




Probably shouldn't be duplicated...


You're probably right.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329177: Bug #329177: kaffeine: Configuration wizard is displayed each time Kaffeine starts.

2005-09-22 Thread Sven Joachim

severity 329177 important
thanks

Krystof Zacek wrote:

Package: kaffeine
Version: 0.7.1-1
Severity: grave
Justification: renders package unusable

Kaffeine configuration wizard is displayed each time Kaffeine starts.
The Desktop icon never gets created.


This is very annoying, of course, but it does not render Kaffeine
unusable.  It only takes two extra mouse clicks on every start.  I
have downgraded the severity to important, because this issue is not
severe enough to further delay the Qt/KDE transition for etch.







--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#304819: spca5xx debian package

2005-09-22 Thread Otavio Salvador
Stephen Birch [EMAIL PROTECTED] writes:

 Rechecking the ITP I noticed that Itay Ben-Yaacov pointed out that you
 guys both have a package already complete.  There is no point in
 reinventing the wheel so Id like to use your work.

I agree about this.

I think this can be co-maintained and maybe use a Alioth project to
have  a project team, for example but this is with you.

I want access to the package before it's go Debian so I can check for
trivial mistakes and try to avoid more delay fixing it on next
uploads.

Thanks in advance,

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://www.freedom.ind.br/otavio
-
Microsoft gives you Windows ... Linux gives
 you the whole house.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#319031: Patch for this issue

2005-09-22 Thread Tollef Fog Heen

Hi,

http://err.no/patches/kino_segv_on_open_64bit.diff is a patch which
fixes this problem.

-- 
Tollef Fog Heen,''`.
UNIX is user friendly, it's just picky about who its friends are  : :' :
  `. `' 
`-  


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329627: packages.debian.org: changelogs missing for rrdtool

2005-09-22 Thread Niko Tyni
Package: www.debian.org
Severity: minor

Hi,

changelogs for the stable and unstable rrdtool packages are missing from
packages.debian.org for some reason.

http://packages.debian.org/changelogs/pool/main/r/rrdtool/rrdtool_1.0.49-1/changelog
http://packages.debian.org/changelogs/pool/main/r/rrdtool/rrdtool_1.2.11-0.4/changelog

These are referenced from eg.
http://packages.debian.org/stable/utils/rrdtool

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329626: RFA: libclass-container-perl

2005-09-22 Thread ivan-debian
Package: wnpp
Severity: normal

I request an adopter for the libclass-container-perl package.  

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329422: No warnings when uninstalling kernel package

2005-09-22 Thread Joe Mason
On Thu, Sep 22, 2005 at 03:10:47PM +0900, Horms wrote:
 Could you please send your reply to the bug,
 [EMAIL PROTECTED]

Oops, didn't realize Reply-To wasn't set.  Here it is:

On Thu, Sep 22, 2005 at 12:34:59AM -0400, Joe Mason wrote:
 On Thu, Sep 22, 2005 at 12:20:52PM +0900, Horms wrote:
  The problem here is that Debian implicitly supports having
  multiple kernel packages and in fact no kernel packages installed
  to allow users to provide their own kernels.
  
  It might be prudent to document this feature somewhere,
  but I don't think its a bug in the kernel-image-2.6.8-2-686,
  or any other kernel package.
 
 Perhaps apt should be able to notice when a kernel is being removed, and
 either print a generic warning (You're removing a kernel image!  Please
 make sure this is not the kernel you're actually running! - this is my
 preferred solution) or actually check uname -a and print a more specific
 warning (You're about to remove the kernel you're currently running -
 this is only safe if you have set up your bootloader to load a different
 kernel at the next boot) or even check the grub/lilo conf, although
 that last is going a bit beyond the call of duty.  That way at least a
 new user who doesn't know what a kernel-image package is gets a
 warning.
 
 Documenting it in a way that isn't presented by apt when you actually
 try to uninstall it wouldn't be very useful, I don't think.
 
 As I said, apt still always gives the opportunity to type I know what
 I'm doing if you know it's actually safe to uninstall the kernel
 package, so I think printing the current danger warning wouldn't violate
 the policy of allowing multiple kernel-images, although having a
 slightly different error message would probably be clearer.
 
 Joe


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329462: general: standard value $LANG=[EMAIL PROTECTED] - very tiny GTK1 font

2005-09-22 Thread arnilucky
 Can you explain what you mean when you say it breaks fontsize?  That
 doesn't sound to me like a bug that makes the package unusable.

The fontsize is so tiny that you cannot read any text in the application. 
Every buttontext, menutext, explanation...

This makes all libgtk1.2 depending programs unusable.

And it really took some time for me to find out that this error is depending 
on the $LANG environment variable.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329628: meld: New upstream version (1.0.0) available

2005-09-22 Thread Tom Parker
Package: meld
Version: 0.9.5-1
Severity: wishlist

See title...

-- System Information:
Debian Release: testing/unstable
  APT prefers stable
  APT policy: (990, 'stable'), (103, 'testing'), (102, 'unstable'), (99, 
'experimental'), (98, 'hoary'), (97, 'breezy')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages meld depends on:
ii  python   2.4.1-0ubuntu2  An interactive high-level object-o
ii  python-glade22.8.0-0ubuntu1  GTK+ bindings: Glade support
ii  python-gnome22.12.0-0ubuntu1 Python bindings for the GNOME desk
ii  python-gtk2  2.7.4-0ubuntu1  Python bindings for the GTK+ widge

meld recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#316526: amarok: 100% CPU after playlist has finished

2005-09-22 Thread rich lott

On Thursday 22 September 2005 12:40, Adeodato Simó wrote:
   Can you tell me, which gstreamer engine do you use? Thanks.

Name: GStreamer Engine
Library: libamarok_gstengine_plugin
Authors: Mark Kretschmann
Email : [EMAIL PROTECTED]
Version: 1
Framework Version: 5

--
HTH. 
Rich.



Bug#316526: amarok: 100% CPU after playlist has finished

2005-09-22 Thread Adeodato Simó
* rich lott [Thu, 22 Sep 2005 13:21:43 +0100]:


 On Thursday 22 September 2005 12:40, Adeodato Simó wrote:
Can you tell me, which gstreamer engine do you use? Thanks.

  Ooops, sorry: I meant which gstreamer _sink_.

  Cheers,

-- 
Adeodato Simó
EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621
 
Proper treatment will cure a cold in seven days, but left to itself, a
cold will hang on for a week.
-- Darrell Huff



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329542: libfilesys-smbclient-perl: New upstream release

2005-09-22 Thread Amit Shah
On 9/22/05, Florian Ragwitz [EMAIL PROTECTED] wrote:

 3.0 is on CPAN. Please update your package.

Thanks for the report. I can't give an ETA on when I'll be able to
upload next, but stay tuned.

Amit.

--
Amit Shah
http://amitshah.net/ | http://www.livejournal.com/users/amitshah/



Bug#212937: good n stiff

2005-09-22 Thread Leo Mejia
rock her world
http://hpreferencetu.365city.info


They say that wild animals only attack when they're cornered. I suppose that's 
why my goldfish was so calm when I flushed him.


dont want rise to the occasion
http://xduffxn.365city.info/r/





not a problem, talk to you later


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#279076: really pygtk's packages fault?

2005-09-22 Thread Gustavo Noronha Silva
Hey,

I've been trying to understand how this came to be but to no avail. I've
even played with update-alternatives quite a lot trying to figure out
what kind of context could have caused the alternative to end up
dangling but nothing I did was able to reproduce such behavior.

I took a look at the involved packages maintainer scripts and they look
correct to me. I'm inclined to think we were hit by this:

http://bugs.debian.org/308838

There's also #311288.

As the bug is already reported to dpkg and even duplicated there I
believe the best course of action for us is to simply close these bugs,
which I'll do if nobody's against.

Thanks,

-- 
[EMAIL PROTECTED]: Gustavo Noronha http://people.debian.org/~kov
Debian:  http://www.debian.org  *  http://www.debian-br.org



signature.asc
Description: This is a digitally signed message part


Bug#329629: Team maintenance for package dak

2005-09-22 Thread Frederic LEHOBEY
Package: dak
Version: 1.0-8
Severity: wishlist

Hi,

Do you have plans for setting up any kind of team maintenance (like on
Alioth) for dak package?

If any, I would be happy to join and contribute.

Best regards,
Frederic Lehobey

-- System Information:
Debian Release: 3.1
Architecture: sparc (sparc64)
Kernel: Linux 2.6.8-2-sparc64
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages dak depends on:
ii  apt [libapt-pkg-libc6.3-5-3 0.5.28.6 Advanced front-end for dpkg
ii  apt-utils   0.5.28.6 APT utility programs
ii  bzip2   1.0.2-7  high-quality block-sorting file co
ii  debconf 1.4.30.13Debian configuration management sy
ii  dpkg-dev1.10.28  Package building tools for Debian
ii  exim4-daemon-light [mail-tr 4.50-8   lightweight exim MTA (v4) daemon
ii  gnupg   1.4.1-1  GNU privacy guard - a free PGP rep
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3
ii  python  2.3.5-2  An interactive high-level object-o
ii  python-apt  0.5.10   Python interface to libapt-pkg
ii  python-ldap 2.0.4-1  A LDAP interface module for Python
ii  python-pygresql 1:3.6.1-1PostgreSQL module for Python
ii  ucf 1.17 Update Configuration File: preserv

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329630: aspell-fr: moved URL

2005-09-22 Thread Vincent Lefevre
Package: aspell-fr
Version: 0.50-3-6
Severity: minor

/usr/share/doc/aspell-fr/LISEZMOI contains:

Source URL: http://perso.wanadoo.fr/remi.vanicat/aspell/

This URL has moved to:

  http://aspellfr.free.fr/aspell/

In /usr/share/doc/aspell-fr/README, http://aspellfr.free.fr should be
changed to http://aspellfr.free.fr/aspell/ (http://aspellfr.free.fr
is a homepage with things unrelated to aspell).

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (200, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-20050829
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages aspell-fr depends on:
ii  aspell0.60.3-5   GNU Aspell spell-checker
ii  dictionaries-common   0.50.3 Common utilities for spelling dict

aspell-fr recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329631: ITP: binutils-msp430 -- Binutils files for the Texas Instruments MSP430 family of microprocessors

2005-09-22 Thread Tom Parker
Package: wnpp
Severity: wishlist
Owner: Tom Parker [EMAIL PROTECTED]

* Package name: binutils-msp430
  Version : 2.16
  Upstream Author : FSF (well, I'm fairly sure they're the main
  copyright holders)
* URL : http://www.gnu.org/software/binutils/
* License : GPL
  Description : Binary utilities that support TI's MSP430

 The programs in this package are used to manipulate binary and object
 files that may have been created for TI's MSP430 architecture.  This package
 is primarily for MSP430 developers and cross-compilers and is not needed
 by normal users or developers.

(Text for description is mostly copy+paste from binutils-avr)
I'm not currently a Debian developer, but have considered becoming one
when a package that I particularly wanted turns up. I've made
preliminary versions of this package available at http://tevp.net/debian/ and
intend to search for a sponsor.

-- System Information:
Debian Release: testing/unstable
  APT prefers stable
  APT policy: (990, 'stable'), (103, 'testing'), (102, 'unstable'), (99, 
'experimental'), (98, 'hoary'), (97, 'breezy')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329632: libnet-libidn-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-libidn-perl
Severity: wishlist

Hello,

0.08 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329633: aspell-fr: aspell-autobuildhash gives warnings on fr dictionary

2005-09-22 Thread Vincent Lefevre
Package: aspell-fr
Version: 0.50-3-6
Severity: normal

When reinstalling aspell:

Setting up aspell (0.60.3-5) ...
aspell-autobuildhash: processing: fr [fr-40-only]
aspell-autobuildhash: processing: fr [fr-60-only]
aspell-autobuildhash: processing: fr [fr-80-only]
Warning: The word Gram--Schmidt is invalid. The character '-' (U+2D) must be 
followed by an alphabetic character. Skipping word.
Warning: The word Runge--Kutta is invalid. The character '-' (U+2D) must be 
followed by an alphabetic character. Skipping word.
aspell-autobuildhash: processing: fr [fr_CH-only]

Also, reportbug says:

There may be a problem with your installation of aspell-fr;
the following files appear to be missing or changed:
debsums: checksum mismatch aspell-fr file /var/lib/aspell/fr-40-only.rws
debsums: checksum mismatch aspell-fr file /var/lib/aspell/fr-60-only.rws
debsums: checksum mismatch aspell-fr file /var/lib/aspell/fr-80-only.rws
debsums: checksum mismatch aspell-fr file /var/lib/aspell/fr_CH-only.rws
debsums: checksum mismatch aspell-fr file /var/lib/aspell/fr.compat

I don't know if this is related...

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (200, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-20050829
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)

Versions of packages aspell-fr depends on:
ii  aspell0.60.3-5   GNU Aspell spell-checker
ii  dictionaries-common   0.50.3 Common utilities for spelling dict

aspell-fr recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329634: libnet-openid-server-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-openid-server-perl
Severity: wishlist

Hello,

0.10 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329635: libnet-pcap-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-pcap-perl
Severity: wishlist

Hello,

0.06 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329636: libnet-ping-external-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-ping-external-perl
Severity: wishlist

Hello,

0.11 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329637: libnet-rawip-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-rawip-perl
Severity: wishlist

Hello,

0.2 is on CPAN. Please update your package.

I would also suggest to stick to upstreams versioning scheme, even if
that means introducing an epoch.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329638: libnet-smpp-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-smpp-perl
Severity: wishlist

Hello,

1.03 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329639: Prefer Xalan over TestXSLT!

2005-09-22 Thread Johannes Willkomm

Package: xalan
Version: 1.8-4


Hello,

what I wanted to tell is rather something to improve, than a bug.

I am using Xalan-C++ for a very long time now, I still remember when the 
only XSLT-Processor binary was TestXSLT. At least from Version 1.6, 
however Xalan-C++ also has another binary called Xalan. This binary 
has IMHO a much nicer user-interface:


   1) The calling convention is very much like that of saxon
   2) It does not spit out messages Parsing ... took ... ms like 
TestXSLT does


Here some non-sense sample calls of TestXSLT, Xalan and saxon, that 
should all to the same:


TestXSLT -param name 'wert' -in data.xml -xsl style.xsl -out ausgabe
Xalan -p name 'wert' -o ausgabe data.xml style.xsl
saxon -p name='wert' -o ausgabe data.xml style.xsl

Therefore I would like to suggest that Debian use the Xalan-Binary and 
call that xalan (which also happens to be what I do to :)

rather than using TestXSLT

Unfortunately I didn't manage to compile Xalan-C++ Version 1.9, and i
didn't try Version 1.8 so I don't know exactly what's the current state 
of affairs in the this regard.


Kind regards
Johannes Willkomm

--
Johannes Willkomm WESTEND GmbH  |  Internet-Business-Provider
Marketing CISCO Systems Partner - Authorized Reseller
  L�tticher Straáe 10  Tel 0241/701333-15
[EMAIL PROTECTED]D-52064 Aachen  Fax 0241/911879




Bug#329640: libnet-server-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-server-perl
Severity: wishlist

Hello,

0.88 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329641: libnet-server-mail-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-server-mail-perl
Severity: wishlist

Hello,

0.13 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329642: mozilla-firefox: FTBFS on ppc

2005-09-22 Thread Matthijs Mohlmann
Package: mozilla-firefox
Version: 1.4.99+1.5beta1.dfsg-1
Severity: important
Tags: experimental

Failed to build from source with this error:

gcc  -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith -Wcast-align 
-Wno-long-long -pthread -pipe  -DNDEBUG -DTRIMMED -pipe -w -O2 -o xpt_dump 
xpt_dump.o -L../../../../dist/bin -L../../../../dist/lib 
../../../../dist/lib/libxpt.a -ldl -lm
.../../../../dist/lib/libxpt.a(xpt_arena.o): In function `XPT_ArenaStrDup':
xpt_arena.c:(.text+0x1f4): undefined reference to `memcpy@@GLIBC_2.0'
.../../../../dist/lib/libxpt.a(xpt_struct.o): In function 
`XPT_InterfaceDescriptorAddTypes':
xpt_struct.c:(.text+0x840): undefined reference to `memcpy@@GLIBC_2.0'
.../../../../dist/lib/libxpt.a(xpt_struct.o): In function 
`XPT_InterfaceDescriptorAddMethods':
xpt_struct.c:(.text+0x900): undefined reference to `memcpy@@GLIBC_2.0'
.../../../../dist/lib/libxpt.a(xpt_struct.o): In function 
`XPT_InterfaceDescriptorAddConsts':
xpt_struct.c:(.text+0x9c0): undefined reference to `memcpy@@GLIBC_2.0'
.../../../../dist/lib/libxpt.a(xpt_xdr.o): In function `GrowPool':
xpt_xdr.c:(.text+0x560): undefined reference to `memcpy@@GLIBC_2.0'
.../../../../dist/lib/libxpt.a(xpt_xdr.o):xpt_xdr.c:(.text+0x86c): more 
undefined references to `memcpy@@GLIBC_2.0' follow
collect2: ld returned 1 exit status
make[7]: *** [xpt_dump] Error 1
make[7]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg/xpcom/typelib/xpt/tools'
make[6]: *** [export] Error 2
make[6]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg/xpcom/typelib/xpt/tools'
make[5]: *** [export] Error 2
make[5]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg/xpcom/typelib/xpt'
make[4]: *** [export] Error 2
make[4]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg/xpcom/typelib'
make[3]: *** [export] Error 2
make[3]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg/xpcom'
make[2]: *** [tier_2] Error 2
make[2]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg'
make[1]: *** [default] Error 2
make[1]: Leaving directory 
`/usr/src/mozzie/mozilla-firefox-1.4.99+1.5beta1.dfsg'
make: *** [build-stamp] Error 2

The only reason I think it's binutils giving troubles is the undefined symbol
[EMAIL PROTECTED], I've tried the latest snapshot of binutils but the same 
error.
So somewhere it's a problem in mozilla-firefox.

This only happens when building on a ppc machine. (G4 Silver)

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

Versions of packages mozilla-firefox depends on:
ii  debianutils   2.14.3 Miscellaneous utilities specific t
ii  fontconfig2.3.2-1generic font configuration library
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libcairo2 1.0.0-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-8  GCC support library
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libidl0   0.8.5-1library for parsing CORBA IDL file
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.8.2-2Layout and rendering of internatio
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libstdc++64.0.1-8The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxinerama1  6.8.2.dfsg.1-7 X Window System multi-head display
ii  libxp66.8.2.dfsg.1-7 X Window System printing extension
ii  libxt66.8.2.dfsg.1-7 X Toolkit Intrinsics
ii  psmisc21.6-1 Utilities that use the proc filesy
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

mozilla-firefox recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329643: libnet-whois-raw-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnet-whois-raw-perl
Severity: wishlist

Hello,

0.97 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329644: libnetaddr-ip-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libnetaddr-ip-perl
Severity: wishlist

Hello,

3.25 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329645: RFA: liblog-dispatch-perl -- Dispatches messages to multiple Log::Dispatch::* objects

2005-09-22 Thread ivan-debian
Package: wnpp
Severity: normal

I request an adopter for the liblog-dispatch-perl package.

The package description is:
 This module manages a set of Log::Dispatch::* objects, allowing you to
 add and remove output objects as desired.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329646: libpoe-component-client-dns-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libpoe-component-client-dns-perl
Version: 0.98-1
Severity: wishlist

Hello,

0.9802 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libpoe-component-client-dns-perl depends on:
ii  libnet-dns-perl   0.48-1 Perform DNS queries from a Perl sc
ii  libpoe-perl   2:0.29-1   An event driven component architec
ii  perl  5.8.7-5Larry Wall's Practical Extraction 

libpoe-component-client-dns-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329647: libpoe-component-client-http-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libpoe-component-client-http-perl
Version: 0.65-1
Severity: wishlist

Hello,

0.72 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libpoe-component-client-http-perl depends on:
ii  libnet-ssleay-perl1.25-2 Perl module for Secure Sockets Lay
ii  libpoe-perl   2:0.29-1   An event driven component architec
ii  liburi-perl   1.35-1 Manipulates and accesses URI strin
ii  libwww-perl   5.803-4WWW client/server library for Perl
ii  perl  5.8.7-5Larry Wall's Practical Extraction 

libpoe-component-client-http-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329648: libppi-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libppi-perl
Severity: wishlist

Hello,

1.003 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329649: libppi-html-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libppi-html-perl
Severity: wishlist

Hello,

0.05 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329650: libpadwalker-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libpadwalker-perl
Severity: wishlist

Hello,

0.12 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#321851: acknowledged by developer (rezound: cursor not visible after stop)

2005-09-22 Thread Guenter Geiger

On Thu, 15 Sep 2005, Brice [UTF-8] M??alier wrote:

 Fine! and this is fixed!

 But now, scrolling with the mouse roll on the bars to zoom vertically or
 horizontally the file doesn't work anymore. Only mouse button 1 (the
 left one) works.

Hi,

Sorry or the late answer. Yes you are right. There is not much I can do
about it though, I dont even have a mouse wheel :(.

Guenter


 Regards,

 --
 Brice M?alier
 [EMAIL PROTECTED]
 Linux user nb. 372699
 Debian GNU/Linux testing
 -
 Unix IS user friendly, it is just selective about who his friends are






Bug#329371: acknowledged by developer (Re: Bug#329371: nis: ypbind/ypserv and broadcast option)

2005-09-22 Thread Bas van der Vlies

Mark,



 I have switched from ypserv.securenets to ypserv.conf and the problem 
still exists ;-( The ypbind broadcast clients gets once in an while the 
wrong nis server name and uses an interface that is not allowed in the 
ypserv.conf, eg:


gb-r7n15 (192.168.17.130) and ib-r7n15 (10.0.17.130)
# New SARA syntax from Debian NIS maintainer, BvdV thanks
#
127.0.0.1   : * : * : none
192.168.16.0/255.255.252.0  : * : * : none

# Deny the rest
#
*   : * : * : deny

--- client broadcast, yp.conf:
domain elsacafe broadcast

On gb-r8n1 (192.168.17.135) en ib-r8n1 (10.0.17.135)

# /etc/init.d/nis restart
# ypwhich
ib-r7n15  - This not allowed!!


Sylog gb-r7n15:
 Sep 22 14:40:01 gb-r7n15 ypserv[23579]: refused connect from
 10.0.17.135:997 to procedure ypproc_all (elsacafe,group.byname;-1)


It is still an bug and maybe it is correlated with the other one. Or can 
nis not handle two interfaces  with broadcast mode?



Regards
--
--

*  *
*  Bas van der Vlies e-mail: [EMAIL PROTECTED]  *
*  SARA - Academic Computing Servicesphone:  +31 20 592 8012   *
*  Kruislaan 415 fax:+31 20 6683167*
*  1098 SJ Amsterdam   *
*  *



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#317316: Status

2005-09-22 Thread Tom Parker

Any status updates/ETA on this one?
--
[EMAIL PROTECTED] - http://tevp.net
Illegitimus non carborundum


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#321666: acknowledged by developer (fixed in hpoj-0.91-6)

2005-09-22 Thread Mark Horn
reopen 321666
stop

This bug recurred for me in hpoj-0.91-8.  I have (again) reverted
back to hpoj/testing (0.91-4) and printing is again working.

On Thu, Sep 01, 2005 at 10:03:15AM -0700, Debian Bug Tracking System wrote:
 This bug was fixed with the upload of hpoj-0.91-6.
 
 If not, please reply and reopen.
 
 Mark


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#280045: prboom's dependency on doom-wad and freedoom has undesirable effects.

2005-09-22 Thread Christoph Berg
Re: Moritz Muehlenhoff in [EMAIL PROTECTED]
 Depends is the correct package relationship, as a doom-wad is required
 for the depending package to provide a significant amount of functionality.
 Having prboom depend on doom-wad also ensures that a WAD file is installed
 once the user installs it.
[...]
 The correct fix would be an installer package for the original Doom files
 that fold the WADs from Doom and Doom II into a proper Debian package.

Alternatively, the equivs tool was invented for that purpose.

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#329651: libparams-validate-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libparams-validate-perl
Version: 0.77-1
Severity: wishlist

Hello,

0.78 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libparams-validate-perl depends on:
ii  perl  5.8.7-5Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.7] 5.8.7-5The Pathologically Eclectic Rubbis

libparams-validate-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329652: libparse-cpan-packages-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libparse-cpan-packages-perl
Version: 2.20-1
Severity: wishlist

Hello,

2.25 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libparse-cpan-packages-perl depends on:
ii  libclass-accessor-perl0.22-1 Automated accessor generator
ii  libcpan-distnameinfo-perl 0.03-1 Extract distribution name and vers
ii  libsort-versions-perl 1.5-1  Perl module for sorting of revisio
ii  perl  5.8.7-5Larry Wall's Practical Extraction 

libparse-cpan-packages-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329653: libplrpc-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libplrpc-perl
Version: 0.2017-1
Severity: wishlist

Hello,

0.2018 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libplrpc-perl depends on:
ii  libnet-daemon-perl0.38-1 Perl module for building portable 
ii  perl [libstorable-perl]   5.8.7-5Larry Wall's Practical Extraction 
ii  perl-modules  5.8.7-5Core Perl modules

libplrpc-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329654: amarok crashes if ~/.kde/share/config/amarokrc wasn't removed before

2005-09-22 Thread Tilman Schröder
Package: amarok
Version: 1.3.1-2
Severity: important

amarok crashes while building the playlist if
~/.kde/share/config/amarokrc wasn't removed before ...

here is my ~/.kde/share/config/amarokrc (with mysql password removed)

[Collection]
Collection Folders=/home/procyon/music
DatabaseEngine=1
Import Playlists=false

[Collection Browser]
Database Stats Version=3
Database Version=20

[General]
First Run=false

[General Options]
Auto Show ContextBrowser=false
Show Splashscreen=false

[MySql]
MySqlPassword=
MySqlUser=amarok

[OSD]
Osd Enabled=false

[Playback]
Sound System=xine-engine

[Scrobbler]
RetrieveSimilarArtists=false

[Xine-Engine]
Output Plugin=alsa

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

Versions of packages amarok depends on:
ii  amarok-xine [amarok-engin 1.3.1-2xine engine for the amaroK
audio p
ii  kdelibs4c24:3.4.2-4  core libraries for all KDE
applica
ii  libc6 2.3.5-6GNU C Library: Shared
libraries an
ii  libgcc1   1:4.0.1-8  GCC support library
ii  libice6   6.8.2.dfsg.1-7 Inter-Client Exchange library
ii  libmysqlclient14  4.1.14-2   mysql database client library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libpq48.0.3-15   PostgreSQL C client library
ii  libqt3-mt 3:3.3.5-1  Qt GUI Library (Threaded
runtime v
ii  libsm66.8.2.dfsg.1-7 X Window System Session
Management
ii  libstdc++64.0.1-8The GNU Standard C++ Library v3
ii  libtag1c2 1.4-1  TagLib Audio Meta-Data Library
ii  libtunepimp2c20.3.0-9MusicBrainz tagging library
and si
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol
client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System
miscellaneous exte
ii  xlibmesa-gl [libgl1]  6.8.2.dfsg.1-7 Mesa 3D graphics library
[X.Org]
ii  xlibs 6.8.2.dfsg.1-7 X Window System client
libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages amarok recommends:
ii  kdemultimedia-kio-plugins 4:3.4.2-2  enables the browsing of
audio CDs

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329655: O: gtk-engines-thinice -- ThinIce theme for GTK+ 1.2

2005-09-22 Thread Jeroen van Wolffelaar
Package: wnpp
Severity: normal

The current maintainer of gtk-engines-thinice, Stephen Crowley [EMAIL 
PROTECTED],
resigned in 2003 -- unfortunately, this package never got orphaned.
Therefore, I orphan this package now.  If you want to be the new maintainer,
please take it -- see http://www.debian.org/devel/wnpp/index.html#howto-o for
detailed instructions how to adopt a package properly.

Some information about this package:

Package: gtk-engines-thinice
Binary: gtk-engines-thinice
Version: 1.0.4-1.1
Priority: optional
Section: x11
Maintainer: Stephen Crowley [EMAIL PROTECTED]
Build-Depends: debhelper, libgtk1.2-dev
Architecture: any
Standards-Version: 3.5.3.0
Format: 1.0
Directory: pool/main/g/gtk-engines-thinice
Files: 4c366da66a7615d063850eba7e6a231f 663 gtk-engines-thinice_1.0.4-1.1.dsc
 f2b6e8f4c3ea3710e27a59195f2abc9a 136407 gtk-engines-thinice_1.0.4.orig.tar.gz
 619183ee15dc2cb8115db882e8e20f48 39886 gtk-engines-thinice_1.0.4-1.1.diff.gz

Package: gtk-engines-thinice
Priority: optional
Section: x11
Installed-Size: 112
Maintainer: Stephen Crowley [EMAIL PROTECTED]
Architecture: i386
Version: 1.0.4-1.1
Depends: libc6 (= 2.2.3-1), libglib1.2 (= 1.2.0), libgtk1.2 (= 1.2.10-1), 
xlibs ( 4.0.3)
Filename: pool/main/g/gtk-engines-thinice/gtk-engines-thinice_1.0.4-1.1_i386.deb
Size: 18730
MD5sum: 353619ed36f2bf0cc4669e9271807932
Description: ThinIce theme for GTK+ 1.2
 This package contains a thinice 'theme' that allows you to configure
 the look of GTK+ 1.2-using programs. The programs need no
 modifications to use themes; the support is built in to GTK+ 1.2.
Tag: uitoolkit::gtk, x11::theme

Justification: Resigned


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329656: libproc-syncexec-perl: New upstream release

2005-09-22 Thread Florian Ragwitz
Package: libproc-syncexec-perl
Severity: wishlist

Hello,

1.01 is on CPAN. Please update your package.

TIA,
Flo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329657: cupsys-driver-gutenprint: Canon BJC-250 printout too light

2005-09-22 Thread Thomas Prokosch
Package: cupsys-driver-gutenprint
Severity: normal

I own a Canon BJC-250 and never cared to use the printer under Linux because
the printout quality is too bad. Now I have no other choice and therefore
filing this bug report. My print server runs Gutenprint 5.0rc1 but this
bugreport also applies to all versions before.

The problem is that the printout is too light. Black text gets printed out
gray, with an opacity of about 50 percent.

I have tried several settings but only two change the result: Setting of the
media type and setting of black density.

When using plain paper setting the media type to Photo Glossy Paper makes
the printout appear nearly black, estimated 80 percent saturation. Adjusting
the black density value to 2 makes the printout acceptable, but not
completely black. The saturation is then about 98 percent.

Using these two settings to produce reasonable output seems like a misuse to
me. Things get worse when I choose a different color model from RGB or
change any other settings such as color correction.

Those are the facts. I have done some source code lookup but with no
concrete evidence. Somehow seem the values of canon_paper_list in
print-canon.c involved but I cannot tell for sure.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329658: tetex-extra depends on ptex-bin for installation but not specified in package requirement

2005-09-22 Thread Magnus Sundberg

Package: tetex-extra
Version: 2.0.2c-8

Dear sirs,
Thank you for maintaining Debian.
I have the following problem with tetex-extra:

Command apt-get install tetex-extra fails
Error something like command ptex not found

Workaround

apt-get install ptex-bin
(Gives error code depends on tetex-extra)

finally

apt-get install tetex-extra ptex-bin
gets tetex-extra installed

regards,

Magnus Sundberg


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329659: libfox1.4-dev: adding a link to fox-config-1.4

2005-09-22 Thread Loïc Guitaut

Package: libfox1.4-dev
Version: 1.4.16-1
Severity: normal

Is it possible to add a link (a diversion) named fox-config to 
fox-config-1.4 please?

The problem is that libfox comes by defaults with a /usr/bin/fox-config
program and not fox-config-1.4 so when writing programs using libfox it
is not very portable between differents distros.

Thanks a lot!

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

Versions of packages libfox1.4-dev depends on:
ii  libcupsys2-dev1.1.23-12  Common UNIX Printing 
System(tm) -

ii  libfox1.4 1.4.16-1   The FOX C++ GUI Toolkit
ii  libglu1-xorg-dev  6.8.2.dfsg.1-7 Mesa OpenGL utility library 
develo
ii  libjpeg62-dev 6b-10  Development files for the 
IJG JPEG

ii  libpng12-dev  1.2.8rel-1 PNG library - development
ii  libtiff4-dev  3.7.3-1Tag Image File Format 
library (TIF
ii  libx11-dev6.8.2.dfsg.1-7 X Window System protocol 
client li
ii  libxcursor-dev1.1.3-1X cursor management library 
(devel
ii  libxext-dev   6.8.2.dfsg.1-7 X Window System 
miscellaneous exte
ii  libxft-dev2.1.7-1FreeType-based font drawing 
librar
ii  xlibmesa-gl-dev   6.8.2.dfsg.1-7 Mesa 3D graphics library 
developme
ii  zlib1g-dev1:1.2.3-4  compression library - 
development


libfox1.4-dev recommends no packages.

-- no debconf information


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329660: kcontrol CTAN web shortcut outdated bug

2005-09-22 Thread Marco Amadori
Package: kcontrol
Version: any
Severity: wishlist
Tags: patch, upstream

In the original source file [1] that means on installed debian [2], ctan web 
shortcut shoul update from [3] to [4] 

[1] 
http://websvn.kde.org/tags/KDE/3.4.91/kdebase/kcontrol/kcontrol/ebrowsing/plugins/ikws/searchproviders/ctan.desktop
 
[2] /usr/share/services/searchproviders/ctan.desktop

[3] Query=http://www.ctan.org/tools/filesearch?action=/search/[EMAIL PROTECTED]
[4] 
Query=http://tug.ctan.org/cgi-bin/filenameSearch.py?action=/search/[EMAIL 
PROTECTED]

or in diff -u way:

-Query=http://www.ctan.org/tools/filesearch?action=/search/[EMAIL PROTECTED]
+Query=http://tug.ctan.org/cgi-bin/filenameSearch.py?action=/search/[EMAIL 
PROTECTED]

-- 
ESC:wq


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329661: ITA: php-net-checkip -- check the syntax of IPv4 addresses

2005-09-22 Thread Jose Carlos Medeiros
Package: wnpp
Severity: wishlist
Owner: Jose Carlos Medeiros [EMAIL PROTECTED]

* Package name : php-net-checkip
* Version : 1.1
* Upstream Author : Martin Jansen
* URL : http://pear.php.net/package/Net_CheckIP/
* License : PHP license
* Description :
This package validates IPv4 addresses.



Bug#316526: amarok: 100% CPU after playlist has finished

2005-09-22 Thread rich lott
alsasink

On Thursday 22 September 2005 13:30, Adeodato Simó wrote:
 * rich lott [Thu, 22 Sep 2005 13:21:43 +0100]:
  On Thursday 22 September 2005 12:40, Adeodato Simó wrote:
 Can you tell me, which gstreamer engine do you use? Thanks.

   Ooops, sorry: I meant which gstreamer _sink_.

   Cheers,



Bug#325446: sane: Error window appears underneath main window

2005-09-22 Thread Julien BLACHE
John Marter [EMAIL PROTECTED] wrote:

 The problem is that this window appears below the xscanimage windows and 
 giving it focus still does not raise it above the others.  I have to 
 move the main window in order to read the message.

Works for me here. Are you sure you did not get a couple of error
dialogs at once ?

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - [EMAIL PROTECTED] 
 
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329353: allergic to some fruits

2005-09-22 Thread Pixel
Yuri D'Elia [EMAIL PROTECTED] writes:

 On Wed, Sep 21, 2005 at 05:46:55PM +0200, Florian Ernst wrote:
  On Wed, Sep 21, 2005 at 03:19:46PM +0200, Yuri D'Elia wrote:
   Yes, I saw the patch, I know it's not your fault, but enabling  
  
  Oh, in a way it is, as I forwarded the corresponding wishlist bug to
  the upstream maintainer... ;)
  
   features conditionally is really poor programming. What if I provide  
   a patch that adds a --color switch instead, like most other utilities?

well i was lazy :p

  
  That, of course, would be the most splendid solution.
 
 So here's the patch-o-splendor.
 Incidentally, this patch also fixes hexedit --.
 Upstream cc'ed.

ok, why not. i've modified patch somewhat (esp. to ensure builds on
weird unixes still work)

1.2.22 released


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#168732: smbclient -L doesn't show all XP shares

2005-09-22 Thread Stefan Pauwels

Hi,

something like this also happens with files on a Mac OSX server. 
(OS=[Unix] Server=[Samba 3.0.10])

smbclient -L //projektserverx -U username
doesnt show me all the shares on projektserverx, but I couldn't find the 
pattern yet. All I know is that spaces in the share's names can't be the 
only reason, because, although I cannot see any shares that contain 
spaces, there are also other shares without spaces I cannot see with 
smbclient.


Stefan


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#193761: Update

2005-09-22 Thread Manoj Srivastava
Hi,

I did a test for a trivial fix for this bug, by just not
 creating amissing .fvwm directory, but that resulted in breakage
 further down the line: a user using fvwm for the first time would not
 be able to use the fvwm or the fvwm95 forms to create an initial
 .fvwm2rc file, since those functions assume an extant .fvwm
 dir. While I am sure one can work through and identify these places
 in the code, and create the directory as and when needed, this is
 likely to take more effort.

In the meanwhile, one may just set FVWM_USERDIR to /tmp, or
 something.

manoj
-- 
Reality is not binding on news admins. Cathy Foulston
([EMAIL PROTECTED])
Manoj Srivastava [EMAIL PROTECTED]http://www.golden-gryphon.com/
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#212874: firm is best

2005-09-22 Thread Jason Buckley
dont be limp
http://babasehl.365city.info


I love the lines the men use to get us into bed. Please, I'll only put it in 
for a minute. What am I, a microwave? 


dont want make here smile again
http://gphotolyticow.365city.info/r/





not a problem, talk to you later


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#212980: good n hard

2005-09-22 Thread Mayra Becker
a good stiffy
http://jdiannemh.365city.info


I wouldn't say he's cheap, but mine is one of the few wedding rings that 
decodes secret messages.


dont want rock her world
http://pfiril.365city.info/r/





not a problem, talk to you later


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#213013: good n stiff

2005-09-22 Thread Lance Villegas
make here smile again
http://vlockwoodqd.365city.info


When you participate in sporting events, it's not whether you win or lose ... 
it's how drunk you get


dont want pump up the volume
http://omiscegenationyo.365city.info/r/





not a problem, talk to you later


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#304819: spca5xx debian package

2005-09-22 Thread Itay Ben-Yaacov
Dear Stephen and everyone else,

Of course I have no problem of you taking my package and building upon it, or 
of being
co-maintainer.  On the other hand, I do not understand why you wish to remove 
changelog entries,
and do not give you my permission to do so.

You may of course receieve such permission from the other guy.  Also, as far as 
I know he might
have done a better job at it than me, I did not take the time to compare.

Finally, a word for the record.  I packaged this back in April (if I am to 
trust my own
changelogs) at which time I heard from the author about Stephen.  I informed 
Stephen about my
package and heard back that he already owned the rights to package 
spca5xx-source.  So I kept my
own package on a private repository since then.
I find Stephen's handling of the situation questionable.

Cheers,
Itay


--- Stephen Birch [EMAIL PROTECTED] wrote:

 
 Hi Kel and Itay
 
 One of the packages I have been planning for Debian is the spca5xx
 package for which I filed a ITP some time back.  Since I believed my
 NM application was shortly to be completed I decided to not use my
 normal sponsor for this package preferring to wait until I could do my
 own uploads.
 
 Here is the ITP and associated comments:
 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=304819
 
 To my dismay the NM process is still not complete, the AM
 just has too much work on his plate to complete the application.
 
 Recently several people have talked to me about using my sponsor for
 the spca5xx package and not keep waiting for the NM queue.  Okay
 .. so I am now moving on this and want to get the package in Debian ASAP.
 
 Rechecking the ITP I noticed that Itay Ben-Yaacov pointed out that you
 guys both have a package already complete.  There is no point in
 reinventing the wheel so Id like to use your work.
 
 I plan on dropping the changelog (if that is ok) entries but, of
 course, give full credit in the README.  I am writing to make sure you
 are okay with this direction and to make sure you are happy with the approach.
 
 If you guys want to help with this (or even co-maintain) I'll put the
 package online for your review before uploading to my sponsor.  Since
 you guys have already done the hard work it should be up quite soon.
 
 Steve
 
 
 
 
 
 
 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#304819: spca5xx debian package

2005-09-22 Thread Otavio Salvador
Itay Ben-Yaacov [EMAIL PROTECTED] writes:

 Dear Stephen and everyone else,

Hello,

 Of course I have no problem of you taking my package and building upon it, or 
 of being
 co-maintainer.  On the other hand, I do not understand why you wish to remove 
 changelog entries,
 and do not give you my permission to do so.

You're right.

 You may of course receieve such permission from the other guy.  Also, as far 
 as I know he might
 have done a better job at it than me, I did not take the time to compare.

I won't give those rights too :-D

 Finally, a word for the record.  I packaged this back in April (if I am to 
 trust my own
 changelogs) at which time I heard from the author about Stephen.  I informed 
 Stephen about my
 package and heard back that he already owned the rights to package 
 spca5xx-source.  So I kept my
 own package on a private repository since then.
 I find Stephen's handling of the situation questionable.

I second that..

I think you should be the maintainer of it. Also, I think this kinda
of package is better to be in a team way of maintainence otherwise the
lack of time of one doesn't block the package to evolve and this can
be a big deal when we're near of release.

I propose to you send a project request to Alioth for pkg-spca5xx and
you can cite me as sponsor and member of the team if you like.

So everybody will be happy and finally we'll have the package getting
in.

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://www.freedom.ind.br/otavio
-
Microsoft gives you Windows ... Linux gives
 you the whole house.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#311044: 311044: numlockx: toggle option would be a nice add-on

2005-09-22 Thread Martin-Éric Racine
pe, 2005-09-02 kello 08:46 +0200, Chris Vanden Berghe kirjoitti:

 The wishlist-bug I opened proposes a 'toggle' option (next to the
 existing 'on' and 'off' options) that changes the numlock state.  So,
 turns it off when it's on, and turns it on when it's off.

That wishlist concerns the upstream software, not the Debian packaging,
so I'm hereby forwarding him the idea.

-- 
Martin-Éric Racine
http://q-funk.iki.fi




Bug#311288: fixed?

2005-09-22 Thread Gustavo Noronha Silva
Hey,

I've been playing with update-alternatives to figure out this problem
and problems related to it. I've tried debugging update-alternatives and
it seems to behave properly on situations which used cause this:

alface:~# update-alternatives --install /usr/bin/mytest mytest /bin/ls 20
alface:~# /usr/sbin/update-alternatives --verbose --remove mytest /bin/ls
Checking available versions of mytest, updating links in /etc/alternatives ...
(You may modify the symlinks there yourself if desired - see `man ln'.)
Last package providing mytest (/usr/bin/mytest) removed, deleting it.

As seen above, update-alternative correctly removes the alternative if
the last package providing it is removed; Should this and related bugs
be closed?

I found several changelog entries which might be related to a fix for
this problem, but none directly mentioning it, though.

See ya,

-- 
[EMAIL PROTECTED]: Gustavo Noronha http://people.debian.org/~kov
Debian:  http://www.debian.org  *  http://www.debian-br.org



signature.asc
Description: This is a digitally signed message part


Bug#329662: cyrus21-imapd: fails to compile on sarge (upgraded woody)

2005-09-22 Thread Johannes Russek
Package: cyrus21-imapd
Version: 2.1.18-1
Severity: important
Justification: fails to build from source


cyrus21-imapd refuses to compile.
tried to change --with-idle=poll to --with-idle=idled, but it failed to
compile.
problems seemed not to be related to idled, so i just tried building the
package nonchanged, didnt work. wasnt able to locate the problem.
here is what the compilation says: (it seems that this editor merges a `
with the following letter, so don't get confused by strange letters. i hope
it's readable anyway)


xeon01:~# apt-get -b source cyrus21-imapd
Reading Package Lists... Done
Building Dependency Tree... Done
Need to get 1948kB of source archives.
Skipping unpack of already unpacked source in cyrus21-imapd-2.1.18
dpkg-buildpackage: source package is cyrus21-imapd
dpkg-buildpackage: source version is 2.1.18-1
dpkg-buildpackage: source maintainer is Henrique de Moraes Holschuh
[EMAIL PROTECTED]
dpkg-buildpackage: host architecture is i386
 debian/rules clean
dh_testdir
dh_testroot
xargs -t -r chmod +x  debian/executable.files
chmod +x ./autogen.sh ./contrib/cyrus-graphtools.1.0/cgi-bin/cyrus_master.pl
./contrib/cyrus-graphtools.1.0/cgi-bin/graph_cyrus_db-sum.pl
./contrib/cyrus-graphtools.1.0/cgi-bin/graph_cyrus_db.pl
./contrib/cyrus-graphtools.1.0/script/cyrus.pl
./contrib/cyrus-graphtools.1.0/script/run
./contrib/notify_unix/simple_notify.pl ./contrib/notify_unix/sql_notify.pl
./debian/cyrus-makedirs ./debian/cyrus21-common.cyrus21.init
./debian/cyrus21-common.postinst ./debian/cyrus21-common.postrm
./debian/cyrus21-common.prerm ./debian/rules ./debian/examples/mboxtocyrus
./imap/xversion.sh ./lib/test/run ./makedepend/configure
./makedepend/install-sh ./netnews/inn.diffs
./perl/imap/examples/test-imsp.pl ./ptclient/doptclient ./sieve/hmac-md5.h
./snmp/snmpgen ./tools/dohash ./tools/mkimap ./tools/not-mkdep
./tools/rehash ./tools/translatesieve ./tools/undohash ./tools/upgradesieve
./config.guess ./config.sub ./install-sh ./mkinstalldirs ./configure
rm -f build-indep-stamp build-arch-stamp configure-stamp install-arch-stamp
install-indep-stamp build-stamp
/usr/bin/make -i distclean
make[1]: Entering directory /root/cyrus21-imapd-2.1.18'
make[1]: *** No rule to make target istclean'.  Stop.
make[1]: Leaving directory /root/cyrus21-imapd-2.1.18'
make: [clean] Error 2 (ignored)
rm -f config.h config.cache config.status config.log stamp-config confdefs.h
rm -f netnews/Makefile perl/imap/Makefile.old perl/sieve/acap/Makefile.old
perl/sieve/managesieve/Makefile.old snmp/Makefile Makefile et/Makefile
rm -f doc/pod2htmd.x~~ doc/pod2htmi.x~~ imap/imap_err.[ch]
imap/pushstats.[ch] imap/lmtpstats.[ch] master/makedepend.log
rm -f sieve/addr.[ch] sieve/addr-lex.[ch] sieve/sieve.[ch] sieve/sieve-lex.c
sieve/sieve_err.[ch]
rm -f man/sieveshell.1 doc/murder.png
rm -rf doc/man
rm -f debian/cyrus-db-types.txt debian/cyrus-hardwired-config.txt
rm -f config.sub config.guess
rm -rf et/
xargs -t -r rm -f  debian/deletable.files
rm -f acconfig.h doc/man/arbitron.8.html doc/man/chk_cyrus.8.html
doc/man/collectnews.8.html doc/man/ctl_cyrusdb.8.html
doc/man/ctl_deliver.8.html doc/man/ctl_mboxlist.8.html
doc/man/cvt_cyrusdb.8.html doc/man/cyrus.conf.5.html doc/man/deliver.8.html
doc/man/fud.8.html doc/man/idled.8.html doc/man/imapd.8.html
doc/man/imapd.conf.5.html doc/man/imclient.3.html doc/man/imtest.1.html
doc/man/installsieve.1.html doc/man/ipurge.8.html doc/man/krb.equiv.5.html
doc/man/lmtpd.8.html doc/man/lmtptest.1.html doc/man/master.8.html
doc/man/mbexamine.8.html doc/man/mbpath.8.html doc/man/mupdatetest.1.html
doc/man/notifyd.8.html doc/man/pop3d.8.html doc/man/pop3test.1.html
doc/man/quota.8.html doc/man/reconstruct.8.html doc/man/rmnews.8.html
doc/man/sivtest.1.html doc/man/smtptest.1.html doc/man/squatter.8.html
doc/man/syncnews.8.html doc/man/timsieved.8.html doc/man/tls_prune.8.html
doc/man/cyradm.1.html doc/man/sieveshell.1.html doc/text/altnamespace
doc/text/anoncvs doc/text/bugs doc/text/changes doc/text/faq
doc/text/feedback doc/text/index doc/text/install-admin-mb
doc/text/install-auth doc/text/install-compile doc/text/install-configure
doc/text/install-murder doc/text/install-perf doc/text/install-prereq
doc/text/install-sieve doc/text/install-snmpmon doc/text/install-testing
doc/text/install-upgrade doc/text/install doc/text/mailing-list doc/text/man
doc/text/notes doc/text/os doc/text/overview doc/text/questions
doc/text/readme doc/text/sieve-protocol doc/text/sieve doc/text/specs
doc/murder.png imap/imap_err.h imap/imap_err.c imap/lmtpstats.h
imap/lmtpstats.c imap/pushstats.h imap/pushstats.c man/sieveshell.1
sieve/addr.c sieve/addr.h sieve/addr-lex.c sieve/sieve.c sieve/sieve.h
sieve/sieve-lex.c sieve/sieve_err.h sieve/sieve_err.c
dh_clean
 debian/rules build
Use the build-arch or build-indep targets to build...
 debian/rules binary
dh_testdir
rm -f config.sub config.guess
ln -s /usr/share/misc/config.sub config.sub
ln -s /usr/share/misc/config.guess config.guess
touch configure.in  

Bug#329663: AttributeError: 'NoneType' object has no attribute 'find'

2005-09-22 Thread Vincent Lefevre
Package: fsh
Version: 1.2-5
Severity: grave
Justification: renders package unusable

fsh always returns the following error:

dixsept:~ fsh home
Traceback (most recent call last):
  File /usr/bin/fsh, line 8, in ?
fsh.main()
  File /usr/share/fsh/fsh.py, line 384, in main
if host.find('@') != -1:
AttributeError: 'NoneType' object has no attribute 'find'
zsh: exit 1 fsh home

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11.10-20050517
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)

Versions of packages fsh depends on:
ii  openssh-client [rsh-client]   1:4.2p1-4  Secure shell client, an rlogin/rsh
ii  python2.3.5-3An interactive high-level object-o

Versions of packages fsh recommends:
pn  ssh   none (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#328239: thuban: GDAL - not available

2005-09-22 Thread Jan-Oliver Wagner
On Wed, Sep 14, 2005 at 12:27:21PM +0200, Bjoern Broscheit wrote:
 Package: thuban
 Version: 1.0.0-1
 Severity: important
 
 Without special reasons I take a look at the About-Box and this is what
 it says ...
 
 GDAL - not available
 
 No GDAL support because module 'gdalwarp' cannot be imported. Python
 exception: '/usr/lib/libgdal.so.1: undefined symbol:
 TIFFGetConfiguredCODECs'
 
 
 And I got the same message with Thuban 1.1 cvs-20050705 and Thuban
 Release Version 1.0.1 build from source.

probably the problem is that the thuban package does not list
gdal-bin as a dependency.

Install gdal-bin and you should have no more problems.

-- 
Jan-Oliver Wagner   http://intevation.de/~jan/
Intevation GmbH  http://intevation.de/
Kolab Konsortium   http://kolab-konsortium.de/
FreeGIShttp://freegis.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329665: jamin depends on jackd which isn't installable

2005-09-22 Thread arthur
Package: jamin
Version: 0.95.0-1
Severity: grave
Justification: renders package unusable


I can't install jamin because installing jackd seems to be deprecated
(at least according to : 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=318098 )

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.7-1-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages jamin depends on:
ii  fftw3 3.0.1-13   library for computing Fast Fourier
pn  jackd none (no description available)
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libgtk2.0-0   2.6.8-1The GTK+ graphical user interface 
ii  libjack0.80.0-0   0.99.0-6   JACK Audio Connection Kit (librari
ii  liblo00.18-1 Lightweight OSC library
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libxml2   2.6.21-1   GNOME XML library
ii  swh-plugins   0.4.13-1   Steve Harris's LADSPA plugins
ii  zlib1g1:1.2.3-4  compression library - runtime

jamin recommends no packages.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329666: mutt: imap folder changing leads to segfault

2005-09-22 Thread Stefan Völkel
Package: mutt
Version: 1.5.10-1
Severity: normal


Hi,

- connect to imap via imaps://host/
- press c to change folder
- press ? to see list
- press c to enter folder
- append a dot after the url, eg imaps://host/.
- segfault

#0  0x40267053 in strlen () from /lib/tls/libc.so.6
#1  0x080cb1cc in ?? ()
#2  0x in ?? ()
#3  0xbfffe5ac in ?? ()
#4  0xbfffc948 in ?? ()
#5  0x400667ac in ?? () from /lib/libncursesw.so.5
#6  0x0811d0e8 in ?? ()
#7  0xbfffe5ac in ?? ()
#8  0xbfffc948 in ?? ()
#9  0x40039c09 in wrefresh () from /lib/libncursesw.so.5
#10 0x080caade in ?? ()
#11 0xbfffc990 in ?? ()
#12 0x080e8440 in optind ()
#13 0x in ?? ()
#14 0x0001 in ?? ()
#15 0x080df736 in _IO_stdin_used ()
#16 0x in ?? ()
#17 0x03ff in ?? ()
#18 0x0805fc50 in ?? ()
#19 0x in ?? ()
#20 0x0805fc50 in ?? ()
#21 0xbfffe118 in ?? ()
#22 0x080c3664 in ?? ()
-- snip -

bt goes on, but no usable information is printed.
imap server is dovecot.

regards
stefan

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages mutt depends on:
ii  exim44.52-1  metapackage to ease exim MTA (v4) 
ii  exim4-daemon-light [mail-tra 4.52-1  lightweight exim MTA (v4) daemon
ii  libc62.3.5-3 GNU C Library: Shared libraries an
ii  libdb4.3 4.3.28-2Berkeley v4.3 Database Libraries [
ii  libgnutls11  1.0.16-13.1 GNU TLS library - runtime library
ii  libidn11 0.5.18-1GNU libidn library, implementation
ii  libncursesw5 5.4-9   Shared libraries for terminal hand
ii  libsasl2 2.1.19-1.5  Authentication abstraction library

Versions of packages mutt recommends:
ii  locales   2.3.5-3GNU C Library: National Language (
ii  mime-support  3.34-1 MIME files 'mime.types'  'mailcap

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329668: Wrong maintainer for package

2005-09-22 Thread Steve Dunham

Package: amaya
Version: 8.5-1

Anand Kumria took over maintenance for this package in February 2005,  
but hasn't uploaded a release yet.


This is a placeholder bug to keep track of that.





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329667: mozilla-thunderbird --compose executes shell commands

2005-09-22 Thread Florian Weimer
Package: mozilla-thunderbird
Version: 1.0.6-3
Severity: grave
Tags: security

The --compose option executes shell commands:

  mozilla-thunderbird --compose 'mailto:`df`'

The df output appears in the To: line of the message.

(This is related to the recently disclosed Firefox bug, which does not
seem to affect Debian thanks to a different wrapper script.)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329669: gallery: Gallery 1.5.1 Released

2005-09-22 Thread Michael Schultheiss
Package: gallery
Severity: wishlist

Gallery 1.5.1 is now available for download. This release is primarily a
bugfix release but includes several new features that should make this
worth the upgrade. (Included in this release are security fixes made for
Gallery 1.5-pl1 and Gallery 1.5.1-RC3.) Read more for the details on new
features, fixes, and the future of Gallery 1.

Download Gallery 1.5.1 from
http://sf.net/project/showfiles.php?group_id=7130

Read the full relase announcement at
http://gallery.menalto.com/gallery_1_5_1_released

The Future of G1
Gallery 2 is definitely here and great but development on Gallery 1 has
not stopped just yet. Sometime around December of this year, look for
Gallery 1.5.2 with neat new features such as an easier to use
configuration wizard, archive download, and support for clickable
imagemaps on images. We plan to keep fixing bugs in Gallery 1 for some
time, and any highly ranked feature requests in the new feature request
system (http://gallery.menalto.com/sfvote) tagged with [G1] will be considered. 

New Features in 1.5.1
-PHP 5 and PHP 4.4 fixes
-eCard feature
-Option to prevent some users from changing their password
-Colorpicker for all color settings
-Microthumbs for navigation
-Easier way to reorder items
-Small security fixes with some additional input validation
-Icons for item and album actions
Fixes from RC1
-Ecard and stamp previews work properly
-Embedded URLs now work properly for mails and comment deletion
-Updates for new versions of Postnuke
-Proper windows path seperators
-Sending emails is more reliable
-Other small bug fixes
Fixes from RC2
-Several embedding issues
-Two security problems
-Other small bug fixes
Fixes from RC3
-Embedded URLs work in CPGNuke again and some other minor embedding
issues
-A small resource leak found and closed
-Fixes to properly display EXIF data after the security fix broke some
things
-Links in emails work properly
-PHP Compatability fixes with taking arguments by reference


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329670: xdesktopwaves: mouse click lost on desktop

2005-09-22 Thread Charles Fry
Package: xdesktopwaves
Version: 1.3-1
Severity: normal

Hi,

I run xdesktopwaves in fvwm. When it is running, many/most clicks on the
desktop background are lost, presumably eaten by xdesktopwaves as it
calculates its splashes.

Charles

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (70, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages xdesktopwaves depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System miscellaneous exte
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m

xdesktopwaves recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329664: shell command execution

2005-09-22 Thread Sebastian Ley
Package: mozilla-thunderbird
Severity: grave
Tags: security

Secunia reports in http://secunia.com/advisories/16901/ that thunderbird
can be exploited to execute arbitrary shell commands in the context of
the user running thuderbird.

This bug has been assigned CAN-2005-2968.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329671: kernel-image-2.6-amd64-k8-smp: Kernel image in the intel x86 port is appears to be compiled in 64bit mode.

2005-09-22 Thread Guy Coates
Package: kernel-image-2.6-amd64-k8-smp
Version: 103
Severity: important


I've installed Sarge x86 on a opteron system. When changing the
kernel from 

kernel-image-2.6.8-2-686-smp 
to
kernel-image-2.6-amd64-k8-smp 

the machine architecture as reported by uname changes:

When running  kernel-image-2.6.8-2-686-smp

uname -m 
i686

On kernel-image-2.6-amd64-k8-smp
uname -m 
x86_64


Concequently, many applications fail to build correctly
from source (eg the linux kernel, probably anything using
config.guess) as the architecture is incorrectly specified.



-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.13.2
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages kernel-image-2.6-amd64-k8-smp depends on:
ii  kernel-image-2.6.8-11-amd64-k 2.6.8-14   Linux kernel image for version 2.6

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329672: freeradius-dialupadmin: Error on Statistics page

2005-09-22 Thread Tobias
Package: freeradius-dialupadmin
Version: 1.0.5-1
Severity: normal

Hi,
there's a mistake in user_admin.php3 of dialup_admin.

Right now, it's displaying the Download value twice on the Online Users
page. Once as human-readable value under Upload and once as raw bytes
under Download.
I found the glitch on line 196.

   if ($lastlog_input)
$lastlog_input = bytes2str($lastlog_input);
   else
$lastlog_input = 'not available';
   if ($lastlog_output)
   $lastlog_input = bytes2str($lastlog_output);
   else
$lastlog_output = 'not available';

Of course it's got to be $lastlog_output.

cheers, tobias

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-kanotix-8
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages freeradius-dialupadmin depends on:
ii  apache [httpd]1.3.33-8   versatile, high-performance HTTP s
ii  apache2-mpm-prefork [httpd]   2.0.54-5   traditional model for Apache2
ii  php4  4:4.4.0-2  server-side, HTML-embedded scripti

Versions of packages freeradius-dialupadmin recommends:
ii  perl  5.8.7-5Larry Wall's Practical Extraction 

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#328468: confirming bug 328468

2005-09-22 Thread Davide G. M. Salvetti
tags 328468 + pending
thanks
  DKG == Daniel Kahn Gillmor [2005-9-21]

DKG here's what i think is happening.  Before it does anything, make
DKG always checks to see that its makefiles themselves are up-to-date
DKG [0].

I see, thank you very much!  The nicest thing is that I use this
makefile remaking thing myself for the debian/rules file, which gets
automatically remade from its debian/rules.in parent; I should have
thought to it. :-)

Ok, so I think that I can fix this bug by ensuring that configure.in is
older that configure: I will take care of it in the postinst.

-- 
Thanks, Davide


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#328610: (no subject)

2005-09-22 Thread Jonas Genannt
Package: wnpp
Severity: wishlist

* Package name: kat
  Version : 0.6.3
  Upstream Author : Roberto Cappuccio [EMAIL PROTECTED]
and the Kat Development Team
* URL : http://kat.mandriva.com
* License : GPL
  Description : Desktop search engine

  Meta information, full text and thumbnails are extracted from documents,
  images, music and other media allowing quick and accurate information
  retrieval.
  .
  Similar to the application WhereIsIt, but also similar to Google Desktop
  Search, Kat is completely written in C++, and designed for the KDE
  desktop environment.
  .
  The application is based on the extensible plugin architecture in order
  to facilitate the creation of new media managers for emerging file
  formats.
  .
  Information retrieval relies on the powerful SQLite3 embedded database
  engine.



I will package it for Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329348: [Pkg-nagios-devel] Bug#329348: nagios-common: trends.cgi and statusmap.cgi don't display images and can't use ssi files

2005-09-22 Thread sean finney
severity 329348 normal
tags 329348 confirmed
thanks

hi eric,

On Wed, Sep 21, 2005 at 09:27:18AM +, Eric Bollengier wrote:
 strace on trends.cgi or statusmap.cgi indicate that cgis try to
 open nagios images on /usr/share/nagios/images but they are installed on
 /usr/share/nagios/htdocs/images

 same for ssi files (/usr/share/nagios/htdocs/ssi instead of
 /usr/share/nagios/ssi)

thanks for pointing this out!  i'll be uploading a new version this
weekend and i'll be sure to include this fix.


sean


signature.asc
Description: Digital signature


Bug#329354: CAN-2005-0204 and 2.4

2005-09-22 Thread Nikos Ntarmos
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi there.

On Thu, Sep 22, 2005 at 11:30:25AM +0900, Horms wrote:
 The problem that you see is a patch that was included in 2.4.27-11
 (the current version in sid), though it isn't built for amd64.
 
 Could you see if the following patch works for you.

Yes it does. That's exactly what I also did to make it build, but I
didn't send in a patch as I wasn't sure that 4 (sizeof(u32)) is the
right factor for a 64-bit arch.

 I've CCed lkml and Marcelo for their consideration.  It seems to me
 that 2.4 is indeed vulnerable to CAN-2005-0204, perhaps someone can
 shed some light on this.

My intuition agrees with yours. However, as also stated in #329355 by
fs, the amd64 port does not support 2.4 kernels, and there are no plans
to change this, so I guess this is not-a-bug for debian/x86_64.

\n\n
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Nikos Nikolai Ntarmos [EMAIL PROTECTED]

iD8DBQFDMrgIm6J1ac+VFgoRAhbeAKCF2R6VkcHCsTYalKNnuvZeILlfMwCeMQDu
0C9BehFcgeBdor2abF+2wmo=
=Ihfo
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329445: poker-network: French debconf templates translation

2005-09-22 Thread Loic Dachary
  This file should be put as debian/po/fr.po in your package build tree.

Done. It will show in the next upload.

Many thanks.

-- 
Loic Dachary, 12 bd Magenta, 75010 Paris. Tel: 33 8 71 18 43 38
http://www.fsffrance.org/   http://www.dachary.org/loic/gpg.txt


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329114: Please don't shadow emacs-snapshot packages

2005-09-22 Thread Peter S Galbraith
Rob Browning [EMAIL PROTECTED] wrote:

 Peter S Galbraith [EMAIL PROTECTED] writes:
 
  How likely it is that we can get emacsen-common fixed?  That package has
  seen a single upload since `oldstable' (woody?)
 
 Hmm, though there was a long period with no uploads, 1.4.16 was
 uploaded in January and should be in testing and sarge.

That's the single upload I was talking about.  :-)

Rob, that's great if you can make more uploads.  Perhaps then we won't
have to worry so much about breaking things if we know stuff can be
quickly fixed.  I don't recall why the current adding to load-path
scheme had to be worked out, but it certainly seems imperfect to me.  We
must have the ability to add stuff that we either choose to override
Emacs' libraries, or not override them if they exist.  That's currently
not easy to do.

Thanks,
Peter


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329627: packages.debian.org: changelogs missing for rrdtool

2005-09-22 Thread Frank Lichtenheld
On Thu, Sep 22, 2005 at 03:25:01PM +0300, Niko Tyni wrote:
 changelogs for the stable and unstable rrdtool packages are missing from
 packages.debian.org for some reason.
 
 http://packages.debian.org/changelogs/pool/main/r/rrdtool/rrdtool_1.0.49-1/changelog
 http://packages.debian.org/changelogs/pool/main/r/rrdtool/rrdtool_1.2.11-0.4/changelog

hrm, indeed. I found the cause and will fix this asap.

thanks,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#329631: ITP: binutils-msp430 -- Binutils files for the Texas Instruments MSP430 family of microprocessors

2005-09-22 Thread Christoph Berg
Re: Tom Parker in [EMAIL PROTECTED]
 I've made
 preliminary versions of this package available at http://tevp.net/debian/ and
 intend to search for a sponsor.

There are no source packages.

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#329632: libnet-libidn-perl: New upstream release

2005-09-22 Thread Thomas Jacob
On Thu, 2005-09-22 at 15:02 +0200, Florian Ragwitz wrote:
 Package: libnet-libidn-perl
 Severity: wishlist
 
 Hello,
 
 0.08 is on CPAN. Please update your package.

Version 0.08 only  adds support for compiling on systems
that do not have gcc, hence there isn't much point for a new
Debian package.

And what's more, I can't upload packages myself, not
being a Debian developer yet. Somebody uploaded the
package for me.

So there...


signature.asc
Description: This is a digitally signed message part


Bug#329637: libnet-rawip-perl: New upstream release

2005-09-22 Thread Christian Hammers
Hello Florian

On 2005-09-22 Florian Ragwitz wrote:
 0.2 is on CPAN. Please update your package.

Have problems building it. If you would like to help me, just try
it with the latest gcc-4.0 from unstable. I get:

 RawIP.xs:863: warning: pointer targets in passing argument 2 of 'Perl_newSVpv' 
differ in signedness
 RawIP.xs: In function 'XS_Net__RawIP_udp_pkt_parse':
 RawIP.xs:893: warning: pointer targets in passing argument 2 of 'Perl_newSVpv' 
differ in signedness
 RawIP.xs:895: error: invalid lvalue in assignment
 RawIP.xs:901: warning: pointer targets in passing argument 2 of 'Perl_newSVpv' 
differ in signedness


bye,

-christian-



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#90511: good n stiff

2005-09-22 Thread Florence Matos
hard as a rock
http://mknudsenlc.365city.info


I always wanted to be somebody, but I should have been more specific


dont want get it up buddy
http://rcoerciblevr.365city.info/r/





not a problem, talk to you later


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#101647: [Auto-Reply] drugstore site with the cheapestcosts

2005-09-22 Thread Leon Beck
Hear me homy

You'll never guess what happened to me last Wensday .

Basically found onlinepharm site with the mostcheapdeals.

Since then I got harder and last longer.

you should experience it yourself, dedicated to privacy and security.

MORE HERE :   http://dull.orderdrugsonlinenow.com

call me asap :


S*t.o'p : http://serge.orderdrugsonlinenow.com/nomorestuff.php 




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



  1   2   3   4   5   6   >