[Pkg-xfce-commits] r237 - in desktop/trunk: xfcalendar/debian
xfce-mcs-plugins/debian xfce4-iconbox/debian
xfce4-mixer/debian xfce4-panel/debian xfce4-session/debian
xfce4-utils/debian xfdesktop4/debian xffm4/debian
xfprint4/debian xfwm4/debian
Simon Huggins
huggie-guest at costa.debian.org
Sun Sep 4 12:34:01 UTC 2005
Author: huggie-guest
Date: 2005-09-04 12:33:59 +0000 (Sun, 04 Sep 2005)
New Revision: 237
Added:
desktop/trunk/xfcalendar/debian/postinst
desktop/trunk/xfcalendar/debian/prerm
desktop/trunk/xfce-mcs-plugins/debian/postinst
desktop/trunk/xfce-mcs-plugins/debian/prerm
desktop/trunk/xfce4-iconbox/debian/postinst
desktop/trunk/xfce4-iconbox/debian/prerm
desktop/trunk/xfce4-mixer/debian/postinst
desktop/trunk/xfce4-mixer/debian/prerm
desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm
desktop/trunk/xfce4-utils/debian/postinst
desktop/trunk/xfce4-utils/debian/prerm
desktop/trunk/xfdesktop4/debian/prerm
desktop/trunk/xffm4/debian/postinst
desktop/trunk/xffm4/debian/prerm
desktop/trunk/xfprint4/debian/postinst
desktop/trunk/xfprint4/debian/prerm
Modified:
desktop/trunk/xfcalendar/debian/changelog
desktop/trunk/xfcalendar/debian/control
desktop/trunk/xfce-mcs-plugins/debian/changelog
desktop/trunk/xfce-mcs-plugins/debian/control
desktop/trunk/xfce4-iconbox/debian/changelog
desktop/trunk/xfce4-iconbox/debian/control
desktop/trunk/xfce4-mixer/debian/changelog
desktop/trunk/xfce4-mixer/debian/control
desktop/trunk/xfce4-panel/debian/changelog
desktop/trunk/xfce4-panel/debian/control
desktop/trunk/xfce4-session/debian/changelog
desktop/trunk/xfce4-session/debian/control
desktop/trunk/xfce4-session/debian/postinst
desktop/trunk/xfce4-session/debian/prerm
desktop/trunk/xfce4-utils/debian/changelog
desktop/trunk/xfce4-utils/debian/control
desktop/trunk/xfdesktop4/debian/changelog
desktop/trunk/xfdesktop4/debian/control
desktop/trunk/xfdesktop4/debian/postinst
desktop/trunk/xffm4/debian/changelog
desktop/trunk/xffm4/debian/control
desktop/trunk/xfprint4/debian/changelog
desktop/trunk/xfprint4/debian/control
desktop/trunk/xfwm4/debian/changelog
desktop/trunk/xfwm4/debian/control
desktop/trunk/xfwm4/debian/postinst
desktop/trunk/xfwm4/debian/prerm
Log:
pkill -SIGUSR1 xfce-mcs-manager when we add or remove an mcs-plugin
Modified: desktop/trunk/xfcalendar/debian/changelog
===================================================================
--- desktop/trunk/xfcalendar/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfcalendar/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfcalendar (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin closes: #304844
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 12:30:21 +0100
+
xfcalendar (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xfcalendar/debian/control
===================================================================
--- desktop/trunk/xfcalendar/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfcalendar/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfcalendar
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-systray
+Depends: ${shlibs:Depends}, xfce4-systray, procps
Description: Time-managing application for the Xfce desktop environment
This package contains a calendar for the Xfce4 desktop environment.
It integrates itself nicely into the desktop environment, is highly
Added: desktop/trunk/xfcalendar/debian/postinst
===================================================================
--- desktop/trunk/xfcalendar/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfcalendar/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfcalendar/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfcalendar/debian/prerm
===================================================================
--- desktop/trunk/xfcalendar/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfcalendar/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfcalendar/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfce-mcs-plugins/debian/changelog
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce-mcs-plugins/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,8 +1,9 @@
xfce-mcs-plugins (4.2.2-2) UNRELEASED; urgency=low
* Don't use Source-Version for a dependency built elsewhere.
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
- -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 11:59:05 +0100
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 12:44:37 +0100
xfce-mcs-plugins (4.2.2-1) unstable; urgency=low
Modified: desktop/trunk/xfce-mcs-plugins/debian/control
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce-mcs-plugins/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfce4-mcs-plugins
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-mcs-manager (>= 4.2.2-1)
+Depends: ${shlibs:Depends}, xfce4-mcs-manager (>= 4.2.2-1), procps
Description: Special modules for the xfce4-mcs-manager
This package contains some settings manager plugins. The plugins
provide settings dialogs for general items that are not part of a
Added: desktop/trunk/xfce-mcs-plugins/debian/postinst
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce-mcs-plugins/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce-mcs-plugins/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfce-mcs-plugins/debian/prerm
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce-mcs-plugins/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce-mcs-plugins/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfce4-iconbox/debian/changelog
===================================================================
--- desktop/trunk/xfce4-iconbox/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-iconbox/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfce4-iconbox (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 12:42:06 +0100
+
xfce4-iconbox (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xfce4-iconbox/debian/control
===================================================================
--- desktop/trunk/xfce4-iconbox/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-iconbox/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfce4-iconbox
Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, procps
Description: Iconbox for the Xfce4 Desktop Environment
This is an iconbox for the Xfce4 Desktop Environment. It
will appear on your desktop as a bar that has an icon for
Added: desktop/trunk/xfce4-iconbox/debian/postinst
===================================================================
--- desktop/trunk/xfce4-iconbox/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-iconbox/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-iconbox/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfce4-iconbox/debian/prerm
===================================================================
--- desktop/trunk/xfce4-iconbox/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-iconbox/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-iconbox/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfce4-mixer/debian/changelog
===================================================================
--- desktop/trunk/xfce4-mixer/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-mixer/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfce4-mixer (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 12:46:59 +0100
+
xfce4-mixer (4.2.2-1) unstable; urgency=low
* Simon Huggins:
Modified: desktop/trunk/xfce4-mixer/debian/control
===================================================================
--- desktop/trunk/xfce4-mixer/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-mixer/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfce4-mixer
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-panel (>= 4.2.2-1)
+Depends: ${shlibs:Depends}, xfce4-panel (>= 4.2.2-1), procps
Description: Xfce4 Mixer frontend
This is the frontend for mixer settings delivered together
with the Xfce4 desktop environment. It does the same jobs
Added: desktop/trunk/xfce4-mixer/debian/postinst
===================================================================
--- desktop/trunk/xfce4-mixer/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-mixer/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-mixer/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfce4-mixer/debian/prerm
===================================================================
--- desktop/trunk/xfce4-mixer/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-mixer/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-mixer/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfce4-panel/debian/changelog
===================================================================
--- desktop/trunk/xfce4-panel/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-panel/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfce4-panel (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:01:24 +0100
+
xfce4-panel (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xfce4-panel/debian/control
===================================================================
--- desktop/trunk/xfce4-panel/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-panel/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfce4-panel
Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, procps
Replaces: xfce4 (<< 4.0.0.final-1)
Conflicts: xfce4 (<< 4.0.0.final-1), xfce4-themes
Description: The Xfce4 desktop environment panel
Added: desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
===================================================================
--- desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm
===================================================================
--- desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfce4-session/debian/changelog
===================================================================
--- desktop/trunk/xfce4-session/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-session/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfce4-session (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:09:17 +0100
+
xfce4-session (4.2.2-1) unstable; urgency=low
* SH: New Upstream Release
Modified: desktop/trunk/xfce4-session/debian/control
===================================================================
--- desktop/trunk/xfce4-session/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-session/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -9,7 +9,7 @@
Package: xfce4-session
Architecture: any
Depends: ${shlibs:Depends}
-Recommends: xbase-clients, xfwm4, xfce4-utils, xfdesktop4, xfce4-iconbox, xfce4-panel
+Recommends: xbase-clients, xfwm4, xfce4-utils, xfdesktop4, xfce4-iconbox, xfce4-panel, procps
Suggests: sudo
Provides: x-session-manager
Description: Xfce4 Session Manager
Modified: desktop/trunk/xfce4-session/debian/postinst
===================================================================
--- desktop/trunk/xfce4-session/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-session/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -5,6 +5,9 @@
x-session-manager /usr/bin/xfce4-session 50 \
--slave /usr/share/man/man1/x-session-manager.1.gz \
x-session-manager.1.gz /usr/share/man/man1/xfce4-session.1.gz
+
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
fi
#DEBHELPER#
Modified: desktop/trunk/xfce4-session/debian/prerm
===================================================================
--- desktop/trunk/xfce4-session/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-session/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -4,6 +4,11 @@
update-alternatives --remove x-session-manager /usr/bin/xfce4-session
fi
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
#DEBHELPER#
exit 0
Modified: desktop/trunk/xfce4-utils/debian/changelog
===================================================================
--- desktop/trunk/xfce4-utils/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-utils/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfce4-utils (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:12:29 +0100
+
xfce4-utils (4.2.2-1) unstable; urgency=low
* Simon Huggins
Modified: desktop/trunk/xfce4-utils/debian/control
===================================================================
--- desktop/trunk/xfce4-utils/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-utils/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfce4-utils
Architecture: any
-Depends: ${shlibs:Depends}, xterm|x-terminal-emulator
+Depends: ${shlibs:Depends}, xterm|x-terminal-emulator, procps
Recommends: xfwm4, xfce4-panel
Suggests: xfce4-session
Description: Various tools for Xfce
Added: desktop/trunk/xfce4-utils/debian/postinst
===================================================================
--- desktop/trunk/xfce4-utils/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-utils/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-utils/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfce4-utils/debian/prerm
===================================================================
--- desktop/trunk/xfce4-utils/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfce4-utils/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfce4-utils/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfdesktop4/debian/changelog
===================================================================
--- desktop/trunk/xfdesktop4/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfdesktop4/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfdesktop4 (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:19:53 +0100
+
xfdesktop4 (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xfdesktop4/debian/control
===================================================================
--- desktop/trunk/xfdesktop4/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfdesktop4/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfdesktop4
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-mcs-manager, xfce4-utils
+Depends: ${shlibs:Depends}, xfce4-mcs-manager, xfce4-utils, procps
Suggests: menu
Conflicts: menu (<<2.1.12)
Description: Provides desktop background and root menu
Modified: desktop/trunk/xfdesktop4/debian/postinst
===================================================================
--- desktop/trunk/xfdesktop4/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfdesktop4/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -9,5 +9,9 @@
-->
EOF
fi
+
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
fi
+
#DEBHELPER#
Added: desktop/trunk/xfdesktop4/debian/prerm
===================================================================
--- desktop/trunk/xfdesktop4/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfdesktop4/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfdesktop4/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xffm4/debian/changelog
===================================================================
--- desktop/trunk/xffm4/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xffm4/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xffm4 (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:20:39 +0100
+
xffm4 (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xffm4/debian/control
===================================================================
--- desktop/trunk/xffm4/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xffm4/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xffm4
Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, procps
Suggests: xfwm4, xfce4
Replaces: libxffm-0, libxffmsmb-0
Description: File manager for the Xfce4 desktop environment
Added: desktop/trunk/xffm4/debian/postinst
===================================================================
--- desktop/trunk/xffm4/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xffm4/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xffm4/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xffm4/debian/prerm
===================================================================
--- desktop/trunk/xffm4/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xffm4/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xffm4/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfprint4/debian/changelog
===================================================================
--- desktop/trunk/xfprint4/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfprint4/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfprint4 (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:21:59 +0100
+
xfprint4 (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xfprint4/debian/control
===================================================================
--- desktop/trunk/xfprint4/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfprint4/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfprint4
Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, procps
Suggests: a2ps, psutils
Description: Printer GUI for Xfce4
xfprint4 is a printer manager for the Xfce4 desktop environment. It allows
Added: desktop/trunk/xfprint4/debian/postinst
===================================================================
--- desktop/trunk/xfprint4/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfprint4/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfprint4/debian/postinst
___________________________________________________________________
Name: svn:executable
+ *
Added: desktop/trunk/xfprint4/debian/prerm
===================================================================
--- desktop/trunk/xfprint4/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfprint4/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ]; then
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
+fi
+
+#DEBHELPER#
+
+exit 0
Property changes on: desktop/trunk/xfprint4/debian/prerm
___________________________________________________________________
Name: svn:executable
+ *
Modified: desktop/trunk/xfwm4/debian/changelog
===================================================================
--- desktop/trunk/xfwm4/debian/changelog 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfwm4/debian/changelog 2005-09-04 12:33:59 UTC (rev 237)
@@ -1,3 +1,9 @@
+xfwm4 (4.2.2-2) UNRELEASED; urgency=low
+
+ * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin.
+
+ -- Simon Huggins <huggie at earth.li> Sun, 4 Sep 2005 13:24:42 +0100
+
xfwm4 (4.2.2-1) unstable; urgency=low
* New Upstream Release
Modified: desktop/trunk/xfwm4/debian/control
===================================================================
--- desktop/trunk/xfwm4/debian/control 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfwm4/debian/control 2005-09-04 12:33:59 UTC (rev 237)
@@ -8,7 +8,7 @@
Package: xfwm4
Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, procps
Recommends: xfwm4-themes, xfce4-mcs-manager
Suggests: xfce4
Provides: x-window-manager
Modified: desktop/trunk/xfwm4/debian/postinst
===================================================================
--- desktop/trunk/xfwm4/debian/postinst 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfwm4/debian/postinst 2005-09-04 12:33:59 UTC (rev 237)
@@ -7,6 +7,9 @@
x-window-manager /usr/bin/xfwm4 60 --slave \
/usr/share/man/man1/x-window-manager.1.gz \
x-window-manager.1.gz /usr/share/man/man1/xfwm4.1.gz
+
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
fi
#DEBHELPER#
Modified: desktop/trunk/xfwm4/debian/prerm
===================================================================
--- desktop/trunk/xfwm4/debian/prerm 2005-09-04 11:12:08 UTC (rev 236)
+++ desktop/trunk/xfwm4/debian/prerm 2005-09-04 12:33:59 UTC (rev 237)
@@ -4,6 +4,9 @@
if [ "$1" = "remove" ]; then
update-alternatives --remove x-window-manager /usr/bin/xfwm4
+
+ # Get xfce-mcs-manager to reinit
+ pkill -USR1 xfce-mcs-manager
fi
#DEBHELPER#
More information about the Pkg-xfce-commits
mailing list