blob: 2ac708a946c5aa52b618af27999e5b36bbbe0840 (
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
|
# 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.1.8.ebuild,v 1.3 2009/03/25 18:49:49 tgurr Exp $
EAPI="2"
inherit eutils multilib qt4
DESCRIPTION="Voice chat software for gaming written in Qt4."
HOMEPAGE="http://mumble.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+alsa +dbus debug g15 oss pch portaudio pulseaudio speech"
RDEPEND="dev-libs/boost
>=media-libs/speex-1.2_beta3_p2
x11-libs/qt-core:4[ssl]
x11-libs/qt-gui:4
x11-libs/qt-opengl:4
x11-libs/qt-sql:4[sqlite]
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 )"
DEPEND="${RDEPEND}"
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"
eqmake4 "${S}/main.pro" -recursive \
CONFIG+="${conf_add} no-bundled-speex no-embed-qt-translations no-server no-xevie" \
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."
CONF_LIBDIR="$(get_libdir)/mumble" dolib.so "${dir}"/lib*.so* || die "Installing libraries failed."
CONF_LIBDIR="$(get_libdir)/mumble" dolib.so "${dir}"/plugins/lib*.so* || die "Installing libraries failed."
insinto /usr/share/services
doins scripts/mumble.protocol || die "Installing mumble.protocol file failed."
dobin scripts/mumble-overlay || die "Installing overlay script failed."
newicon icons/mumble.64x64.png mumble.png || die "Installing icon failed."
domenu scripts/mumble.desktop || die "Installing menu entry failed."
doman man/mumble-overlay.1 || die "Installing mumble-overlay manpage failed."
doman man/mumble.1 || die "Installing mumble manpage failed."
}
pkg_postinst() {
echo
elog "Visit http://mumble.sourceforge.net/Audio_Tuning for futher configuration."
elog "Run mumble-overlay to start the OpenGL overlay (after starting mumble)."
echo
}
|