From owner-freebsd-gnome@FreeBSD.ORG Wed Nov 27 11:10:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86DDA99D for ; Wed, 27 Nov 2013 11:10:02 +0000 (UTC) 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 775E928B7 for ; Wed, 27 Nov 2013 11:10:02 +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 rARBA1aK097789 for ; Wed, 27 Nov 2013 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rARBA1Pe097788; Wed, 27 Nov 2013 11:10:01 GMT (envelope-from gnats) Date: Wed, 27 Nov 2013 11:10:01 GMT Message-Id: <201311271110.rARBA1Pe097788@freefall.freebsd.org> To: gnome@FreeBSD.org From: Ruslan Makhmatkhanov Subject: Re: ports/182522 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: Ruslan Makhmatkhanov List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Nov 2013 11:10:02 -0000 The following reply was made to PR ports/182522; it has been noted by GNATS. From: Ruslan Makhmatkhanov To: bug-followup@FreeBSD.org, Koop Mast Cc: Subject: Re: ports/182522 Date: Wed, 27 Nov 2013 15:08:39 +0400 This is a multi-part message in MIME format. --------------090802030306070203080503 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Koop, I'm sorry, but the patch for espeak doesn't work for some reason. If I manually execute ./configure --without-espeak, then all is ok, but if I do `make configure` in port's dir (with espeak option disabled), then it will pick it up anyway. I checked the configure. There is also check for with-espeak-dir. If it's not ``no'', then it will try to build espeak. Dunno, may be this configure arg is enabled by default or something. Anyway, I was able to fix the breakage like this. Please see the patch attached. -- Regards, Ruslan T.O.S. Of Reality --------------090802030306070203080503 Content-Type: text/x-patch; name="espeak.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="espeak.patch" Index: Makefile =================================================================== --- Makefile (revision 335006) +++ Makefile (working copy) @@ -32,7 +32,7 @@ CONFIGURE_ARGS+=--with-espeak-dir=${LOCALBASE} PLIST_SUB+= ESPEAK:="" .else -CONFIGURE_ARGS+=--without-espeak +CONFIGURE_ARGS+=--without-espeak --with-espeak-dir=no PLIST_SUB+= ESPEAK:="@comment " .endif --------------090802030306070203080503--