From owner-freebsd-multimedia@FreeBSD.ORG Sat Feb 21 23:30:04 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 161D3106564A for ; Sat, 21 Feb 2009 23:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 03FFE8FC14 for ; Sat, 21 Feb 2009 23:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n1LNU3sU049573 for ; Sat, 21 Feb 2009 23:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n1LNU3I1049570; Sat, 21 Feb 2009 23:30:03 GMT (envelope-from gnats) Date: Sat, 21 Feb 2009 23:30:03 GMT Message-Id: <200902212330.n1LNU3I1049570@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: Jan Henrik Sylvester Cc: Subject: Re: ports/131647: audio/libsndfile: Problem to build libsndfile-1.0.18 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Henrik Sylvester List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Feb 2009 23:30:04 -0000 The following reply was made to PR ports/131647; it has been noted by GNATS. From: Jan Henrik Sylvester To: bug-followup@FreeBSD.org, Rothemund Cc: Subject: Re: ports/131647: audio/libsndfile: Problem to build libsndfile-1.0.18 Date: Sun, 22 Feb 2009 00:22:57 +0100 This is a multi-part message in MIME format. --------------090803020601080806070305 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit In my mail to freebsd-multimedia, I suggested to unbreak audio/libsndfile with math/octave present by disabling octave for libsndfile: http://lists.freebsd.org/pipermail/freebsd-multimedia/2009-February/009745.html If we want octave support for libsndfile, it would have to be an OPTION anyhow not to have unpredictable dependencies. There might have to be a conditional pkg-plist. (I have not checked.) As long as that is not present, simply disabling octave seems sensible. I attach the patch again to have it linked to the pr. --------------090803020601080806070305 Content-Type: text/plain; name="libsndfile-disable-octave" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="libsndfile-disable-octave" diff -u audio/libsndfile/Makefile~ audio/libsndfile/Makefile --- audio/libsndfile/Makefile~ 2009-02-15 05:39:01.000000000 +0100 +++ audio/libsndfile/Makefile 2009-02-15 11:30:50.000000000 +0100 @@ -17,7 +17,8 @@ GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS= --disable-gcc-pipe \ - --disable-sqlite + --disable-sqlite \ + --disable-octave CONFIGURE_ENV= CPPFLAGS="-isystem /usr/include -isystem ${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" USE_LDCONFIG= yes --------------090803020601080806070305--