]> code.delx.au - pulseaudio/blob - polyp/esdcompat.sh.in
daemon auto spawn
[pulseaudio] / polyp / esdcompat.sh.in
1 #!/bin/sh
2
3 # $Id$
4 #
5 # This file is part of polypaudio.
6 #
7 # polypaudio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # polypaudio is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with polypaudio; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 # USA.
21
22 VERSION_STRING="@PACKAGE_NAME@ esd wrapper @PACKAGE_VERSION@"
23
24 fail() {
25 echo "$1" > /dev/stderr
26 exit 1
27 }
28
29 for N in $(seq $#) ; do
30
31 case "$1" in
32
33 -v|--version)
34 echo "$VERSION_STRING"
35 exit 0
36 ;;
37
38 -h|--help)
39 cat <<EOF
40 $VERSION_STRING
41
42 Usage: $0 [options]
43
44 -v --version print version information
45 -h --help show this help
46
47 Ignored directives:
48
49 -tcp use tcp/ip sockets in addition to unix domain
50 -promiscuous don't require authentication
51 -d DEVICE force esd to use sound device DEVICE
52 -b run server in 8 bit sound mode
53 -r RATE run server at sample rate of RATE
54 -as SECS free audio device after SECS of inactivity
55 -unix use unix domain sockets instead of tcp/ip
56 -public make tcp/ip access public (other than localhost)
57 -terminate terminate esd daemone after last client exits
58 -nobeeps disable startup beeps
59 -trust start esd even if use of /tmp/.esd can be insecure
60 -port PORT listen for connections at PORT (only for tcp/ip)
61 -bind ADDRESS binds to ADDRESS (only for tcp/ip)
62 EOF
63 exit 0
64 ;;
65
66 -unix|-b|-public|-terminate|-nobeeps|-trust|-tcp|-promiscuous)
67 # Ignore these commands
68 ;;
69
70 -d|-r|-as|-port|-bind)
71 # Ignore these commands and their arguments
72 shift
73 ;;
74
75 *)
76 fail "Unknown command: $1"
77 ;;
78 esac
79
80 shift
81 done
82
83 exec "@POLYPAUDIO_BINARY@" -r