esound: adopted

This commit is contained in:
Matt Housh 2006-10-20 15:02:04 +00:00
parent 2e3dd0a9d7
commit e761c87987
4 changed files with 92 additions and 0 deletions

49
esound/.footprint Normal file
View File

@ -0,0 +1,49 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/esound
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/esd
-rwxr-xr-x root/root usr/bin/esd-config
-rwxr-xr-x root/root usr/bin/esdcat
-rwxr-xr-x root/root usr/bin/esdctl
-rwxr-xr-x root/root usr/bin/esddsp
-rwxr-xr-x root/root usr/bin/esdfilt
-rwxr-xr-x root/root usr/bin/esdloop
-rwxr-xr-x root/root usr/bin/esdmon
-rwxr-xr-x root/root usr/bin/esdplay
-rwxr-xr-x root/root usr/bin/esdrec
-rwxr-xr-x root/root usr/bin/esdsample
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/esd.conf
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/esd.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libesd.a
-rwxr-xr-x root/root usr/lib/libesd.la
lrwxrwxrwx root/root usr/lib/libesd.so -> libesd.so.0.2.36
lrwxrwxrwx root/root usr/lib/libesd.so.0 -> libesd.so.0.2.36
-rwxr-xr-x root/root usr/lib/libesd.so.0.2.36
-rw-r--r-- root/root usr/lib/libesddsp.a
-rwxr-xr-x root/root usr/lib/libesddsp.la
lrwxrwxrwx root/root usr/lib/libesddsp.so -> libesddsp.so.0.2.36
lrwxrwxrwx root/root usr/lib/libesddsp.so.0 -> libesddsp.so.0.2.36
-rwxr-xr-x root/root usr/lib/libesddsp.so.0.2.36
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/esound.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/esd-config.1.gz
-rw-r--r-- root/root usr/man/man1/esd.1.gz
-rw-r--r-- root/root usr/man/man1/esdcat.1.gz
-rw-r--r-- root/root usr/man/man1/esdctl.1.gz
-rw-r--r-- root/root usr/man/man1/esddsp.1.gz
-rw-r--r-- root/root usr/man/man1/esdfilt.1.gz
-rw-r--r-- root/root usr/man/man1/esdloop.1.gz
-rw-r--r-- root/root usr/man/man1/esdmon.1.gz
-rw-r--r-- root/root usr/man/man1/esdplay.1.gz
-rw-r--r-- root/root usr/man/man1/esdrec.1.gz
-rw-r--r-- root/root usr/man/man1/esdsample.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/esd.m4

2
esound/.md5sum Normal file
View File

@ -0,0 +1,2 @@
b76ef759b72bdf67754e79a6eb139cd2 esound
f2ba3597ef584f4eed7a8aa0ce875c2d esound-0.2.36.tar.gz

18
esound/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: The Enlightened Sound Daemon
# URL: http://www.tux.org/~ricdude/EsounD.html
# Maintainer: Matt Housh, jaeger at crux dot nu
# Depends on: audiofile
name=esound
version=0.2.36
release=1
source=(http://download.gnome.org/sources/$name/0.2/$name-$version.tar.gz \
$name)
build () {
cd $name-$version
./configure --prefix=/usr --with-audiofile
make
make DESTDIR=$PKG install
install -D -m 755 $SRC/$name $PKG/etc/rc.d/$name
}

23
esound/esound Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# /etc/rc.d/esound: start/stop esound daemon
#
case $1 in
start)
/usr/bin/esd -nobeeps &
;;
stop)
killall -q /usr/bin/esd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file