blob: 690847745c4c924eecfcf1f990cd88b600afbb81 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mumble/mumble-1.2.0.ebuild,v 1.1 2009/12/11 00:06:39 tgurr Exp $
EAPI="2"
inherit eutils multilib qt4
MY_P="${PN}-${PV/_/~}"
DESCRIPTION="Mumble is an open source, low-latency, high quality voice chat software."
HOMEPAGE="http://mumble.sourceforge.net/"
SRC_URI="http://mumble.info/snapshot/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+alsa +dbus debug g15 oss pch portaudio pulseaudio speech zeroconf"
RDEPEND=">=dev-libs/boost-1.36.0-r1
dev-libs/openssl
>=dev-libs/protobuf-2.2.0
>=media-libs/celt-0.7.0
>=media-libs/libsndfile-1.0.20
>=media-libs/speex-1.2_rc1
x11-libs/qt-core:4[ssl]
x11-libs/qt-gui:4
x11-libs/qt-opengl:4
x11-libs/qt-sql:4[sqlite]
x11-libs/qt-svg:4
x11-libs/qt-xmlpatterns:4
x11-proto/inputproto
alsa? ( media-libs/alsa-lib )
dbus? ( x11-libs/qt-dbus:4 )
g15? ( app-misc/g15daemon )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
speech? ( app-accessibility/speech-dispatcher )
zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}/${MY_P}"
src_configure() {
local conf_add
if has_version '<=sys-devel/gcc-4.2'; then
conf_add="${conf_add} no-pch"
else
use pch || conf_add="${conf_add} no-pch"
fi
use alsa || conf_add="${conf_add} no-alsa"
use dbus || conf_add="${conf_add} no-dbus"
use debug && conf_add="${conf_add} symbols debug" || conf_add="${conf_add} release"
use g15 || conf_add="${conf_add} no-g15"
use oss || conf_add="${conf_add} no-oss"
use portaudio || conf_add="${conf_add} no-portaudio"
use pulseaudio || conf_add="${conf_add} no-pulseaudio"
use speech || conf_add="${conf_add} no-speechd"
use zeroconf || conf_add="${conf_add} no-bonjour"
eqmake4 "${S}/main.pro" -recursive \
CONFIG+="${conf_add} \
no-11x \
no-bundled-celt \
no-bundled-speex \
no-embed-qt-translations \
no-server" \
DEFINES+="PLUGIN_PATH=/usr/$(get_libdir)/mumble" \
|| die "eqmake4 failed."
}
src_install() {
newdoc README.Linux README || die "Installing docs failed."
dodoc CHANGES || die "Installing docs failed."
local dir
if use debug; then
dir=debug
else
dir=release
fi
dobin "${dir}"/mumble || die "Installing mumble binary failed."
dobin scripts/mumble-overlay || die "Installing overlay script failed."
insinto /usr/share/services
doins scripts/mumble.protocol || die "Installing mumble.protocol file failed."
domenu scripts/mumble.desktop || die "Installing menu entry failed."
insinto /usr/share/icons/hicolor/scalable/apps
doins icons/mumble.svg || die "Installing icon failed."
doman man/mumble-overlay.1 || die "Installing mumble-overlay manpage failed."
doman man/mumble.1 || die "Installing mumble manpage failed."
insopts -o root -g root -m 0755
insinto "/usr/$(get_libdir)/mumble"
doins "${dir}"/lib*.so* || die "Installing plugins failed."
doins "${dir}"/plugins/lib*.so* || die "Installing plugins failed."
}
pkg_postinst() {
echo
elog "Visit http://mumble.sourceforge.net/ for futher configuration instructions."
elog "Run mumble-overlay to start the OpenGL overlay (after starting mumble)."
echo
}
|