From: "Timo Gurr (tgurr)" <tgurr@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/murmur: metadata.xml murmur-1.1.6.ebuild ChangeLog
Date: Fri, 31 Oct 2008 20:25:08 +0000 [thread overview]
Message-ID: <E1Kw0YO-0007QL-G2@stork.gentoo.org> (raw)
tgurr 08/10/31 20:25:08
Modified: metadata.xml murmur-1.1.6.ebuild ChangeLog
Log:
Fix dbus usage in init script and introduce ice USE flag. Thanks Dennis Schridde, Atman and Sascha Jüngling.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)
Revision Changes Path
1.5 media-sound/murmur/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/metadata.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/metadata.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/metadata.xml?r1=1.4&r2=1.5
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/murmur/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml 22 Oct 2008 23:34:35 -0000 1.4
+++ metadata.xml 31 Oct 2008 20:25:08 -0000 1.5
@@ -9,6 +9,8 @@
Mumble is a low-latency, high quality voice chat software primarily intended for use while gaming.
</longdescription>
<use>
+ <flag name='ice'>Use <pkg>dev-cpp/Ice</pkg> to enable remote control
+ capabilities</flag>
<flag name='logrotate'>Use <pkg>app-admin/logrotate</pkg> for rotating
logs</flag>
</use>
1.4 media-sound/murmur/murmur-1.1.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/murmur-1.1.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/murmur-1.1.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/murmur-1.1.6.ebuild?r1=1.3&r2=1.4
Index: murmur-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/murmur/murmur-1.1.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- murmur-1.1.6.ebuild 22 Oct 2008 23:34:35 -0000 1.3
+++ murmur-1.1.6.ebuild 31 Oct 2008 20:25:08 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/murmur-1.1.6.ebuild,v 1.3 2008/10/22 23:34:35 tgurr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/murmur-1.1.6.ebuild,v 1.4 2008/10/31 20:25:08 tgurr Exp $
EAPI="2"
@@ -16,16 +16,17 @@
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="debug logrotate pch"
+IUSE="debug +ice logrotate pch"
-RDEPEND="dev-cpp/Ice
- dev-libs/boost
+RDEPEND="
|| ( ( x11-libs/qt-core:4[ssl]
x11-libs/qt-dbus:4
|| ( x11-libs/qt-sql:4[sqlite] x11-libs/qt-sql:4[mysql] ) )
=x11-libs/qt-4.3*:4[dbus,ssl,sqlite3]
=x11-libs/qt-4.3*:4[dbus,ssl,mysql] )
- logrotate? ( app-admin/logrotate )"
+ ice? ( dev-cpp/Ice dev-libs/boost )
+ logrotate? ( app-admin/logrotate )
+"
DEPEND="${RDEPEND}"
@@ -46,6 +47,7 @@
src_configure() {
use debug && conf_add="${conf_add} symbols debug" || conf_add="${conf_add} release"
+ use ice || conf_add="${conf_add} no-ice"
use pch || echo "CONFIG-=precompile_header" >> src/mumble.pri
eqmake4 main.pro -recursive \
1.9 media-sound/murmur/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/murmur/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 22 Oct 2008 23:34:35 -0000 1.8
+++ ChangeLog 31 Oct 2008 20:25:08 -0000 1.9
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/murmur
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/ChangeLog,v 1.8 2008/10/22 23:34:35 tgurr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/ChangeLog,v 1.9 2008/10/31 20:25:08 tgurr Exp $
+
+ 31 Oct 2008; Timo Gurr <tgurr@gentoo.org> files/murmur.initd,
+ metadata.xml, murmur-1.1.6.ebuild:
+ Fix dbus usage in init script and introduce ice USE flag. Thanks Dennis
+ Schridde, Atman and Sascha Jüngling.
22 Oct 2008; Timo Gurr <tgurr@gentoo.org> metadata.xml,
murmur-1.1.6.ebuild:
next reply other threads:[~2008-10-31 20:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-31 20:25 Timo Gurr (tgurr) [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-10-22 23:34 [gentoo-commits] gentoo-x86 commit in media-sound/murmur: metadata.xml murmur-1.1.6.ebuild ChangeLog Timo Gurr (tgurr)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1Kw0YO-0007QL-G2@stork.gentoo.org \
--to=tgurr@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox