Package: libsdl-ttf2.0-dev Version: 2.0.9-1 Severity: normal Tags: patch
Hi, I sent the attached patch to SDL_ttf 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-ttf2.0-dev depends on: ii libc6-dev [libc-dev] 2.7-16 GNU C Library: Development Librari ii libfreetype6-dev 2.3.7-2 FreeType 2 font engine, developmen ii libsdl-ttf2.0-0 2.0.9-1 ttf library for Simple DirectMedia ii libsdl1.2-dev 1.2.13-4 Simple DirectMedia Layer developme libsdl-ttf2.0-dev recommends no packages. libsdl-ttf2.0-dev suggests no packages. -- no debconf information
--- configure.in_ORIG 2009-02-08 01:47:51.000000000 +0100 +++ configure.in 2009-02-08 02:10:52.000000000 +0100 @@ -126,6 +126,7 @@ dnl Check for SDL SDL_VERSION=1.2.4 +AC_SUBST(SDL_VERSION) AM_PATH_SDL($SDL_VERSION, :, AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) @@ -189,4 +190,5 @@ AC_OUTPUT([ Makefile SDL_ttf.spec +SDL_ttf.pc ]) --- Makefile.am_ORIG 2009-02-08 01:48:38.000000000 +0100 +++ Makefile.am 2009-02-08 01:50:41.000000000 +0100 @@ -34,6 +34,9 @@ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) endif +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = SDL_ttf.pc + %.o : %.rc $(WINDRES) $< $@ --- SDL_ttf.pc.in_ORIG 2009-02-08 01:47:43.000000000 +0100 +++ SDL_ttf.pc.in 2009-02-08 02:08:40.000000000 +0100 @@ -0,0 +1,12 @@ +pref...@prefix@ +exec_pref...@exec_prefix@ +libd...@libdir@ +included...@includedir@ + +Name: SDL_ttf +Description: ttf library for Simple DirectMedia Layer with FreeType 2 support +Version: @VERSION@ +Requires: sdl >= @SDL_VERSION@ +Libs: -L${libdir} -lSDL_ttf +Cflags: -I${includedir}/SDL +