Mailinglist Archive: opensuse-commit (1083 mails)
| < Previous | Next > |
commit gnomebaker
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Sat, 01 Sep 2007 12:55:56 +0200
- Message-id: <20070901105557.0692B678180@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package gnomebaker
checked in at Sat Sep 1 12:55:56 CEST 2007.
--------
--- GNOME/gnomebaker/gnomebaker.changes 2007-08-15 21:30:46.000000000 +0200
+++ /mounts/work_src_done/STABLE/gnomebaker/gnomebaker.changes 2007-08-31 19:23:28.537673000 +0200
@@ -1,0 +2,5 @@
+Fri Aug 31 19:22:35 CEST 2007 - abockover@xxxxxxx
+
+- Fixed BNC #302492 - g_thread_init bug and libglade bug
+
+-------------------------------------------------------------------
Old:
----
gnomebaker-autogen.patch
New:
----
gnomebaker-libglade.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnomebaker.spec ++++++
--- /var/tmp/diff_new_pack.Et5065/_old 2007-09-01 12:55:28.000000000 +0200
+++ /var/tmp/diff_new_pack.Et5065/_new 2007-09-01 12:55:28.000000000 +0200
@@ -14,12 +14,12 @@
BuildRequires: fdupes gstreamer010-devel intltool libglade2-devel libgnomeui-devel libnotify-devel scrollkeeper update-desktop-files
Summary: GNOME CD/DVD Burning Application
Version: 0.6.1
-Release: 1
+Release: 10
License: GPL v2 or later
Group: Productivity/Multimedia/CD/Record
URL: http://gnomebaker.sourceforge.net
Source: %name-%version.tar.bz2
-Patch3: gnomebaker-autogen.patch
+Patch: gnomebaker-libglade.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: %{name}-lang = %{version}
@@ -74,8 +74,9 @@
# Both nl and nl_NL resp. are present, but only first are up to date.
# There is no reason to limit these translations to one country:
rm po/nl_NL.*
-sed -i "/ALL_LINGUAS/{s/ no / /;s/ nl_NL / /;}" configure.in
-%patch3
+%patch
+grep -v no < po/LINGUAS | grep -v nl_NL > po/LINGUAS.new
+mv po/LINGUAS.new po/LINGUAS
%build
#autoconf
@@ -86,8 +87,8 @@
%else
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
%endif
-# autogen.sh does not support NOCONFIGURE:
-grep -v configure autogen.sh | sh
+intltoolize --copy --automake --force
+autoreconf -v --install --force
# FIXME: --disable-scrollkeeper is not implemented
%configure\
--enable-libnotify
@@ -115,6 +116,8 @@
%files lang -f %{name}.lang
%changelog
+* Fri Aug 31 2007 - abockover@xxxxxxx
+- Fixed BNC #302492 - g_thread_init bug and libglade bug
* Wed Aug 15 2007 - jpr@xxxxxxx
-Update to 0.6.1 (#269051)
* Fix RFE #1242645 Clearer indication of successful burn completion (actually in 0.5.1)
++++++ gnomebaker-libglade.patch ++++++
--- src/main.c 2006-08-30 19:41:15.000000000 -0400
+++ src/main.c 2007-08-31 00:29:02.000000000 -0400
@@ -50,7 +50,14 @@
main(gint argc, gchar *argv[])
{
GError *error = NULL;
- GOptionContext *context = g_option_context_new(_(" - GNOME CD/DVD burning application"));
+ GOptionContext *context;
+
+ if(!g_thread_supported()) {
+ g_thread_init(NULL);
+ }
+
+ context = g_option_context_new(_(" - GNOME CD/DVD burning application"));
+
/* add main entries */
g_option_context_add_main_entries(context, entries, GETTEXT_PACKAGE);
/* recognise gtk/gdk/gstreamer options */
--- src/Makefile.am 2006-05-05 18:54:15.000000000 -0400
+++ src/Makefile.am 2007-08-31 00:01:18.000000000 -0400
@@ -36,3 +36,5 @@
cairofillbar.c cairofillbar.h
gnomebaker_LDADD = @GNOMEBAKER_LIBS@
+gnomebaker_LDFLAGS = -export-dynamic
+
--- configure.in 2006-10-15 16:26:12.000000000 -0400
+++ configure.in 2007-08-31 00:11:42.000000000 -0400
@@ -15,7 +15,16 @@
AC_PROG_CC
AC_HEADER_STDC
AM_PATH_GLIB_2_0
-AC_PROG_INTLTOOL
+
+dnl -------------------------------------------------------------------
+dnl Language Support
+dnl -------------------------------------------------------------------
+GETTEXT_PACKAGE=gnomebaker
+AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"] ,[Gettext package name])
+AC_SUBST(GETTEXT_PACKAGE)
+AM_GLIB_GNU_GETTEXT
+IT_PROG_INTLTOOL([0.35.0])
+
dnl --------------------------------------------------------------------
dnl
@@ -41,6 +50,7 @@
glib-2.0 >= $GLIB_REQUIRED
libglade-2.0 >= $LIBGLADE_REQUIRED
libxml-2.0 >= $LIBXML_REQUIRED
+ gmodule-2.0
])
dnl ---------------------------------------------------------------------------
@@ -123,18 +133,6 @@
GNOMEBAKER_CFLAGS="$GNOMEBAKER_CFLAGS $GSTREAMER_CFLAGS"
GNOMEBAKER_LIBS="$GNOMEBAKER_LIBS $GSTREAMER_LIBS"
-
-dnl -------------------------------------------------------------------
-dnl Language Support
-dnl -------------------------------------------------------------------
-GETTEXT_PACKAGE=gnomebaker
-AC_SUBST(GETTEXT_PACKAGE)
-AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
-
-ALL_LINGUAS="af az bg bo ca cs da de_AT de_CH de_DE de el en_AU en_CA en en_US eo es_AR es_CO es_CR es_ES es_MX es et eu_ES eu fa fi fr_CH fr_FR fr gl he hr hu is it_IT it ja ka ko lt lv mk ml ms nb nl_BE nl_NL nl no pa pl pt_BR pt pt_PT ro ru sk sl sr st sv te tl tr uk ur yi zh_CN zh_HK zh zh_TW"
-AM_GLIB_GNU_GETTEXT
-
-
AC_SUBST(GNOMEBAKER_CFLAGS)
AC_SUBST(GNOMEBAKER_LIBS)
--- po/LINGUAS 2007-08-17 14:57:56.000000000 -0400
+++ po/LINGUAS 2007-08-31 00:07:03.000000000 -0400
@@ -0,0 +1,73 @@
+af
+az
+bg
+bo
+ca
+cs
+da
+de_AT
+de_CH
+de_DE
+de
+el
+en_AU
+en_CA
+en
+en_US
+eo
+es_AR
+es_CO
+es_CR
+es_ES
+es_MX
+es
+et
+eu_ES
+eu
+fa
+fi
+fr_CH
+fr_FR
+fr
+gl
+he
+hr
+hu
+is
+it_IT
+it
+ja
+ka
+ko
+lt
+lv
+mk
+ml
+ms
+nb
+nl_BE
+nl_NL
+nl
+no
+pa
+pl
+pt_BR
+pt
+pt_PT
+ro
+ru
+sk
+sl
+sr
+st
+sv
+te
+tl
+tr
+uk
+ur
+yi
+zh_CN
+zh_HK
+zh
+zh_TW
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |