From e761c87987afd3471a031312dadee81511078310 Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Fri, 20 Oct 2006 15:02:04 +0000 Subject: [PATCH] esound: adopted --- esound/.footprint | 49 +++++++++++++++++++++++++++++++++++++++++++++++ esound/.md5sum | 2 ++ esound/Pkgfile | 18 +++++++++++++++++ esound/esound | 23 ++++++++++++++++++++++ 4 files changed, 92 insertions(+) create mode 100644 esound/.footprint create mode 100644 esound/.md5sum create mode 100644 esound/Pkgfile create mode 100755 esound/esound diff --git a/esound/.footprint b/esound/.footprint new file mode 100644 index 000000000..1124dc50a --- /dev/null +++ b/esound/.footprint @@ -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 diff --git a/esound/.md5sum b/esound/.md5sum new file mode 100644 index 000000000..60b493a87 --- /dev/null +++ b/esound/.md5sum @@ -0,0 +1,2 @@ +b76ef759b72bdf67754e79a6eb139cd2 esound +f2ba3597ef584f4eed7a8aa0ce875c2d esound-0.2.36.tar.gz diff --git a/esound/Pkgfile b/esound/Pkgfile new file mode 100644 index 000000000..92385e85b --- /dev/null +++ b/esound/Pkgfile @@ -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 +} diff --git a/esound/esound b/esound/esound new file mode 100755 index 000000000..62c41ae52 --- /dev/null +++ b/esound/esound @@ -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