diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-08-25 02:42:56 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-08-25 02:42:56 +0000 |
commit | dcd9f028713005ae2f0c867b49db6d2c6f67758e (patch) | |
tree | e0f7e33cd7cea7c7c8ba2f3b432f9191afc934be /media-sound/esound/esound-0.2.35.ebuild | |
parent | Marking 2.10.0 stable (x86) (diff) | |
download | gentoo-2-dcd9f028713005ae2f0c867b49db6d2c6f67758e.tar.gz gentoo-2-dcd9f028713005ae2f0c867b49db6d2c6f67758e.tar.bz2 gentoo-2-dcd9f028713005ae2f0c867b49db6d2c6f67758e.zip |
Marking 0.2.36-r1 stable (x86)
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-sound/esound/esound-0.2.35.ebuild')
-rw-r--r-- | media-sound/esound/esound-0.2.35.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/media-sound/esound/esound-0.2.35.ebuild b/media-sound/esound/esound-0.2.35.ebuild deleted file mode 100644 index 96d56a2974fd..000000000000 --- a/media-sound/esound/esound-0.2.35.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/esound/esound-0.2.35.ebuild,v 1.3 2004/11/04 22:06:53 vapier Exp $ - -inherit libtool gnome.org eutils - -DESCRIPTION="The Enlightened Sound Daemon" -HOMEPAGE="http://www.tux.org/~ricdude/EsounD.html" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64 ~mips ~ppc64 ~ppc-macos ~arm" -IUSE="tcpd alsa ipv6" - -DEPEND=">=media-libs/audiofile-0.1.5 - alsa? ( >=media-libs/alsa-lib-0.5.10b ) - tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 )" - -src_unpack() { - - unpack ${A} - cd ${S} - - epatch ${FILESDIR}/${PN}-0.2.32-amd64.patch - use ppc-macos && epatch ${FILESDIR}/${PN}-0.2.35-ppc-macos.patch -} - -src_compile() { - - elibtoolize - - econf \ - `use_with tcpd libwrap` \ - `use_enable alsa` \ - `use_enable ipv6` \ - --sysconfdir=/etc/esd \ - || die - - make || die - -} - -src_install() { - - einstall \ - sysconfdir=${D}/etc/esd \ - || die - - dodoc AUTHORS COPYING* ChangeLog README TODO NEWS TIPS - dodoc docs/esound.ps - - dohtml -r docs/html - - insinto /etc/conf.d - newins ${FILESDIR}/esound.conf.d esound - - exeinto /etc/init.d - extradepend="" - use tcpd && extradepend=" portmap" - use alsa && extradepend="$extradepend alsasound" - sed "s/@extradepend@/$extradepend/" <${FILESDIR}/esound.init.d >${T}/esound - doexe ${T}/esound - -} |