rpms/xfce4-session/F-9 xfce4-session-4.4.2-no-splash.patch, NONE, 1.1 .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xfce4-session.spec, 1.21, 1.22

Christoph Wickert cwickert at fedoraproject.org
Sun Mar 29 00:50:35 UTC 2009


Author: cwickert

Update of /cvs/pkgs/rpms/xfce4-session/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28115

Modified Files:
	.cvsignore sources xfce4-session.spec 
Added Files:
	xfce4-session-4.4.2-no-splash.patch 
Log Message:
* Mon Oct 27 2008 Christoph Wickert <cwickert at fedoraproject.org> - 4.4.3-1
- Update to 4.4.3
- BuildRequire intltool
- Don't display splash by default
- Update gtk-update-icon-cache scriptlets


xfce4-session-4.4.2-no-splash.patch:

--- NEW FILE xfce4-session-4.4.2-no-splash.patch ---
--- xfce4-session-4.4.2.orig/xfce4-session.rc	2007-11-17 20:31:12.000000000 +0100
+++ xfce4-session-4.4.2/xfce4-session.rc	2008-08-27 03:06:48.000000000 +0200
@@ -48,4 +48,4 @@
 
 # Default splash screen selection.
 [Splash Screen]
-Engine=mice
+Engine=


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/xfce4-session/F-9/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore	3 Dec 2007 05:57:24 -0000	1.9
+++ .cvsignore	29 Mar 2009 00:50:05 -0000	1.10
@@ -1 +1 @@
-xfce4-session-4.4.2.tar.bz2
+xfce4-session-4.4.3.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/xfce4-session/F-9/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources	3 Dec 2007 05:57:24 -0000	1.9
+++ sources	29 Mar 2009 00:50:05 -0000	1.10
@@ -1 +1 @@
-4c3d1acb8ce37ea4dd55d82aeb38e9e7  xfce4-session-4.4.2.tar.bz2
+5c522e0d28c952af413cf0c43257b907  xfce4-session-4.4.3.tar.bz2


Index: xfce4-session.spec
===================================================================
RCS file: /cvs/pkgs/rpms/xfce4-session/F-9/xfce4-session.spec,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- xfce4-session.spec	22 Apr 2008 20:34:57 -0000	1.21
+++ xfce4-session.spec	29 Mar 2009 00:50:05 -0000	1.22
@@ -1,11 +1,12 @@
 Summary: Xfce session manager
 Name: xfce4-session
-Version: 4.4.2
-Release: 3%{?dist}
+Version: 4.4.3
+Release: 1%{?dist}
 License: GPLv2+
 URL: http://www.xfce.org/
-Source0: http://www.xfce.org/archive/xfce-4.4.2/src/xfce4-session-4.4.2.tar.bz2
+Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-session-%{version}.tar.bz2
 Patch0: xfce4-session-4.4.2-hide-tips.patch
+Patch1: xfce4-session-4.4.2-no-splash.patch
 Group: User Interface/Desktops
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Requires: libxfcegui4 >= %{version}
@@ -21,7 +22,7 @@
 BuildRequires: imake
 BuildRequires: libXt-devel
 BuildRequires: xorg-x11-server-utils
-BuildRequires: dbus-devel GConf2-devel
+BuildRequires: dbus-devel GConf2-devel gnome-keyring-devel >= 2.22
 Requires: fortune-mod
 
 %description
@@ -48,6 +49,7 @@
 %prep
 %setup -q
 %patch0 -p1 -b .disable-tips
+%patch1 -p1 -b .nospash
 
 %build
 %configure --enable-gnome --enable-final
@@ -68,12 +70,16 @@
 
 %post
 touch --no-create %{_datadir}/icons/hicolor || :
-%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
+  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+fi
 /sbin/ldconfig
 
 %postun
 touch --no-create %{_datadir}/icons/hicolor || :
-%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
+  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+fi
 /sbin/ldconfig
 
 %files -f %{name}.lang
@@ -82,6 +88,7 @@
 %{_bindir}/*
 %{_datadir}/applications/*
 %{_datadir}/icons/hicolor/128x128/apps/xfce4-session.png
+%{_datadir}/icons/hicolor/48x48/apps/xfce4-autostart-editor.png
 %{_datadir}/icons/hicolor/48x48/apps/xfce4-session.png
 %{_datadir}/icons/hicolor/48x48/apps/xfce4-splash.png
 %{_datadir}/icons/hicolor/48x48/apps/xfsm-logout.png
@@ -124,6 +131,15 @@
 %{_libexecdir}/balou-*
 
 %changelog
+* Mon Oct 27 2008 Christoph Wickert <cwickert at fedoraproject.org> - 4.4.3-1
+- Update to 4.4.3
+- BuildRequire intltool
+- Don't display splash by default
+- Update gtk-update-icon-cache scriptlets
+
+* Mon Aug 11 2008 Kevin Fenzi <kevin at tummy.com> - 4.4.2-4
+- Fix icon for autostarted applications (fixes #442804)
+
 * Tue Apr 22 2008 Kevin Fenzi <kevin at tummy.com> - 4.4.2-3
 - Disable tips by default for now. 
 




More information about the fedora-extras-commits mailing list