From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 18:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1B1A515F for ; Wed, 25 Sep 2013 18:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E15642A60 for ; Wed, 25 Sep 2013 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8PIe1iF085217 for ; Wed, 25 Sep 2013 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PIe1ji085216; Wed, 25 Sep 2013 18:40:01 GMT (envelope-from gnats) Date: Wed, 25 Sep 2013 18:40:01 GMT Message-Id: <201309251840.r8PIe1ji085216@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: David Demelier Subject: [patch] Re: ports/182215: audio/mumble: no sound, failed to load CELT plugins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: David Demelier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 18:40:02 -0000 The following reply was made to PR ports/182215; it has been noted by GNATS. From: David Demelier To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: [patch] Re: ports/182215: audio/mumble: no sound, failed to load CELT plugins Date: Wed, 25 Sep 2013 20:38:29 +0200 This is a multi-part message in MIME format. --------------050305060101080604090807 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 18.09.2013 22:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/182215'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=182215 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: audio/mumble: no sound, failed to load CELT plugins >> Arrival-Date: Wed Sep 18 20:40:00 UTC 2013 It seems that the installation of libcelt0 renamed to libcelt-mumble caused the issue. For now no other port install libcelt.so.0.(7|11).0 so I install just like the application should do. Please commit it as soon as possible as the port is just unusable yet. Regards --------------050305060101080604090807 Content-Type: text/x-patch; name="mumble.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mumble.diff" --- Makefile.orig 2013-09-25 19:45:14.000000000 +0200 +++ Makefile 2013-09-25 19:48:06.000000000 +0200 @@ -58,8 +58,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/release/mumble ${PREFIX}/bin - ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.11.0 ${PREFIX}/lib/libcelt-mumble.so.0.11.0 - ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.7.0 ${PREFIX}/lib/libcelt-mumble.so.0.7.0 + ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.11.0 ${PREFIX}/lib/libcelt0.so.0.11.0 + ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.7.0 ${PREFIX}/lib/libcelt0.so.0.7.0 ${INSTALL_LIB} ${WRKSRC}/release/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so.1.2.4 ${LN} -s ${PREFIX}/lib/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so ${LN} -s ${PREFIX}/lib/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so.1 --- pkg-plist.orig 2013-09-25 19:47:46.000000000 +0200 +++ pkg-plist 2013-09-25 19:47:56.000000000 +0200 @@ -1,6 +1,6 @@ bin/mumble -lib/libcelt-mumble.so.0.11.0 -lib/libcelt-mumble.so.0.7.0 +lib/libcelt0.so.0.11.0 +lib/libcelt0.so.0.7.0 lib/libmumble.so lib/libmumble.so.1 lib/libmumble.so.1.2 --------------050305060101080604090807--