Author: pebender
Date: Wed Jun 24 21:40:51 2009
New Revision: 5055
Added:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xinit/xinitrc.d/26irxevent
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/lirc.pm
trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
Log:
- Moved irxevent daemon starting into xinit because it depends on X running.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Wed Jun 24
21:40:51 2009
@@ -70,6 +70,8 @@
- Worked around bug the appeared as a result of mplayer-svn being
compiled
with gcc 4.4.0.
- Fixed a bug in glibc that prevented gdb from debugging threaded
software.
+ - Moved irxevent daemon starting into xinit because it depends on X
+ running.
Modified build system
- Updated devel/glibc* packages so that kernel version 2.6.30 is the
Added:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xinit/xinitrc.d/26irxevent
==============================================================================
--- (empty file)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xinit/xinitrc.d/26irxevent
Wed Jun 24 21:40:51 2009
@@ -0,0 +1,9 @@
+################################################################################
+# irxevent
+#
+# Starts the irxevent daemon.
+################################################################################
+
+if /usr/bin/test "${MM_LIRC_IRXEVENT_ENABLED}" = "yes" ; then
+ /usr/bin/irxevent /etc/lircrc &
+fi
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/lirc.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/lirc.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/lirc.pm
Wed Jun 24 21:40:51 2009
@@ -249,12 +249,6 @@
system(qq(/usr/bin/irexec -d /etc/lircrc));
}
- # Start the irxevent daemon.
- if ($minimyth->var_get('MM_LIRC_IRXEVENT_ENABLED') eq 'yes')
- {
- system(qq(/usr/bin/irxevent -d /etc/lircrc));
- }
-
# Start the lircmd daemon.
if (-e '/etc/lircmd.conf')
{
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums (original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums Wed Jun 24
21:40:51 2009
@@ -1 +1 @@
-ed2891ba01a254ad33c01a0d2a9547ff download/MiniMyth.pm
+a9216a52a4e02ed455852f5546ceaa84 download/MiniMyth.pm
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
(original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm Wed Jun
24 21:40:51 2009
@@ -2405,6 +2405,7 @@
# Create a list of all applications that xinit might start.
my @applications = ();
push(@applications, $myth_program);
+ push(@applications, 'irxevent');
push(@applications, 'mythfrontend');
push(@applications, 'mythwelcome');
push(@applications, 'ratpoison');
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---