diff options
Diffstat (limited to 'media-sound/esound/esound-0.2.24-r2.ebuild')
-rw-r--r-- | media-sound/esound/esound-0.2.24-r2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/media-sound/esound/esound-0.2.24-r2.ebuild b/media-sound/esound/esound-0.2.24-r2.ebuild new file mode 100644 index 000000000000..9f8911f213c2 --- /dev/null +++ b/media-sound/esound/esound-0.2.24-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/esound/esound-0.2.24-r2.ebuild,v 1.1 2002/04/03 00:23:12 azarah Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="The Enlightened Sound Daemon" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/esound/${P}.tar.gz ftp://download.sourceforge.net/pub/mirrors/gnome/stable/sources/esound/${P}.tar.gz" +HOMEPAGE="http://www.tux.org/~ricdude/EsounD.html" + +DEPEND="virtual/glibc + >=media-libs/audiofile-0.1.9 + alsa? ( >=media-libs/alsa-lib-0.5.9 ) + tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 )" + +RDEPEND="virtual/glibc + >=media-libs/audiofile-0.1.9 + alsa? ( >=media-libs/alsa-lib-0.5.9 )" + +src_compile() { + libtoolize --copy --force + + local myconf="" + use tcpd && myconf="${myconf} --with-libwrap" \ + || myconf="${myconf} --without-libwrap" + + use alsa && myconf="${myconf} --enable-alsa" \ + || myconf="${myconf} --enable-alsa=no" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc/esd \ + ${myconf} || die + + make || die +} + +src_install() { + make prefix=${D}/usr sysconfdir=${D}/etc/esd install || die + + dodoc AUTHORS COPYING* ChangeLog README TODO NEWS TIPS + dodoc docs/esound.ps + + dohtml docs/html/*.html +} + |