Gentoo Archives: gentoo-commits

From: "Timo Gurr (tgurr)" <tgurr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mumble: ChangeLog mumble-1.2.1.ebuild mumble-1.2.0.ebuild
Date: Fri, 08 Jan 2010 21:00:47
Message-Id: E1NTLwq-0004LU-LD@stork.gentoo.org
1 tgurr 10/01/08 21:00:44
2
3 Modified: ChangeLog
4 Added: mumble-1.2.1.ebuild
5 Removed: mumble-1.2.0.ebuild
6 Log:
7 Version bump, remove old.
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 media-sound/mumble/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mumble/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mumble/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mumble/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/mumble/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 11 Dec 2009 00:06:39 -0000 1.24
24 +++ ChangeLog 8 Jan 2010 21:00:44 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/mumble
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mumble/ChangeLog,v 1.24 2009/12/11 00:06:39 tgurr Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mumble/ChangeLog,v 1.25 2010/01/08 21:00:44 tgurr Exp $
31 +
32 +*mumble-1.2.1 (08 Jan 2010)
33 +
34 + 08 Jan 2010; Timo Gurr <tgurr@g.o> -mumble-1.2.0.ebuild,
35 + +mumble-1.2.1.ebuild:
36 + Version bump, remove old.
37
38 *mumble-1.2.0 (11 Dec 2009)
39
40
41
42
43 1.1 media-sound/mumble/mumble-1.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mumble/mumble-1.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mumble/mumble-1.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mumble-1.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/mumble/mumble-1.2.1.ebuild,v 1.1 2010/01/08 21:00:44 tgurr Exp $
53
54 EAPI="2"
55
56 inherit eutils multilib qt4
57
58 MY_P="${PN}-${PV/_/~}"
59
60 DESCRIPTION="Mumble is an open source, low-latency, high quality voice chat software."
61 HOMEPAGE="http://mumble.sourceforge.net/"
62 SRC_URI="http://mumble.info/snapshot/${MY_P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="+alsa +dbus debug g15 oss pch portaudio pulseaudio speech zeroconf"
68
69 RDEPEND=">=dev-libs/boost-1.36.0-r1
70 dev-libs/openssl
71 >=dev-libs/protobuf-2.2.0
72 >=media-libs/celt-0.7.0
73 >=media-libs/libsndfile-1.0.20
74 >=media-libs/speex-1.2_rc1
75 x11-libs/qt-core:4[ssl]
76 x11-libs/qt-gui:4
77 x11-libs/qt-opengl:4
78 x11-libs/qt-sql:4[sqlite]
79 x11-libs/qt-svg:4
80 x11-libs/qt-xmlpatterns:4
81 x11-proto/inputproto
82 alsa? ( media-libs/alsa-lib )
83 dbus? ( x11-libs/qt-dbus:4 )
84 g15? ( app-misc/g15daemon )
85 portaudio? ( media-libs/portaudio )
86 pulseaudio? ( media-sound/pulseaudio )
87 speech? ( app-accessibility/speech-dispatcher )
88 zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) )"
89 DEPEND="${RDEPEND}
90 dev-util/pkgconfig"
91
92 S="${WORKDIR}/${MY_P}"
93
94 src_configure() {
95 local conf_add
96
97 if has_version '<=sys-devel/gcc-4.2'; then
98 conf_add="${conf_add} no-pch"
99 else
100 use pch || conf_add="${conf_add} no-pch"
101 fi
102
103 use alsa || conf_add="${conf_add} no-alsa"
104 use dbus || conf_add="${conf_add} no-dbus"
105 use debug && conf_add="${conf_add} symbols debug" || conf_add="${conf_add} release"
106 use g15 || conf_add="${conf_add} no-g15"
107 use oss || conf_add="${conf_add} no-oss"
108 use portaudio || conf_add="${conf_add} no-portaudio"
109 use pulseaudio || conf_add="${conf_add} no-pulseaudio"
110 use speech || conf_add="${conf_add} no-speechd"
111 use zeroconf || conf_add="${conf_add} no-bonjour"
112
113 eqmake4 "${S}/main.pro" -recursive \
114 CONFIG+="${conf_add} \
115 no-11x \
116 no-bundled-celt \
117 no-bundled-speex \
118 no-embed-qt-translations \
119 no-server" \
120 DEFINES+="PLUGIN_PATH=/usr/$(get_libdir)/mumble" \
121 || die "eqmake4 failed."
122 }
123
124 src_install() {
125 newdoc README.Linux README || die "Installing docs failed."
126 dodoc CHANGES || die "Installing docs failed."
127
128 local dir
129 if use debug; then
130 dir=debug
131 else
132 dir=release
133 fi
134
135 dobin "${dir}"/mumble || die "Installing mumble binary failed."
136 dobin scripts/mumble-overlay || die "Installing overlay script failed."
137
138 insinto /usr/share/services
139 doins scripts/mumble.protocol || die "Installing mumble.protocol file failed."
140
141 domenu scripts/mumble.desktop || die "Installing menu entry failed."
142
143 insinto /usr/share/icons/hicolor/scalable/apps
144 doins icons/mumble.svg || die "Installing icon failed."
145
146 doman man/mumble-overlay.1 || die "Installing mumble-overlay manpage failed."
147 doman man/mumble.1 || die "Installing mumble manpage failed."
148
149 insopts -o root -g root -m 0755
150 insinto "/usr/$(get_libdir)/mumble"
151 doins "${dir}"/lib*.so* || die "Installing plugins failed."
152 doins "${dir}"/plugins/lib*.so* || die "Installing plugins failed."
153 }
154
155 pkg_postinst() {
156 echo
157 elog "Visit http://mumble.sourceforge.net/ for futher configuration instructions."
158 elog "Run mumble-overlay to start the OpenGL overlay (after starting mumble)."
159 echo
160 }