Your message dated Mon, 31 Mar 2014 09:34:52 +0000
with message-id <e1wuycg-00076s...@franck.debian.org>
and subject line Bug#738073: fixed in fenix 0.92a.dfsg1-10
has caused the Debian Bug report #738073,
regarding fenix: Please link against libgif
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
738073: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738073
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fenix
Version: 0.92a.dfsg1-9
Severity: important
Tags: patch

Dear Maintainer,
your package links against libungif, which got removed in 2005.

While giflib provided symlinks to ease transition, it is now time
to get rid of those, also in preparation for api changes made
upstream in giflib.

Attached is a patch which makes the necessary changes.

Best regards,

Thibaut
diff --git a/debian/patches/libgif.patch b/debian/patches/libgif.patch
new file mode 100644
--- /dev/null
+++ b/debian/patches/libgif.patch
@@ -0,0 +1,136 @@
+Description: Link against libgif
+---
+Origin: other
+Bug-Debian: http://bugs.debian.org/
+Forwarded: no
+Last-Update: <2013-12-18>
+
+--- fenix-0.92a.dfsg1.orig/configure.in
++++ fenix-0.92a.dfsg1/configure.in
+@@ -115,7 +115,7 @@ fi
+ 
+ dnl para map
+ if test "$map" = yes; then
+-	AC_CHECK_LIB(ungif,DGifOpenFileName,LIBS="$LIBS",AC_MSG_ERROR(lungif library not found))
++	AC_CHECK_LIB(gif,DGifOpenFileName,LIBS="$LIBS",AC_MSG_ERROR(libgif library not found))
+ fi
+ 
+ dnl make these visible to all Makefiles
+
+--- fenix-0.92a.dfsg1.orig/configure
++++ fenix-0.92a.dfsg1/configure
+@@ -4454,13 +4454,13 @@ fi
+ fi
+ 
+ if test "$map" = yes; then
+-	echo "$as_me:$LINENO: checking for DGifOpenFileName in -lungif" >&5
+-echo $ECHO_N "checking for DGifOpenFileName in -lungif... $ECHO_C" >&6
+-if test "${ac_cv_lib_ungif_DGifOpenFileName+set}" = set; then
++	echo "$as_me:$LINENO: checking for DGifOpenFileName in -lgif" >&5
++echo $ECHO_N "checking for DGifOpenFileName in -lgif... $ECHO_C" >&6
++if test "${ac_cv_lib_gif_DGifOpenFileName+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lungif  $LIBS"
++LIBS="-lgif  $LIBS"
+ cat >conftest.$ac_ext <<_ACEOF
+ #line $LINENO "configure"
+ /* confdefs.h.  */
+@@ -4496,23 +4496,23 @@ if { (eval echo "$as_me:$LINENO: \"$ac_l
+   ac_status=$?
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+-  ac_cv_lib_ungif_DGifOpenFileName=yes
++  ac_cv_lib_gif_DGifOpenFileName=yes
+ else
+   echo "$as_me: failed program was:" >&5
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-ac_cv_lib_ungif_DGifOpenFileName=no
++ac_cv_lib_gif_DGifOpenFileName=no
+ fi
+ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+ LIBS=$ac_check_lib_save_LIBS
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_ungif_DGifOpenFileName" >&5
+-echo "${ECHO_T}$ac_cv_lib_ungif_DGifOpenFileName" >&6
+-if test $ac_cv_lib_ungif_DGifOpenFileName = yes; then
++echo "$as_me:$LINENO: result: $ac_cv_lib_gif_DGifOpenFileName" >&5
++echo "${ECHO_T}$ac_cv_lib_gif_DGifOpenFileName" >&6
++if test $ac_cv_lib_gif_DGifOpenFileName = yes; then
+   LIBS="$LIBS"
+ else
+-  { { echo "$as_me:$LINENO: error: lungif library not found" >&5
+-echo "$as_me: error: lungif library not found" >&2;}
++  { { echo "$as_me:$LINENO: error: lgif library not found" >&5
++echo "$as_me: error: lgif library not found" >&2;}
+    { (exit 1); exit 1; }; }
+ fi
+ 
+--- fenix-0.92a.dfsg1.orig/fpg/Makefile.am
++++ fenix-0.92a.dfsg1/fpg/Makefile.am
+@@ -5,7 +5,7 @@ bin_PROGRAMS=fpg
+ 
+ INCLUDES = $(COMMON_CFLAGS)
+ 
+-fpg_LDADD=$(COMMON_LIBS) -lz  -lungif -lpng
++fpg_LDADD=$(COMMON_LIBS) -lz  -lgif -lpng
+ 
+ SOURCE_FILES=fpg.c
+ 
+--- fenix-0.92a.dfsg1.orig/map/Makefile.am
++++ fenix-0.92a.dfsg1/map/Makefile.am
+@@ -5,7 +5,7 @@ bin_PROGRAMS=map
+ 
+ INCLUDES = $(COMMON_CFLAGS)
+ 
+-map_LDADD=$(COMMON_LIBS) -lz  -lungif -lpng
++map_LDADD=$(COMMON_LIBS) -lz  -lgif -lpng
+ 
+ SOURCE_FILES=map.c
+ 
+--- fenix-0.92a.dfsg1.orig/fpg/Makefile
++++ fenix-0.92a.dfsg1/fpg/Makefile
+@@ -145,7 +145,7 @@ bin_PROGRAMS = fpg
+ 
+ INCLUDES = $(COMMON_CFLAGS)
+ 
+-fpg_LDADD = $(COMMON_LIBS) -lz  -lungif -lpng
++fpg_LDADD = $(COMMON_LIBS) -lz  -lgif -lpng
+ 
+ SOURCE_FILES = fpg.c
+ 
+--- fenix-0.92a.dfsg1.orig/fpg/Makefile.in
++++ fenix-0.92a.dfsg1/fpg/Makefile.in
+@@ -145,7 +145,7 @@ bin_PROGRAMS = fpg
+ 
+ INCLUDES = $(COMMON_CFLAGS)
+ 
+-fpg_LDADD = $(COMMON_LIBS) -lz  -lungif -lpng
++fpg_LDADD = $(COMMON_LIBS) -lz  -lgif -lpng
+ 
+ SOURCE_FILES = fpg.c
+ 
+--- fenix-0.92a.dfsg1.orig/map/Makefile
++++ fenix-0.92a.dfsg1/map/Makefile
+@@ -145,7 +145,7 @@ bin_PROGRAMS = map
+ 
+ INCLUDES = $(COMMON_CFLAGS)
+ 
+-map_LDADD = $(COMMON_LIBS) -lz  -lungif -lpng
++map_LDADD = $(COMMON_LIBS) -lz  -lgif -lpng
+ 
+ SOURCE_FILES = map.c
+ 
+--- fenix-0.92a.dfsg1.orig/map/Makefile.in
++++ fenix-0.92a.dfsg1/map/Makefile.in
+@@ -145,7 +145,7 @@ bin_PROGRAMS = map
+ 
+ INCLUDES = $(COMMON_CFLAGS)
+ 
+-map_LDADD = $(COMMON_LIBS) -lz  -lungif -lpng
++map_LDADD = $(COMMON_LIBS) -lz  -lgif -lpng
+ 
+ SOURCE_FILES = map.c
+ 
diff --git a/debian/patches/series b/debian/patches/series
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -26,3 +26,4 @@ spelling.patch
 headers.patch
 kfreebsd.patch
 no_--as-needed_in_fxi-src-Makefile.patch
+libgif.patch

--- End Message ---
--- Begin Message ---
Source: fenix
Source-Version: 0.92a.dfsg1-10

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

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 738...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vincent Cheng <vch...@debian.org> (supplier of updated fenix 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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 30 Mar 2014 23:49:50 -0700
Source: fenix
Binary: fenix fenix-dev
Architecture: source i386 all
Version: 0.92a.dfsg1-10
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team <pkg-games-de...@lists.alioth.debian.org>
Changed-By: Vincent Cheng <vch...@debian.org>
Description: 
 fenix      - development environment for making 2D games
 fenix-dev  - development environment for making 2D games - header files
Closes: 649548 662322 712272 726130 732787 738073
Changes: 
 fenix (0.92a.dfsg1-10) unstable; urgency=low
 .
   * Team upload.
 .
   [ Evgeni Golov ]
   * Correct Vcs-* URLs to point to anonscm.debian.org (Closes: #712272)
 .
   [ Vincent Cheng ]
   * Fix FTBFS by linking against libgif. (Closes: #732787, #738073)
     (LP: #1277593)
   * Build-depend on libpng-dev instead of libpng12-dev. (Closes: #662322)
   * Add debian/patches/fix_ftbfs_libpng1.5.patch to fix FTBFS against
     libpng 1.5. (Closes: #649548)
   * Build for mipsn32 mipsn32el. (Closes: #726130)
   * Update to Standards version 3.9.5.
Checksums-Sha1: 
 2becc35d1245836b1d2f3128f21dc388f79fc3c5 2316 fenix_0.92a.dfsg1-10.dsc
 5b09b39b1048c18fae81c56143693b7c9d7c0e1e 140011 
fenix_0.92a.dfsg1-10.debian.tar.bz2
 fb5baa6ff6ae7fa723cf90abdbf8069509a1e526 260296 fenix_0.92a.dfsg1-10_i386.deb
 bb3fb10e17447d20e725ac434adda8af54ebb2da 32498 fenix-dev_0.92a.dfsg1-10_all.deb
Checksums-Sha256: 
 ee4ad62eae00c5b1965d7efac72bf24124840f047c5e0028723eb754a229e510 2316 
fenix_0.92a.dfsg1-10.dsc
 20bf6ad037c628446f657559f7addefea8c6b476d31c2d2fb6e7674a6401be9c 140011 
fenix_0.92a.dfsg1-10.debian.tar.bz2
 f604fd6ee7ff102f0fbbf0007e2b8b952d81ceb8bebb01c0918e60358838e38a 260296 
fenix_0.92a.dfsg1-10_i386.deb
 af3d14c16494e5ff74ea9e24415decdfca88440515ce5566c922fa07ec8ac3e9 32498 
fenix-dev_0.92a.dfsg1-10_all.deb
Files: 
 62caf5c60b656fb08e1621df841f15a1 2316 devel extra fenix_0.92a.dfsg1-10.dsc
 080d1b28775b8626618124429be3d922 140011 devel extra 
fenix_0.92a.dfsg1-10.debian.tar.bz2
 bf3467f97e33ef766ee7d7c28f0d7649 260296 devel extra 
fenix_0.92a.dfsg1-10_i386.deb
 46801d2f2e8d1d621182d25a39f17399 32498 devel extra 
fenix-dev_0.92a.dfsg1-10_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJTOR1BAAoJEI7tzBuqHzL/CtEP/3TcwjUvwFDfXhz/LtAxgvlF
xfc85JBJJrp7Q2pQqZmesblSVVwIxg54XvfQJTy5wUQvJ4uJx29Xk/51pHGlJ1DW
U0dX2Bd/WFTLW6Ub02vZwRdxjuljhV8l+BQmk7xBOwZyAqz406qKt4DAeDmH+Jkn
skkMEeVAfaAAB3+xB7rvbbF5e8d3Nk0g1V8VYC8lMN8l6xiuYcrjsfMt++lHk02v
aoK4ADAqAiO9r//mPZHB1hXQ/bxEzZ2EZWgXWzmX1m4NW4rqSRY4MJQjXaJA3eB/
cWqYhXZrpiXp11bJHRJ3K7joYYNnPs+CipPwGpfW1h44fmV9bvgWY9LXekl9f6Rd
ViTc8AHDJaSqZy+uBMqeobsnaTAnTMogO1jSJfLqR4B8N/a8DqXmMh0/XuBUW31c
Sz6JjoDawNViMy11pRMdPqbfYsBY5+ijeTSRljzdnn+uyheQ/IgsMvRcWFh/QXax
0tbYCBdlS2EOMoWb0iExn8HdxV3KABmMkc1iN+taTY0uSaMknegVMvX00ijXJRpR
z6DU6PISiLWZTPKPabOTBhSXYSWMPAQmqtuCqOHBEzDRnlXjN5jFAzJnt5lsBlES
AMKmtouYy4q0Q3gQ1cCcM4QX2gUld5+BuwEj/3bLzUg+Vfw+7EZ2vmN8Uf5Zy1uJ
9CTMHjfrer7bdI2rchIH
=ZuIs
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to