Your message dated Sun, 16 Oct 2005 09:17:30 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#319954: fixed in sdlgfx 2.0.9-5
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; 25 Jul 2005 22:18:54 +0000
>From [EMAIL PROTECTED] Mon Jul 25 15:18:54 2005
Return-path: <[EMAIL PROTECTED]>
Received: from farad.aurel32.net [82.232.2.251] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1DxBHi-0005dI-00; Mon, 25 Jul 2005 15:18:54 -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 1DxBHg-0000oc-Q0; Tue, 26 Jul 2005 00:18:52 +0200
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.52)
        id 1DxBHi-000DTE-7t; Tue, 26 Jul 2005 00:18:54 +0200
Content-Type: multipart/mixed; boundary="===============0851938971=="
MIME-Version: 1.0
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: FTBFS on GNU/kFreeBSD
X-Mailer: reportbug 3.15
Date: Tue, 26 Jul 2005 00:18:54 +0200
Message-Id: <[EMAIL PROTECTED]>
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-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.

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

Package: sdlgfx
Severity: important
Tags: patch

Hello,

sdlgfx currently fails to build from sources on GNU/kFreeBSD. This is
due to the following reasons:
- config.{guess.sub} outdated
- libtool outdated

Please find attached a patch to fix that. I have patched libtool
manually, but you may prefer to update it with libtoolize. It's your 
choice!

Note that I also have changed DEB_HOST_ARCH into DEB_HOST_ARCH_CPU to
detect the i386 CPU instead of the debian i386 architecture.

Would it be possible to include this patch in the next upload of sdlgfx?

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)

--===============0851938971==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="sdlgfx_2.0.9-4.kfreebsd.patch"

diff -u sdlgfx-2.0.9/debian/rules sdlgfx-2.0.9/debian/rules
--- sdlgfx-2.0.9/debian/rules
+++ sdlgfx-2.0.9/debian/rules
@@ -6,12 +6,13 @@
 build-stamp:
        dh_testdir
 
+       cp -f /usr/share/misc/config.{guess,sub} .
        touch configure.in
        touch aclocal.m4
        touch configure
        touch `find -name Makefile.in`
 
-ifeq ($(DEB_BUILD_ARCH),i386)
+ifeq ($(DEB_HOST_ARCH_CPU),i386)
        ./configure $(confflags) --prefix=/usr --enable-mmx
 else
        ./configure $(confflags) --prefix=/usr --disable-mmx
@@ -25,6 +26,7 @@
        dh_testdir
        dh_testroot
        rm -f build-stamp
+       rm -f config.{guess,sub}
 
        -$(MAKE) distclean
 
diff -u sdlgfx-2.0.9/debian/control sdlgfx-2.0.9/debian/control
--- sdlgfx-2.0.9/debian/control
+++ sdlgfx-2.0.9/debian/control
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0), libsdl1.2-dev (>= 1.2.5-8)
+Build-Depends: debhelper (>= 4.0), libsdl1.2-dev (>= 1.2.5-8), autotools-dev
 Standards-Version: 3.6.1.1
 
 Package: libsdl-gfx1.2
only in patch2:
unchanged:
--- sdlgfx-2.0.9.orig/ltconfig
+++ sdlgfx-2.0.9/ltconfig
@@ -1361,7 +1361,7 @@
     ;;
 
   # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
-  freebsd*)
+  freebsd* | kfreebsd*-gnu)
     archive_cmds='$CC -shared -o $lib $libobjs $deplibs $linkopts'
     hardcode_libdir_flag_spec='-R$libdir'
     hardcode_direct=yes
@@ -1892,7 +1892,20 @@
 freebsd1*)
   dynamic_linker=no
   ;;
-
+
+kfreebsd*-gnu)
+  version_type=linux
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}.so$versuffix 
${libname}${release}.so$major $libname.so'
+  soname_spec='${libname}${release}.so$major'
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  deplibs_check_method=pass_all
+  dynamic_linker='GNU ld.so'
+  ;;
+ 
 freebsd*)
   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
   version_type=freebsd-$objformat

--===============0851938971==--

---------------------------------------
Received: (at 319954-close) by bugs.debian.org; 16 Oct 2005 16:24:46 +0000
>From [EMAIL PROTECTED] Sun Oct 16 09:24:45 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1ERBCU-00050x-00; Sun, 16 Oct 2005 09:17:30 -0700
From: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#319954: fixed in sdlgfx 2.0.9-5
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 16 Oct 2005 09:17:30 -0700
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-Level: 
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

Source: sdlgfx
Source-Version: 2.0.9-5

We believe that the bug you reported is fixed in the latest version of
sdlgfx, which is due to be installed in the Debian FTP archive:

libsdl-gfx1.2-dev_2.0.9-5_i386.deb
  to pool/main/s/sdlgfx/libsdl-gfx1.2-dev_2.0.9-5_i386.deb
libsdl-gfx1.2_2.0.9-5_i386.deb
  to pool/main/s/sdlgfx/libsdl-gfx1.2_2.0.9-5_i386.deb
sdlgfx_2.0.9-5.diff.gz
  to pool/main/s/sdlgfx/sdlgfx_2.0.9-5.diff.gz
sdlgfx_2.0.9-5.dsc
  to pool/main/s/sdlgfx/sdlgfx_2.0.9-5.dsc



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.
Sam Hocevar (Debian packages) <[EMAIL PROTECTED]> (supplier of updated sdlgfx 
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, 16 Oct 2005 17:47:35 +0200
Source: sdlgfx
Binary: libsdl-gfx1.2 libsdl-gfx1.2-dev
Architecture: source i386
Version: 2.0.9-5
Distribution: unstable
Urgency: low
Maintainer: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
Changed-By: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
Description: 
 libsdl-gfx1.2 - drawing and graphical effects extension for SDL
 libsdl-gfx1.2-dev - development files for SDL_gfx
Closes: 319954 320008
Changes: 
 sdlgfx (2.0.9-5) unstable; urgency=low
 .
   * Removed acinclude.m4 and reboostrapped (Closes: #319954, #320008).
   * debian/rules:
     + Moved .la file to the -dev package.
Files: 
 18204efa41b501721a5875b4c964cd6f 627 libs optional sdlgfx_2.0.9-5.dsc
 a61848e98da8933dc46526a92a0c29ca 321504 libs optional sdlgfx_2.0.9-5.diff.gz
 31a95f79d752c079a018921aefff945b 36718 libs optional 
libsdl-gfx1.2_2.0.9-5_i386.deb
 0673a86a3e23f1691b9832254816a929 374780 libdevel optional 
libsdl-gfx1.2-dev_2.0.9-5_i386.deb

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

iD8DBQFDUniYfPP1rylJn2ERAvEAAKCgeaY44GgP0FEtjUi2Nupo0t//aACgny3u
iqYy+TMxENdhPeb6VerJ7tI=
=3j+h
-----END PGP SIGNATURE-----


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

Reply via email to