polynomial-c 14/08/08 18:26:05 Modified: ChangeLog Added: umurmur-0.2.15.ebuild Removed: umurmur-0.2.13.ebuild umurmur-0.2.13-r1.ebuild Log: Version bump. Removed old (Portage version: 2.2.11-r1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Revision Changes Path 1.18 media-sound/umurmur/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/umurmur/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 24 Jun 2014 19:23:06 -0000 1.17 +++ ChangeLog 8 Aug 2014 18:26:05 -0000 1.18 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/umurmur # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/ChangeLog,v 1.17 2014/06/24 19:23:06 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/ChangeLog,v 1.18 2014/08/08 18:26:05 polynomial-c Exp $ + +*umurmur-0.2.15 (08 Aug 2014) + + 08 Aug 2014; Lars Wendler <[email protected]> -umurmur-0.2.13.ebuild, + -umurmur-0.2.13-r1.ebuild, +umurmur-0.2.15.ebuild: + Version bump. Removed old. 24 Jun 2014; Markus Meier <[email protected]> umurmur-0.2.14.ebuild: add ~arm, bug #512550 1.1 media-sound/umurmur/umurmur-0.2.15.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/umurmur-0.2.15.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/umurmur-0.2.15.ebuild?rev=1.1&content-type=text/plain Index: umurmur-0.2.15.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/umurmur-0.2.15.ebuild,v 1.1 2014/08/08 18:26:05 polynomial-c Exp $ EAPI=5 inherit autotools systemd eutils readme.gentoo user DESCRIPTION="Minimalistic Murmur (Mumble server)" HOMEPAGE="http://code.google.com/p/umurmur/ https://github.com/fatbob313/umurmur" SRC_URI="https://github.com/fatbob313/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="polarssl" DEPEND=">=dev-libs/protobuf-c-1.0.0_rc2 dev-libs/libconfig polarssl? ( >=net-libs/polarssl-1.0.0 ) !polarssl? ( dev-libs/openssl:0 )" RDEPEND="${DEPEND}" DOC_CONTENTS=" A configuration file has been installed at /etc/umurmur.conf - you may want to review it. See also\n http://code.google.com/p/umurmur/wiki/Configuring02x " pkg_setup() { enewgroup murmur enewuser murmur "" "" "" murmur } src_prepare() { eautoreconf } src_configure() { local myconf # build uses polarssl by default, but instead, make it use openssl # unless polarssl is desired. use !polarssl && myconf="${myconf} --with-ssl=openssl" econf ${myconf} } src_install() { local confdir emake DESTDIR="${D}" install newinitd "${FILESDIR}"/umurmurd.initd umurmurd newconfd "${FILESDIR}"/umurmurd.confd umurmurd systemd_dounit "${FILESDIR}"/umurmurd.service dodoc AUTHORS ChangeLog newdoc README.md README confdir="/etc/umurmur" insinto "${confdir}" doins "${FILESDIR}"/umurmur.conf # Some permissions are adjusted as the config may contain a server # password, and /etc/umurmur will typically contain the cert and the # key used to sign it, which are read after priveleges are dropped. fperms 0750 "${confdir}" fowners -R root:murmur "${confdir}" fperms 0640 "${confdir}"/umurmur.conf readme.gentoo_create_doc } pkg_postinst() { readme.gentoo_print_elog if use polarssl ; then elog elog "Because you have enabled PolarSSL support, umurmurd will use a" elog "predefined test-certificate and key if none are configured, which" elog "is insecure. See http://code.google.com/p/umurmur/wiki/Installing02x#Installing_uMurmur_with_PolarSSL_support" elog "for more information on how to create your certificate and key" fi }
