public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/murmur: metadata.xml ChangeLog murmur-1.1.8.ebuild murmur-1.1.7.ebuild
@ 2009-03-25  6:03 Timo Gurr (tgurr)
  0 siblings, 0 replies; only message in thread
From: Timo Gurr (tgurr) @ 2009-03-25  6:03 UTC (permalink / raw
  To: gentoo-commits

tgurr       09/03/25 06:03:03

  Modified:             metadata.xml ChangeLog
  Added:                murmur-1.1.8.ebuild
  Removed:              murmur-1.1.7.ebuild
  Log:
  Version bump, also fixing bug #258181. Remove old.
  (Portage version: 2.2_rc27/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  media-sound/murmur/metadata.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/metadata.xml?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/metadata.xml?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/metadata.xml?r1=1.6&r2=1.7

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/murmur/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml	30 Jan 2009 01:16:39 -0000	1.6
+++ metadata.xml	25 Mar 2009 06:03:03 -0000	1.7
@@ -10,6 +10,5 @@
 </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>
 </pkgmetadata>



1.12                 media-sound/murmur/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/murmur/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	30 Jan 2009 01:23:09 -0000	1.11
+++ ChangeLog	25 Mar 2009 06:03:03 -0000	1.12
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/murmur
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/ChangeLog,v 1.11 2009/01/30 01:23:09 tgurr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/ChangeLog,v 1.12 2009/03/25 06:03:03 tgurr Exp $
+
+*murmur-1.1.8 (25 Mar 2009)
+
+  25 Mar 2009; Timo Gurr <tgurr@gentoo.org> metadata.xml,
+  -murmur-1.1.7.ebuild, +murmur-1.1.8.ebuild:
+  Version bump, also fixing bug #258181. Remove old.
 
   30 Jan 2009; Timo Gurr <tgurr@gentoo.org> murmur-1.1.7.ebuild:
   Add suggested pch change by Atman Sense, bug #256852.



1.1                  media-sound/murmur/murmur-1.1.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/murmur-1.1.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/murmur/murmur-1.1.8.ebuild?rev=1.1&content-type=text/plain

Index: murmur-1.1.8.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/murmur/murmur-1.1.8.ebuild,v 1.1 2009/03/25 06:03:03 tgurr Exp $

EAPI="2"

inherit eutils qt4

MY_PN="mumble"
MY_P=${MY_PN}-${PV}

DESCRIPTION="Voice chat software for gaming written in Qt4 (server)."
HOMEPAGE="http://mumble.sourceforge.net/"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +ice pch"

RDEPEND="
	x11-libs/qt-core:4[ssl]
	x11-libs/qt-dbus:4
	|| ( x11-libs/qt-sql:4[sqlite] x11-libs/qt-sql:4[mysql] )
	ice? ( dev-cpp/Ice dev-libs/boost )
"

DEPEND="${RDEPEND}"

S="${WORKDIR}"/${MY_P}

pkg_setup() {
	enewgroup murmur
	enewuser murmur -1 -1 /var/lib/murmur murmur
}

src_prepare() {
	sed -i \
		-e 's:mumble-server:murmur:g' \
		scripts/murmur.conf \
		scripts/murmur.ini.system \
		|| die "sed failed."
}

src_configure() {
	local conf_add
	use debug && conf_add="${conf_add} symbols debug" || conf_add="${conf_add} release"
	use ice || conf_add="${conf_add} no-ice"
	use pch || conf_add="${conf_add} no-pch"

	eqmake4 main.pro -recursive \
		CONFIG+="${conf_add} no-client no-bundled-speex" \
		|| die "eqmake4 failed."
}

src_install() {
	dodoc README CHANGES || die "Installing docs failed."

	docinto scripts
	dodoc scripts/*.php scripts/*.pl || die "Installing docs failed."

	local dir
	if use debug; then
		dir=debug
	else
		dir=release
	fi

	dobin "${dir}"/murmurd || die "Installing murmurd binary failed."

	insinto /etc/murmur/
	newins scripts/murmur.ini.system murmur.ini || die "Installing murmur.ini configuration file failed."

	insinto /etc/logrotate.d/
	newins "${FILESDIR}"/murmur.logrotate murmur || die "Installing murmur logrotate file failed."

	insinto /etc/dbus-1/system.d/
	doins scripts/murmur.conf || die "Installing murmur.conf dbus configuration file failed."

	newinitd "${FILESDIR}"/murmur.initd murmur || die "Installing murmur init.d file failed."
	newconfd "${FILESDIR}"/murmur.confd murmur || die "Installing murmur conf.d file failed."

	keepdir /var/lib/murmur /var/run/murmur /var/log/murmur
	fowners -R murmur /var/lib/murmur /var/run/murmur /var/log/murmur || die "fowners failed."
	fperms 750 /var/lib/murmur /var/run/murmur /var/log/murmur || die "fperms failed."

	doman man/murmurd.1 || die "Installing murmur manpage failed."
}

pkg_postinst() {
	echo
	elog "Useful scripts are located in /usr/share/doc/${PF}/scripts."
	elog "Please execute:"
	elog "murmurd -ini /etc/murmur/murmur.ini -supw <pw>"
	elog "chown murmur:murmur /var/lib/murmur/murmur.sqlite"
	elog "to set the build-in 'SuperUser' password before starting murmur."
	elog "Please restart dbus before starting murmur, or else dbus"
	elog "registration will fail."
	echo
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-25  6:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-25  6:03 [gentoo-commits] gentoo-x86 commit in media-sound/murmur: metadata.xml ChangeLog murmur-1.1.8.ebuild murmur-1.1.7.ebuild Timo Gurr (tgurr)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox