blob: 132e073ecabf2912a54bf581b6957f33aaa621cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/esound/esound-0.2.29-r1.ebuild,v 1.7 2003/07/18 21:43:37 tester Exp $
IUSE="tcpd alsa"
inherit libtool
S=${WORKDIR}/${P}
DESCRIPTION="The Enlightened Sound Daemon"
SRC_URI="mirror://gnome/2.0.1/sources/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.tux.org/~ricdude/EsounD.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc ~ppc ~alpha ~hppa amd64"
DEPEND=" >=media-libs/audiofile-0.1.9
alsa? ( >=media-libs/alsa-lib-0.5.10b )
tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-alsa-period.diff
epatch ${FILESDIR}/${P}-local-vs-remote.diff
}
src_compile() {
elibtoolize
local myconf=""
use tcpd && myconf="${myconf} --with-libwrap" \
|| myconf="${myconf} --without-libwrap"
use alsa && myconf="${myconf} --enable-alsa" \
|| myconf="${myconf} --enable-alsa=no"
econf \
--sysconfdir=/etc/esd \
${myconf} || 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
}
pkg_postinst() {
# rebuild init deps to include deps on esound
/etc/init.d/depscan.sh
}
pkg_postrm() {
# rebuild init deps to remove deps on esound
/etc/init.d/depscan.sh
}
|