Hello community,

here is the log from the commit of package gromit for openSUSE:Factory checked 
in at 2012-04-12 09:25:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gromit (Old)
 and      /work/SRC/openSUSE:Factory/.gromit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gromit", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2012-03-17 10:42:43.883537212 +0100
+++ /work/SRC/openSUSE:Factory/.gromit.new/gromit.changes       2012-04-12 
09:25:14.000000000 +0200
@@ -0,0 +1,27 @@
+-------------------------------------------------------------------
+Fri Apr  6 12:10:22 UTC 2012 - vu...@opensuse.org
+
+- Add gromit-link-x11.patch: explicitly link to libX11 and libm to
+  fix build.
+
+-------------------------------------------------------------------
+Fri Jan 14 14:37:09 CET 2011 - vu...@opensuse.org
+
+- Rework previous change:
+  + Do not change gromit-cflags.patch.
+  + Add gromit-no-DISABLE_DEPRECATED.patch to remove all the
+    *_DISABLE_DEPRECATED flags. It's better to have it as a
+    separate patch.
+
+-------------------------------------------------------------------
+Wed Jan 12 16:15:57 UTC 2011 - malcolmle...@opensuse.org
+
+- Drop -DGDK_DISABLE_DEPRECATED flag until the GDK drawing code is
+  ported to cairo.
+  http://mail.gnome.org/archives/commits-list/2010-August/msg05327.html 
+
+-------------------------------------------------------------------
+Sun Jun 14 02:36:06 CEST 2009 - vu...@novell.com
+
+- Initial package.
+

New:
----
  gromit-20041213.tar.bz2
  gromit-cflags.patch
  gromit-link-x11.patch
  gromit-no-DISABLE_DEPRECATED.patch
  gromit.changes
  gromit.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gromit.spec ++++++
# spec file for package gromit (version 20041213)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

Name:           gromit
Version:        20041213
Release:        1
License:        GPL-2.0+
Summary:        Tool to make annotations on the screen
Url:            http://www.home.unix-ag.org/simon/gromit/
Group:          Amusements/Toys/Other
Source0:        %{name}-%{version}.tar.bz2
# PATCH-FIX-OPENSUSE gromit-cflags.patch vu...@novell.com -- Use CFLAGS when 
compiling
Patch0:         gromit-cflags.patch
# PATCH-FIX-UPSTREAM gromit-no-DISABLE_DEPRECATED.patch vu...@opensuse.org -- 
Remove *_DISABLE_DEPRECATED flags to fix build
Patch1:         gromit-no-DISABLE_DEPRECATED.patch
# PATCH-FIX-UPSTREAM gromit-link-x11.patch vu...@opensuse.org -- Link to libX11 
and libm to fix build
Patch2:         gromit-link-x11.patch
BuildRequires:  gtk2-devel
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
Gromit (GRaphics Over MIscellaneous Things) is a small tool to make
annotations on the screen.

It is useful for recording presentations.

%prep
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1

%build
export CFLAGS="$RPM_OPT_FLAGS"
%__make %{?jobs:-j%jobs}

%install
install -m 755 -D %{name} %{buildroot}%{_bindir}/%{name}

%clean
%{__rm} -rf %{buildroot}

%files
%defattr(-, root, root)
%doc AUTHORS ChangeLog COPYING gromitrc gromitrc_gsr README
%{_bindir}/%{name}

%changelog
++++++ gromit-cflags.patch ++++++
Index: gromit-20041213/Makefile
===================================================================
--- gromit-20041213.orig/Makefile
+++ gromit-20041213/Makefile
@@ -7,4 +7,4 @@ propertywatch: propertywatch.c
        gcc -o propertywatch propertywatch.c `gtk-config --libs --cflags`
 
 gromit: gromit.c Makefile
-       gcc -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGDK_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGDK_MULTIHEAD_SAFE 
-DGTK_MULTIHEAD_SAFE -o gromit gromit.c -Wall `pkg-config --libs --cflags 
gtk+-2.0`
+       gcc ${CFLAGS} -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGDK_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGDK_MULTIHEAD_SAFE 
-DGTK_MULTIHEAD_SAFE -o gromit gromit.c -Wall `pkg-config --libs --cflags 
gtk+-2.0`
++++++ gromit-link-x11.patch ++++++
Index: gromit-20041213/Makefile
===================================================================
--- gromit-20041213.orig/Makefile
+++ gromit-20041213/Makefile
@@ -7,4 +7,4 @@ propertywatch: propertywatch.c
        gcc -o propertywatch propertywatch.c `gtk-config --libs --cflags`
 
 gromit: gromit.c Makefile
-       gcc ${CFLAGS} -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE -o gromit 
gromit.c -Wall `pkg-config --libs --cflags gtk+-2.0`
+       gcc ${CFLAGS} -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE -o gromit 
gromit.c -Wall `pkg-config --libs --cflags gtk+-2.0 x11` -lm
++++++ gromit-no-DISABLE_DEPRECATED.patch ++++++
Index: gromit-20041213/Makefile
===================================================================
--- gromit-20041213.orig/Makefile
+++ gromit-20041213/Makefile
@@ -7,4 +7,4 @@ propertywatch: propertywatch.c
        gcc -o propertywatch propertywatch.c `gtk-config --libs --cflags`
 
 gromit: gromit.c Makefile
-       gcc ${CFLAGS} -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGDK_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGDK_MULTIHEAD_SAFE 
-DGTK_MULTIHEAD_SAFE -o gromit gromit.c -Wall `pkg-config --libs --cflags 
gtk+-2.0`
+       gcc ${CFLAGS} -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE -o gromit 
gromit.c -Wall `pkg-config --libs --cflags gtk+-2.0`
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to