From owner-freebsd-multimedia@FreeBSD.ORG Tue Aug 25 16:10:05 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 07D86106568E for ; Tue, 25 Aug 2009 16:10:05 +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 EB4448FC19 for ; Tue, 25 Aug 2009 16:10:04 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7PGA36k053456 for ; Tue, 25 Aug 2009 16:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7PGA3j7053455; Tue, 25 Aug 2009 16:10:03 GMT (envelope-from gnats) Date: Tue, 25 Aug 2009 16:10:03 GMT Message-Id: <200908251610.n7PGA3j7053455@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: P Szmytka Cc: Subject: Re: ports/138056: multimedia/ogle: buggy pre-configure X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: P Szmytka List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Aug 2009 16:10:05 -0000 The following reply was made to PR ports/138056; it has been noted by GNATS. From: P Szmytka To: bug-followup@FreeBSD.org, kalten@gmx.at Cc: Subject: Re: ports/138056: multimedia/ogle: buggy pre-configure Date: Tue, 25 Aug 2009 16:31:05 +0100 --=-XcmrWyjS+4A1M6+/geFU Content-Type: text/plain Content-Transfer-Encoding: 7bit I needed to escape the hash for the patch to work for me. I've attached the amended patch. Anyway thanks edwin, great job! Cheers, Szmytson --=-XcmrWyjS+4A1M6+/geFU Content-Disposition: attachment; filename="ogle.patch" Content-Type: text/x-patch; name="ogle.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit --- Makefile 2009-08-25 16:27:54.000000000 +0100 +++ Makefile.szmytkap 2009-08-25 15:55:10.000000000 +0100 @@ -65,7 +65,7 @@ # hack to make ogle work with liba52 + djbfft .if exists(${LOCALBASE}/lib/liba52.la) -LIBA52_DEP_LIBS!= ${GREP} dependency_libs ${LOCALBASE}/lib/liba52.la | ${CUT} -d \' -f 2 +LIBA52_DEP_LIBS!= ${GREP} dependency_libs ${LOCALBASE}/lib/liba52.la | ${GREP} -v ^"[ \t]*\#" | ${CUT} -d \' -f 2 .else LIBA52_DEP_LIBS= .endif --=-XcmrWyjS+4A1M6+/geFU--