Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (e8964102cb98b0f01f52e9da1da0ff18273ea700)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (e8964102cb98b0f01f52e9da1da0ff18273ea700)
  • Date: Fri, 30 Jun 2006 17:08:46 -0500

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

x11-libs/xorg/HISTORY | 4 ++++
x11-libs/xorg/init.d/xfs | 23 +++++++++++++++++++++++
x11-libs/xorg/init.d/xfs.conf | 8 ++++++++
3 files changed, 35 insertions(+)

New commits:
commit e8964102cb98b0f01f52e9da1da0ff18273ea700
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

added init script for the font server

diff --git a/x11-libs/xorg/HISTORY b/x11-libs/xorg/HISTORY
index 68c9c25..98e92c1 100644
--- a/x11-libs/xorg/HISTORY
+++ b/x11-libs/xorg/HISTORY
@@ -1,3 +1,7 @@
+2006-06-30 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * init.d/xfs, init.d/xfs.conf: added init script for the font
+ server
+
2006-06-30 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* DEPENDS: made g++ required, #10637

diff --git a/x11-libs/xorg/init.d/xfs b/x11-libs/xorg/init.d/xfs
new file mode 100755
index 0000000..58d6d0c
--- /dev/null
+++ b/x11-libs/xorg/init.d/xfs
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+if [ ! -r /etc/sysconfig/xfs ]; then
+ echo "unable to read /etc/sysconfig/xfs"
+ exit 1
+fi
+
+. /etc/sysconfig/xfs
+
+PROGRAM=/usr/X11R6/bin/xfs
+RUNLEVEL=5
+ARGS="-daemon"
+if [ ! -z ${CONFIG} ]; then
+ ARGS="-config ${CONFIG} ${ARGS}"
+fi
+if [ ! -z ${PORTNO} ]; then
+ ARGS="-port ${PORTNO} ${ARGS} "
+fi
+if [ ! -z ${RUN_AS_USER} ]; then
+ ARGS="-user ${RUN_AS_USER} -droppriv ${ARGS}"
+fi
+
+. /etc/init.d/smgl_init
diff --git a/x11-libs/xorg/init.d/xfs.conf b/x11-libs/xorg/init.d/xfs.conf
new file mode 100644
index 0000000..3e64f4e
--- /dev/null
+++ b/x11-libs/xorg/init.d/xfs.conf
@@ -0,0 +1,8 @@
+# where the configuration file is located. xfs's default is used if left
blank.
+CONFIG="/etc/X11/fs/config"
+
+# port to run on. 7100 if left blank.
+PORTNO=7100
+
+# user to run as.
+RUN_AS_USER=nobody



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (e8964102cb98b0f01f52e9da1da0ff18273ea700), Florian Franzmann, 06/30/2006

Archive powered by MHonArc 2.6.24.

Top of Page