summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2003-12-15 11:46:45 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2003-12-15 11:46:45 +0000
commit41614adc2bc90bedb8e2a7fdc36b18135566921b (patch)
treea94b33894dfcfd69eb7b6e6d0867c97ac420151c /x11-misc/synaptics
parentUpdated HOMEPAGE to new address (Manifest recommit) (diff)
downloadgentoo-2-41614adc2bc90bedb8e2a7fdc36b18135566921b.tar.gz
gentoo-2-41614adc2bc90bedb8e2a7fdc36b18135566921b.tar.bz2
gentoo-2-41614adc2bc90bedb8e2a7fdc36b18135566921b.zip
Somehow I forgot to add the init.d and conf.d scripts for syndaemon, and nobody even noticed.
Diffstat (limited to 'x11-misc/synaptics')
-rw-r--r--x11-misc/synaptics/ChangeLog7
-rw-r--r--x11-misc/synaptics/Manifest4
-rw-r--r--x11-misc/synaptics/files/rc.conf8
-rw-r--r--x11-misc/synaptics/files/rc.init20
4 files changed, 37 insertions, 2 deletions
diff --git a/x11-misc/synaptics/ChangeLog b/x11-misc/synaptics/ChangeLog
index bd2a926dc137..bcc85d72ea28 100644
--- a/x11-misc/synaptics/ChangeLog
+++ b/x11-misc/synaptics/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/synaptics
# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/ChangeLog,v 1.6 2003/11/24 04:13:46 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/ChangeLog,v 1.7 2003/12/15 11:46:36 spyderous Exp $
+
+ 15 Dec 2003; Donnie Berkholz <spyderous@gentoo.org>; files/rc.conf,
+ files/rc.init:
+ Somehow I forgot to add the init.d and conf.d scripts for syndaemon, and
+ nobody even noticed.
23 Nov 2003; Donnie Berkholz <spyderous@gentoo.org>; synaptics-0.12.0.ebuild:
Re-marking as testing, it's not allowed to depend on something unstable.
diff --git a/x11-misc/synaptics/Manifest b/x11-misc/synaptics/Manifest
index bfe05fbc1250..579696bc1513 100644
--- a/x11-misc/synaptics/Manifest
+++ b/x11-misc/synaptics/Manifest
@@ -1,7 +1,9 @@
-MD5 45293324fb5d5db98a15576401eea17a ChangeLog 1242
+MD5 407c831b78679bf72d350bb2087c325a ChangeLog 1428
MD5 6d74d543e3f641839881cda58499b797 metadata.xml 250
MD5 c6c964d83d65687f1422e0ff78552132 synaptics-0.12.0.ebuild 1222
MD5 abeeb906094c0d4aa2673e059d24f224 synaptics-0.12.1.ebuild 1515
MD5 3f3218b104c0f1e2a64462e08e8e3651 files/synaptics-0.11.8-makefile-fixup.patch 457
MD5 849a8f1a03c90c03b638548cc99f131f files/digest-synaptics-0.12.0 69
MD5 446e5916a934a2b8c43862d001f0e47c files/digest-synaptics-0.12.1 69
+MD5 8d49e63422d422937e1e5233e699ff91 files/rc.conf 338
+MD5 ff794680ff3ad636bf818bb8d1652ae8 files/rc.init 435
diff --git a/x11-misc/synaptics/files/rc.conf b/x11-misc/synaptics/files/rc.conf
new file mode 100644
index 000000000000..23106604cb94
--- /dev/null
+++ b/x11-misc/synaptics/files/rc.conf
@@ -0,0 +1,8 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/files/rc.conf,v 1.1 2003/12/15 11:46:37 spyderous Exp $
+
+# Config file for /etc/init.d/syndaemon
+
+# run `syndaemon --help` for valid cmdline options
+#SYNDAEMON_OPTS=""
diff --git a/x11-misc/synaptics/files/rc.init b/x11-misc/synaptics/files/rc.init
new file mode 100644
index 000000000000..9816ca6958ac
--- /dev/null
+++ b/x11-misc/synaptics/files/rc.init
@@ -0,0 +1,20 @@
+#!/sbin/runscript
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/files/rc.init,v 1.1 2003/12/15 11:46:37 spyderous Exp $
+
+depend() {
+ use localmount
+}
+
+start() {
+ ebegin "Starting syndaemon"
+ syndaemon ${RSYNC_OPTS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping syndaemon"
+ kill `cat /var/run/syndaemon.pid`
+ eend $?
+}