[SCM] Packaging for lierolibre branch, master, updated. upstream/0.4-47-gff75bfe
Martin Erik Werner
martinerikwerner at gmail.com
Wed Sep 26 05:31:25 UTC 2012
The following commit has been merged in the master branch:
commit fa06bf3345aa24f7f9f27a224b50c0252dfa1165
Author: Martin Erik Werner <martinerikwerner at gmail.com>
Date: Sat Jun 23 15:26:14 2012 +0200
Add patch, fixes build-twice in Debian
diff --git a/debian/changelog b/debian/changelog
index 65894c6..79da4cd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
lierolibre (0.4-1) unstable; urgency=low
* Initial release (Closes: #648681)
+ * Added debian/patches/fix-configure-creating-files-from-messages.patch
-- Martin Erik Werner <martinerikwerner at gmail.com> Wed, 02 May 2012 20:50:40 +0200
diff --git a/debian/patches/fix-configure-creating-files-from-messages.patch b/debian/patches/fix-configure-creating-files-from-messages.patch
new file mode 100644
index 0000000..b225fa9
--- /dev/null
+++ b/debian/patches/fix-configure-creating-files-from-messages.patch
@@ -0,0 +1,60 @@
+From 7e9180a936d497e5bd2f8b5d11bebd90f33f793d Mon Sep 17 00:00:00 2001
+From: Martin Erik Werner <martinerikwerner at gmail.com>
+Date: Sat, 23 Jun 2012 14:15:41 +0200
+Subject: [PATCH] Fix configure creating files from messages
+
+Add [] quoting to all messages in order to avoid "," being
+interpreted as a separator and causing creation of files
+---
+ configure.ac | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+Origin: upstream, https://gitorious.org/lierolibre/lierolibre/commit/7e9180a936d497e5bd2f8b5d11bebd90f33f793d
+
+diff --git a/configure.ac b/configure.ac
+index 975557a..09faded 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -23,7 +23,7 @@ AC_PROG_MAKE_SET
+
+ AC_CHECK_PROG(HAS_SOX, sox, yes)
+ if test x"$HAS_SOX" != x"yes" ; then
+- AC_MSG_WARN(SoX not found, you will need this to build the sound data!)
++ AC_MSG_WARN([SoX not found, you will need this to build the sound data!])
+ fi
+
+ AC_CHECK_PROG(HAS_IM, convert, yes)
+@@ -36,7 +36,7 @@ BOOST_PO_LIBS=""
+ AC_LANG_PUSH([C++])
+ AC_CHECK_HEADER([boost/program_options.hpp],
+ [BOOST_PO_LIBS="-lboost_program_options"],
+- [AC_MSG_WARN(boost_program_options header not found, you will need this to compile lierolibre!)])
++ [AC_MSG_WARN([boost_program_options header not found, you will need this to compile lierolibre!])])
+ AC_LANG_POP([C++])
+ AC_SUBST(BOOST_PO_LIBS)
+
+@@ -60,10 +60,10 @@ PKG_CHECK_MODULES([SDL_MIXER], [SDL_mixer],
+ AS_IF([test "x$pkgcSDLM" = "xno"], [
+ AC_CHECK_HEADERS([SDL/SDL_mixer.h],
+ [SDL_MIXER_CFLAGS="-D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/SDL"],
+- [AC_MSG_WARN(SDL_mixer headers not found, you will need this to compile lierolibre!)])
++ [AC_MSG_WARN([SDL_mixer headers not found, you will need this to compile lierolibre!])])
+ AC_CHECK_LIB(SDL_mixer, Mix_OpenAudio,
+ [SDL_MIXER_LIBS="-lSDL_mixer -lSDL"],
+- [AC_MSG_WARN(SDL_mixer library not found, you will need this to link lierolibre!)])
++ [AC_MSG_WARN([SDL_mixer library not found, you will need this to link lierolibre!])])
+ ])
+
+ PKG_CHECK_MODULES([ZLIB], [zlib])
+@@ -88,7 +88,7 @@ AC_CHECK_HEADERS([arpa/inet.h fcntl.h fenv.h float.h limits.h malloc.h netdb.h n
+ AC_LANG_PUSH([C++])
+ AC_CHECK_HEADERS([tut/tut.hpp tut/tut_reporter.hpp tut/tut_restartable.hpp],
+ [],
+- [AC_MSG_NOTICE(libtut headers not found, you will need these to compile gvltest)])
++ [AC_MSG_NOTICE([libtut headers not found, you will need these to compile gvltest])])
+ AC_LANG_POP([C++])
+
+ # Checks for typedefs, structures, and compiler characteristics.
+--
+1.7.10
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..7d07889
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix-configure-creating-files-from-messages.patch
--
Packaging for lierolibre
More information about the Pkg-games-commits
mailing list