Bug#515123: libsdl-image1.2-dev: pkg-config patch for SDL_image

2009-09-23 Thread Michael Koch
On Wed, Jul 29, 2009 at 05:41:28PM +0200, Michael Koch wrote:
 tag 515123 upstream
 thanks
 
 
 Marking bug as upstream bug.

I mail with upstream and he said he will create a new release in the
next 3-4 works including pkg-config support.


Cheers,
Michael



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#515123: libsdl-image1.2-dev: pkg-config patch for SDL_image

2009-07-29 Thread Michael Koch
tag 515123 upstream
thanks


Marking bug as upstream bug.


Cheers,
Michael



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#515123: libsdl-image1.2-dev: pkg-config patch for SDL_image

2009-07-22 Thread Michael Koch
severity 515123 wishlist
thanks


Hello Luca,


On Fri, Feb 13, 2009 at 07:37:16PM +0100, Luca Bigliardi wrote:
 Package: libsdl-image1.2-dev
 Version: 1.2.6-3
 Severity: normal
 Tags: patch
 
 
 Hi,
 I sent the attached patch to SDL_image upstream to add pkg-config support,
 but I haven't received any feedback and the patch is not in their svn.
 
 Please can you help me contacting the upstream ?

Thanks for the report. I contacted Sam Lantinga about it.
Lets see what he says.


Cheers,
Michael



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#515123: libsdl-image1.2-dev: pkg-config patch for SDL_image

2009-07-22 Thread Luca Bigliardi
On Wed, Jul 22, 2009 at 08:16:57AM +0200, Michael Koch wrote:


Hi Michael!

 Thanks for the report. I contacted Sam Lantinga about it.
 Lets see what he says.

Cool, thank you!

I've tried to contact him long time ago but he didn't reply.

In the meantime I've filled two bug reports in their bugzilla and written on
sdl-devel mailing list but I did not receive feedback so far.

Here is the message:
http://lists.libsdl.org/pipermail/sdl-libsdl.org/2009-July/071460.html


Thank you,

Luca




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#515123: libsdl-image1.2-dev: pkg-config patch for SDL_image

2009-02-13 Thread Luca Bigliardi
Package: libsdl-image1.2-dev
Version: 1.2.6-3
Severity: normal
Tags: patch


Hi,
I sent the attached patch to SDL_image upstream to add pkg-config support,
but I haven't received any feedback and the patch is not in their svn.

Please can you help me contacting the upstream ?

Thank you very much.

luca


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26.5
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libsdl-image1.2-dev depends on:
ii  libc6-dev  2.7-16GNU C Library: Development Librari
ii  libjpeg62-dev  6b-14 Development files for the IJG JPEG
ii  libpng12-dev   1.2.27-2  PNG library - development
ii  libsdl-image1.21.2.6-3   image loading library for Simple D
ii  libsdl1.2-dev  1.2.13-4  Simple DirectMedia Layer developme
ii  libtiff4-dev   3.8.2-11  Tag Image File Format library (TIF
ii  zlib1g-dev 1:1.2.3.3.dfsg-12 compression library - development

libsdl-image1.2-dev recommends no packages.

libsdl-image1.2-dev suggests no packages.

-- no debconf information
--- configure.in_ORIG	2009-02-08 02:42:51.0 +0100
+++ configure.in	2009-02-08 02:43:26.0 +0100
@@ -80,6 +80,7 @@
 
 dnl Check for SDL
 SDL_VERSION=1.2.10
+AC_SUBST(SDL_VERSION)
 AM_PATH_SDL($SDL_VERSION,
 :,
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
@@ -293,4 +294,5 @@
 Makefile
 SDL_image.spec
 SDL_image.qpg
+SDL_image.pc
 ])
--- Makefile.am_ORIG	2009-02-08 02:41:16.0 +0100
+++ Makefile.am	2009-02-08 02:42:11.0 +0100
@@ -49,6 +49,9 @@
 libSDL_image_la_LIBADD = $(IMG_LIBS)
 endif
 
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = SDL_image.pc
+
 %.o : %.rc
 	$(WINDRES) $ $@
 
--- SDL_image.pc.in_ORIG	2009-02-08 02:37:46.0 +0100
+++ SDL_image.pc.in	2009-02-08 02:40:35.0 +0100
@@ -0,0 +1,12 @@
+pref...@prefix@
+exec_pref...@exec_prefix@
+libd...@libdir@
+included...@includedir@
+
+Name: SDL_image
+Description: image loading library for Simple DirectMedia Layer
+Version: @VERSION@
+Requires: sdl = @SDL_VERSION@
+Libs: -L${libdir} -lSDL_image
+Cflags: -I${includedir}/SDL
+