Your message dated Sun, 06 Feb 2005 12:47:18 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#249481: fixed in libgtk-perl 0.7009-2
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 17 May 2004 18:15:58 +0000
>From [EMAIL PROTECTED] Mon May 17 11:15:58 2004
Return-path: <[EMAIL PROTECTED]>
Received: from mx5.informatik.uni-tuebingen.de [134.2.12.32]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BPmeb-0002Q5-00; Mon, 17 May 2004 11:15:57 -0700
Received: from localhost (loopback [127.0.0.1])
by mx5.informatik.uni-tuebingen.de (Postfix) with ESMTP
id 110F9117; Mon, 17 May 2004 20:15:26 +0200 (MST)
Received: from mx3.informatik.uni-tuebingen.de ([134.2.12.26])
by localhost (mx5 [134.2.12.32]) (amavisd-new, port 10024) with ESMTP
id 14694-03; Mon, 17 May 2004 20:15:24 +0200 (DFT)
Received: from dual (semeai [134.2.15.66])
by mx3.informatik.uni-tuebingen.de (Postfix) with ESMTP
id 9858F14A; Mon, 17 May 2004 20:15:21 +0200 (MST)
Received: from mrvn by dual with local (Exim 3.36 #1 (Debian))
id 1BPmdX-0003Ag-00; Mon, 17 May 2004 20:14:51 +0200
Content-Type: multipart/mixed; boundary="===============1729371179=="
MIME-Version: 1.0
From: Goswin Brederlow <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: FTBFS: gtktypexp.c:1:30: gtk/gtktypeutils.h: No such file or directory
X-Mailer: reportbug 2.56
Date: Mon, 17 May 2004 20:14:45 +0200
Message-Id: <[EMAIL PROTECTED]>
Sender: Goswin von Brederlow <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new (McAfee AntiVirus) at
informatik.uni-tuebingen.de
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============1729371179==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: libgtk-perl
Version: 0.7009-1
Severity: serious
Tags: patch
Justification: no longer builds from source
Several subdirs fail to compile the testcase because inc or lib are
not set. The patch below changes the Makefile.PL of the broken dirs to
the way the working ones set inc and libs. After that the package
builds fine.
MfG
Goswin
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Kernel: Linux 2.6.5-amd64
Locale: LANG=C, LC_CTYPE=de_DE
Versions of packages libgtk-perl depends on:
ii libc6 2.3.2.ds1-11 GNU C Library: Shared libraries an
ii libglib1.2 1.2.10-9 The GLib library of C routines
ii libgtk1.2 1.2.10-16 The GIMP Toolkit set of widgets fo
ii libx11-6 4.3.0-7 X Window System protocol client li
ii libxext6 4.3.0-7 X Window System miscellaneous exte
ii libxi6 4.3.0-7 X Window System Input extension li
ii perl 5.8.3-3 Larry Wall's Practical Extraction
ii perl-base [perlapi-5.8.3] 5.8.3-3 The Pathologically Eclectic Rubbis
ii xlibs 4.3.0-7 X Window System client libraries m
-- no debconf information
--===============1729371179==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="libgtk-perl_0.7009-1.0.0.1.pure64.patch"
diff -Nurd libgtk-perl-0.7009.deb/GdkPixbuf/Makefile.PL
libgtk-perl-0.7009/GdkPixbuf/Makefile.PL
--- libgtk-perl-0.7009.deb/GdkPixbuf/Makefile.PL 2003-06-17
09:47:56.000000000 +0000
+++ libgtk-perl-0.7009/GdkPixbuf/Makefile.PL 2004-05-17 17:58:10.674085437
+0000
@@ -9,8 +9,12 @@
mkdir('build', 0777);
-$gpb->set_inc (`gdk-pixbuf-config --cflags`);
-$gpb->set_libs (`gdk-pixbuf-config --libs`);
+$libs = `gdk-pixbuf-config --libs`;
+$inc = `gdk-pixbuf-config --cflags`;
+$libs =~ s/\s+/ /g;
+$inc =~ s/\s+/ /g;
+$gpb->set_inc ($inc);
+$gpb->set_libs ($libs);
$gpb->add_typemaps (cwd() . '/pkg.typemap', cwd().'/build/GdkPixbufTypemap');
$gpb->add_headers (qw( <gdk-pixbuf/gdk-pixbuf-loader.h> ));
diff -Nurd libgtk-perl-0.7009.deb/Gnome/Makefile.PL
libgtk-perl-0.7009/Gnome/Makefile.PL
--- libgtk-perl-0.7009.deb/Gnome/Makefile.PL 2003-06-17 09:47:56.000000000
+0000
+++ libgtk-perl-0.7009/Gnome/Makefile.PL 2004-05-17 17:58:10.681084260
+0000
@@ -10,8 +10,12 @@
$gnome = new ExtUtils::Depends('Gnome', 'Gtk', 'Gtk::Gdk::ImlibImage');
-$gnome->set_inc (`gnome-config --cflags gnomeui zvt`);
-$gnome->set_libs (`gnome-config --libs gnomeui zvt`);
+$libs = `gnome-config --libs gnomeui zvt`;
+$inc = `gnome-config --cflags gnomeui zvt`;
+$libs =~ s/\s+/ /g;
+$inc =~ s/\s+/ /g;
+$gnome->set_inc ($inc);
+$gnome->set_libs ($libs);
$gnome->add_typemaps (cwd() . '/pkg.typemap', cwd().'/build/GnomeTypemap');
#$gnome->add_headers (qw("GnomeDefs.h"));
diff -Nurd libgtk-perl-0.7009.deb/GnomePrint/Makefile.PL
libgtk-perl-0.7009/GnomePrint/Makefile.PL
--- libgtk-perl-0.7009.deb/GnomePrint/Makefile.PL 2003-06-17
09:47:56.000000000 +0000
+++ libgtk-perl-0.7009/GnomePrint/Makefile.PL 2004-05-17 17:58:10.687083250
+0000
@@ -13,8 +13,12 @@
mkdir('build', 0777);
-$gp->set_inc (`gnome-config --cflags print`);
-$gp->set_libs (`gnome-config --libs print`);
+$libs = `gnome-config --libs print`;
+$inc = `gnome-config --cflags print`;
+$libs =~ s/\s+/ /g;
+$inc =~ s/\s+/ /g;
+$gp->set_inc ($inc);
+$gp->set_libs ($libs);
$gp->add_typemaps (cwd() . '/pkg.typemap', cwd().'/build/GnomePrintTypemap');
diff -Nurd libgtk-perl-0.7009.deb/GtkGLArea/Makefile.PL
libgtk-perl-0.7009/GtkGLArea/Makefile.PL
--- libgtk-perl-0.7009.deb/GtkGLArea/Makefile.PL 2003-06-17
09:47:56.000000000 +0000
+++ libgtk-perl-0.7009/GtkGLArea/Makefile.PL 2004-05-17 17:58:10.730076016
+0000
@@ -10,8 +10,12 @@
$gl = new ExtUtils::Depends ('Gtk::GLArea', 'Gtk');
-$gl->set_inc (`gtk-config --cflags`);
-$libs = "-lgtkgl -lMesaGL -lMesaGLU " . `gtk-config --libs`;
+$libs = "-lgtkgl -lGL -lGLU " . `gtk-config --libs`;
+$inc = `gtk-config --cflags`;
+$libs =~ s/\s+/ /g;
+$inc =~ s/\s+/ /g;
+
+$gl->set_inc ($inc);
chomp($libs);
$nomesa = $libs;
$nomesa =~ s/Mesa//g;
diff -Nurd libgtk-perl-0.7009.deb/GtkXmHTML/Makefile.PL
libgtk-perl-0.7009/GtkXmHTML/Makefile.PL
--- libgtk-perl-0.7009.deb/GtkXmHTML/Makefile.PL 2003-06-17
09:47:56.000000000 +0000
+++ libgtk-perl-0.7009/GtkXmHTML/Makefile.PL 2004-05-17 17:58:10.731075848
+0000
@@ -10,8 +10,12 @@
mkdir('build', 0777);
-$xm->set_inc (`gnome-config --cflags gnomeui`);
-$xm->set_libs (`gnome-config --libs gtkxmhtml`);
+$libs = `gnome-config --libs gtkxmhtml`;
+$inc = `gnome-config --cflags gnomeui`;
+$libs =~ s/\s+/ /g;
+$inc =~ s/\s+/ /g;
+$xm->set_inc ($inc);
+$xm->set_libs ($libs);
$xm->add_typemaps (cwd() . '/pkg.typemap', cwd().'/build/GtkXmHTMLTypemap');
#$xm->add_headers ('"GXHTypes.h"'); #, 'build/GtkXmHTMLDefs.h');
diff -Nurd libgtk-perl-0.7009.deb/debian/changelog
libgtk-perl-0.7009/debian/changelog
--- libgtk-perl-0.7009.deb/debian/changelog 2004-05-17 17:57:56.684439342
+0000
+++ libgtk-perl-0.7009/debian/changelog 2004-05-17 17:58:10.732075680 +0000
@@ -1,3 +1,9 @@
+libgtk-perl (0.7009-1.0.0.1.pure64) unstable; urgency=low
+
+ * Fix lots of Makefile.PL errors
+
+ -- Goswin von Brederlow <[EMAIL PROTECTED]> Mon, 17 May 2004 19:49:05 +0200
+
libgtk-perl (0.7009-1) unstable; urgency=low
* New upstream release
--===============1729371179==--
---------------------------------------
Received: (at 249481-close) by bugs.debian.org; 6 Feb 2005 17:53:02 +0000
>From [EMAIL PROTECTED] Sun Feb 06 09:53:02 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Cxqak-0007PI-00; Sun, 06 Feb 2005 09:53:02 -0800
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1CxqVC-0000s8-00; Sun, 06 Feb 2005 12:47:18 -0500
From: Frank Lichtenheld <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#249481: fixed in libgtk-perl 0.7009-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 06 Feb 2005 12:47:18 -0500
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: libgtk-perl
Source-Version: 0.7009-2
We believe that the bug you reported is fixed in the latest version of
libgtk-perl, which is due to be installed in the Debian FTP archive:
libgladexml-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgladexml-perl_0.7009-2_i386.deb
libgnome-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgnome-perl_0.7009-2_i386.deb
libgnome-print-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgnome-print-perl_0.7009-2_i386.deb
libgtk-imlib-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgtk-imlib-perl_0.7009-2_i386.deb
libgtk-perl_0.7009-2.diff.gz
to pool/main/libg/libgtk-perl/libgtk-perl_0.7009-2.diff.gz
libgtk-perl_0.7009-2.dsc
to pool/main/libg/libgtk-perl/libgtk-perl_0.7009-2.dsc
libgtk-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgtk-perl_0.7009-2_i386.deb
libgtk-pixbuf-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgtk-pixbuf-perl_0.7009-2_i386.deb
libgtkglarea-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgtkglarea-perl_0.7009-2_i386.deb
libgtkxmhtml-perl_0.7009-2_i386.deb
to pool/main/libg/libgtk-perl/libgtkxmhtml-perl_0.7009-2_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Frank Lichtenheld <[EMAIL PROTECTED]> (supplier of updated libgtk-perl package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sun, 6 Feb 2005 17:27:23 +0100
Source: libgtk-perl
Binary: libgnome-perl libgtk-pixbuf-perl libgtk-imlib-perl libgladexml-perl
libgtk-perl libgnome-print-perl libgtkglarea-perl libgtkxmhtml-perl
Architecture: source i386
Version: 0.7009-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[EMAIL PROTECTED]>
Changed-By: Frank Lichtenheld <[EMAIL PROTECTED]>
Description:
libgladexml-perl - Perl module for the libglade library
libgnome-perl - Perl module for the gnome and zvt libraries
libgnome-print-perl - Perl module for the gnome print library
libgtk-imlib-perl - Perl module for the gdkimlib library
libgtk-perl - Perl module for the gtk+ library
libgtk-pixbuf-perl - Perl module for the gdkpixbuf library
libgtkglarea-perl - Perl module for the gtkglarea library
libgtkxmhtml-perl - Perl module for the libgtkxmhtml library
Closes: 249481
Changes:
libgtk-perl (0.7009-2) unstable; urgency=low
.
* QA Upload
* Change maintainer to QA Group
* Add download location in copyright file
* MAke build-depends a single line field again
* Acknowledge NMU (Closes: #249481)
Files:
d7beba97b96505ab38097dede66e456f 989 perl optional libgtk-perl_0.7009-2.dsc
96cef8cde179fe3e642cd948e8d8ae0f 9202 perl optional
libgtk-perl_0.7009-2.diff.gz
f31b8e08ff457c0efb48e167714b59ce 801154 perl optional
libgtk-perl_0.7009-2_i386.deb
812c94b098a505e63ef6ae839e4bccac 58042 perl optional
libgtk-imlib-perl_0.7009-2_i386.deb
0549ce529485e1ef5acfe770f4d25174 54956 perl optional
libgtk-pixbuf-perl_0.7009-2_i386.deb
f297d8b9ceefe047eeec9cd0f6e6303c 268612 perl optional
libgnome-perl_0.7009-2_i386.deb
f10dc4c49ccd60c8eb2cdaf696d891e1 82882 perl optional
libgnome-print-perl_0.7009-2_i386.deb
fef064e7bc9a814327cfcedd619d1348 47892 perl optional
libgtkglarea-perl_0.7009-2_i386.deb
42955939d891d300ca4d7678ae05d079 48710 perl optional
libgladexml-perl_0.7009-2_i386.deb
0e9e9520916e8f60caadd3d3f9117acd 46508 perl optional
libgtkxmhtml-perl_0.7009-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQFCBlKYQbn06FtxPfARAvliAKC/a8X/86FlNP0EwQDB4bSbmAvLxACg7m+d
sFuKT3ZvpzGTjtAbPmM1Kfk=
=AGWM
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]