blob: d8924d3e6b6eeed38b1137c5f3e531eb8dfea1d3 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/pulseaudio/pulseaudio-0.9.2.ebuild,v 1.5 2006/07/18 17:43:39 flameeyes Exp $
inherit eutils libtool autotools
DESCRIPTION="A networked sound server with an advanced plugin system"
HOMEPAGE="http://0pointer.de/lennart/projects/pulseaudio/"
SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
LICENSE="LGPL-2 GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86-fbsd"
IUSE="alsa avahi caps howl jack lirc oss tcpd X"
RDEPEND="X? ( || ( x11-libs/libX11 <virtual/x11-7 ) )
caps? ( sys-libs/libcap )
>=media-libs/audiofile-0.2.6-r1
>=media-libs/libsamplerate-0.1.1-r1
>=media-libs/libsndfile-1.0.10
>=dev-libs/liboil-0.3.6
alsa? ( >=media-libs/alsa-lib-1.0.10 )
>=dev-libs/glib-2.4.0
howl? ( !avahi? ( >=net-misc/howl-0.9.8 )
avahi? ( net-dns/avahi ) )
>=dev-libs/liboil-0.3.0
jack? ( >=media-sound/jack-audio-connection-kit-0.100 )
tcpd? ( sys-apps/tcp-wrappers )
lirc? ( app-misc/lirc )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
if use howl && use avahi && ! built_with_use net-dns/avahi howl-compat ; then
echo
eerror "In order to compile polypaudio, you need to have net-dns/avahi emerged"
eerror "with 'howl-compat' in your USE flags. Please add that flag, re-emerge"
eerror "avahi, and then emerge polypaudio."
die "net-dns/avahi is missing the HOWL compatibility layer."
fi
enewgroup audio 18 # Just make sure it exists
enewgroup pulse
enewuser pulse -1 -1 /var/run/pulse pulse,audio
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-fbsd.patch"
epatch "${FILESDIR}/${P}-moduledetect.patch"
eautoreconf
elibtoolize
}
src_compile() {
local myconf
if use howl; then
myconf="${myconf} --enable-howl"
if use avahi; then
append-flags -I/usr/include/avahi-compat-howl
fi
fi
econf \
--enable-largefile \
--enable-glib2 \
--disable-glib1 \
--disable-solaris \
--disable-asyncns \
$(use_enable oss) \
$(use_enable alsa) \
$(use_enable lirc) \
$(use_enable tcpd tcpwrap) \
$(use_enable jack) \
$(use_enable lirc) \
$(use_with caps) \
$(use_with X x) \
--disable-ltdl-install \
--disable-dependency-tracking \
${myconf} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
local extradepend
emake DESTDIR="${D}" install || die "make install failed"
newconfd "${FILESDIR}/pulseaudio.conf.d" pulseaudio
use alsa && extradepend="$extradepend alsasound"
sed -e "s/@extradepend@/$extradepend/" "${FILESDIR}/pulseaudio.init.d" > "${T}/pulseaudio"
doinitd "${T}/pulseaudio"
# This section changes the configuration files so that they are ready for
# the system-wide pulseaudio daemon. The changes are:
# - use socket at /var/run/pulse/native
# - enable anonymous access (relies on filesystem-level access to the socket)
# - changes the dafault server path for the clients
sed -i -e '/load-module module-native-protocol-unix/s:$: auth-anonymous=1 socket=/var/run/pulse/native:' \
"${D}/etc/pulse/default.pa"
sed -i -e '/default-server/d' "${D}/etc/pulse/client.conf"
echo "default-server = unix:/var/run/pulse/native" >> \
"${D}/etc/pulse/client.conf"
dohtml -r doc
dodoc README doc/todo
}
|