diff options
author | 2003-01-16 07:27:45 +0000 | |
---|---|---|
committer | 2003-01-16 07:27:45 +0000 | |
commit | ce96de8f2aba3bc47997dad3e6aba4975d55ad50 (patch) | |
tree | 61937c117ab1a2a51087392f1c9fea0007e90377 /sys-apps/usbd/files | |
parent | Minor fix to build under GTK+-2.2. (diff) | |
download | historical-ce96de8f2aba3bc47997dad3e6aba4975d55ad50.tar.gz historical-ce96de8f2aba3bc47997dad3e6aba4975d55ad50.tar.bz2 historical-ce96de8f2aba3bc47997dad3e6aba4975d55ad50.zip |
New ebuild as presented on bug #11438
Diffstat (limited to 'sys-apps/usbd/files')
-rw-r--r-- | sys-apps/usbd/files/digest-usbd-0.1 | 1 | ||||
-rw-r--r-- | sys-apps/usbd/files/usbd | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/sys-apps/usbd/files/digest-usbd-0.1 b/sys-apps/usbd/files/digest-usbd-0.1 new file mode 100644 index 000000000000..a11bfc49d4a7 --- /dev/null +++ b/sys-apps/usbd/files/digest-usbd-0.1 @@ -0,0 +1 @@ +MD5 3f9aebc8fc05aa77286f685aac7d8672 usbd-0.1.tar.gz 100075 diff --git a/sys-apps/usbd/files/usbd b/sys-apps/usbd/files/usbd new file mode 100644 index 000000000000..2b402040edca --- /dev/null +++ b/sys-apps/usbd/files/usbd @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +depend() { + need localmount +} + +start() { + ebegin "Starting usb daemon" + /usr/sbin/usbd + eend $? +} + +stop() { + ebegin "Stopping usb daemon" + killall /usr/sbin/usbd + eend $? +} |