Bug#320962: marked as done (FTBFS on GNU/kFreeBSD)

Debian Bug Tracking System owner at bugs.debian.org
Tue Nov 29 09:03:09 UTC 2005


Your message dated Tue, 29 Nov 2005 06:53:16 -0200
with message-id <1133254396.5109.1.camel at localhost.localdomain>
and subject line [Fwd: Fixed in upload of gnome-applets 2.12.1-2 to experimental]
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; 2 Aug 2005 13:32:57 +0000
>From aurel32 at debian.org Tue Aug 02 06:32:57 2005
Return-path: <aurel32 at debian.org>
Received: from farad.aurel32.net [82.232.2.251] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1Dzwt6-0007Cf-00; Tue, 02 Aug 2005 06:32:56 -0700
Received: from hertz.aurel32.net ([2001:618:400:fc13:2e0:18ff:fea3:b80f])
	by farad.aurel32.net with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
	(Exim 4.50)
	id 1Dzwt5-00089d-Fq; Tue, 02 Aug 2005 15:32:55 +0200
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.52)
	id 1DzwtC-000BRw-Ug; Tue, 02 Aug 2005 15:33:02 +0200
Content-Type: multipart/mixed; boundary="===============1914645353=="
MIME-Version: 1.0
From: Aurelien Jarno <aurel32 at debian.org>
To: Debian Bug Tracking System <submit at bugs.debian.org>
Subject: FTBFS on GNU/kFreeBSD
X-Mailer: reportbug 3.15
Date: Tue, 02 Aug 2005 15:33:02 +0200
Message-Id: <E1DzwtC-000BRw-Ug at hertz.aurel32.net>
Delivered-To: submit at bugs.debian.org
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-Level: 
X-Spam-Status: No, hits=-6.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
	HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============1914645353==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: gnome-applets
Version: 2.10.1-5
Severity: important
Tags: patch

Hi,

For a few days, we are building packages with the binary-all files on
GNU/kFreeBSD. I have found that gnome-applets fails to build from source
on this platform due to the fact battstat is not build (and this it
could not find the sound files).

Please find attached a patch that enable battstat on GNU/kFreeBSD. It
would be nice if it could be added in the next upload. Also could you
please forward it to the upstream?

Thanks for your cooperation,
Aurelien


-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.3-17
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

--===============1914645353==
Content-Type: text/x-c; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="gnome-applets_2.10.1-5.patch"

--- gnome-applets-2.10.1.orig/debian/patches/10_kfreebsd.patch
+++ gnome-applets-2.10.1/debian/patches/10_kfreebsd.patch
@@ -0,0 +1,44 @@
+--- configure.in.orig
++++ configure.in
+@@ -250,7 +250,7 @@
+ 	   AC_CHECK_LIB(apm,apm_read,[HAVE_LIBAPM=yes],[HAVE_LIBAPM=no])
+ 	   ;;
+        # list of supported OS cores that do not use libapm
+-       *-*-freebsd*|*-*-netbsd*|*-*-openbsd*)
++       *-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu)
+ 	   ;;
+        *)
+ 	   echo "warning: ${host} is not supported by battstat_applet, not building" >&2
+--- configure.orig
++++ configure
+@@ -24989,7 +24989,7 @@
+ 
+ 	   ;;
+        # list of supported OS cores that do not use libapm
+-       *-*-freebsd*|*-*-netbsd*|*-*-openbsd*)
++       *-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*-kfreebsd*-gnu)
+ 	   ;;
+        *)
+ 	   echo "warning: ${host} is not supported by battstat_applet, not building" >&2
+--- battstat.orig/properties.c
++++ battstat/properties.c
+@@ -27,7 +27,7 @@
+ 
+ #include <stdio.h>
+ 
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ #include <machine/apm_bios.h>
+ #elif defined(__NetBSD__) || defined(__OpenBSD__)
+ #include <sys/param.h>
+--- battstat.orig/power-management.c
++++ battstat/power-management.c
+@@ -73,7 +73,7 @@
+  * the problem might be.  This error message is not to be freed.
+  */
+ 
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ 
+ #include <machine/apm_bios.h>
+ 

--===============1914645353==--

---------------------------------------
Received: (at 320962-done) by bugs.debian.org; 29 Nov 2005 08:53:20 +0000
>From guilherme.pastore at terra.com.br Tue Nov 29 00:53:20 2005
Return-path: <guilherme.pastore at terra.com.br>
Received: from linares.terra.com.br ([200.176.10.195])
	by spohr.debian.org with esmtp (Exim 4.50)
	id 1Eh1Em-0005iQ-5s; Tue, 29 Nov 2005 00:53:20 -0800
Received: from mubende.terra.com.br (mubende.terra.com.br [200.176.10.8])
	by linares.terra.com.br (Postfix) with ESMTP id E514C4DC003;
	Tue, 29 Nov 2005 06:53:17 -0200 (BRST)
X-Terra-Karma: -2%
X-Terra-Hash: c267e70a9601b0c0a66a294e27bcdc75
Received-SPF: pass (mubende.terra.com.br: domain of terra.com.br designates 200.176.10.8 as permitted sender) client-ip=200.176.10.8; envelope-from=guilherme.pastore at terra.com.br; helo=[192.168.1.3];
Received: from [192.168.1.3] (c9066ade.virtua.com.br [201.6.106.222])
	(authenticated user guilherme.pastore)
	by mubende.terra.com.br (Postfix) with ESMTP id 3241D248046;
	Tue, 29 Nov 2005 06:53:16 -0200 (BRST)
Subject: [Fwd: Fixed in upload of gnome-applets 2.12.1-2 to experimental]
From: "Guilherme de S. Pastore" <guilherme.pastore at terra.com.br>
To: 320962-done at bugs.debian.org, 339912-done at bugs.debian.org
Content-Type: text/plain
Date: Tue, 29 Nov 2005 06:53:16 -0200
Message-Id: <1133254396.5109.1.camel at localhost.localdomain>
Mime-Version: 1.0
X-Mailer: Evolution 2.4.1 
Content-Transfer-Encoding: 7bit
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-Level: 
X-Spam-Status: No, hits=-2.5 required=4.0 tests=BAYES_00,RCVD_IN_SORBS 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu, 17 Nov 2005 14:23:57 -0200
Source: gnome-applets
Binary: gnome-applets-data gnome-applets-dbg gnome-applets gnome-applets-dev
Architecture: source i386 all
Version: 2.12.1-2
Distribution: experimental
Urgency: low
Maintainer: Guilherme de S. Pastore <guilherme.pastore at terra.com.br>
Changed-By: Guilherme de S. Pastore <guilherme.pastore at terra.com.br>
Description: 
 gnome-applets - Various applets for GNOME 2 panel - binary files
 gnome-applets-data - Various applets for GNOME 2 panel - data files
 gnome-applets-dbg - Various applets for GNOME 2 panel - binary files with debugging s
 gnome-applets-dev - Various applets for GNOME 2 panel - development files
Closes: 320962 339912
Changes: 
 gnome-applets (2.12.1-2) experimental; urgency=low
 .
   * debian/control.in:
     - eliminated circular dependency by removing the dependency of
       gnome-applets-data on gnome-applets (Closes: #339912)
   * debian/patches/10_kfreebsd.patch:
     - apply patch from Aurelien Jarno <aurel32 at debian.org> to allow
       build on kfreebsd-gnu. Thanks! (Closes: #320962)
   * debian/po/pt_BR.po: updated/fixed.
Files: 
 fcb4fb5c9ad37dad2ab232b7173d4be6 2395 gnome optional gnome-applets_2.12.1-2.dsc
 cf0a0982b2fb795098bfee1f19845ae2 22284 gnome optional gnome-applets_2.12.1-2.diff.gz
 9d3259e6e4a5f5e8b1e120d10250ebba 6892372 gnome optional gnome-applets-data_2.12.1-2_all.deb
 97c4b9229e3d7072a8324eac5f1aab0f 402764 gnome optional gnome-applets_2.12.1-2_i386.deb
 5b89d60b6f71d391ccdc7663ccf12341 857932 gnome extra gnome-applets-dbg_2.12.1-2_i386.deb
 8b8697b42987b8c5ee3803d6df17fed4 92936 gnome optional gnome-applets-dev_2.12.1-2_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDi7f4t1anjIgqbEsRAjbgAJ48IRYkU7gK+M3W1DRhTAXlBfXBmACeMMoB
lSRP6oXJpcoYR9V8Uzx96Lo=
=OT0r
-----END PGP SIGNATURE-----





More information about the Pkg-gnome-maintainers mailing list