From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 26 13:00:02 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49FD71065670 for ; Sat, 26 Dec 2009 13:00:02 +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 051BE8FC0A for ; Sat, 26 Dec 2009 13:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBQD01Yp016565 for ; Sat, 26 Dec 2009 13:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBQD01jK016564; Sat, 26 Dec 2009 13:00:01 GMT (envelope-from gnats) Resent-Date: Sat, 26 Dec 2009 13:00:01 GMT Resent-Message-Id: <200912261300.nBQD01jK016564@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 807251065670 for ; Sat, 26 Dec 2009 12:52:50 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.113.20]) by mx1.freebsd.org (Postfix) with ESMTP id 34BC08FC0A for ; Sat, 26 Dec 2009 12:52:49 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1NOW6S-0002CG-J4; Sat, 26 Dec 2009 15:50:40 +0300 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 91643B84D; Sat, 26 Dec 2009 15:52:47 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 8A34CB829; Sat, 26 Dec 2009 15:52:47 +0300 (MSK) Message-Id: <20091226125247.8A34CB829@hades.panopticon> Date: Sat, 26 Dec 2009 15:52:47 +0300 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/142034: [PATCH] multimedia/libtheora: don't link with -lcompat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2009 13:00:02 -0000 >Number: 142034 >Category: ports >Synopsis: [PATCH] multimedia/libtheora: don't link with -lcompat >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 26 13:00:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 8.0-RELEASE i386 >Organization: >Environment: System: FreeBSD hades.panopticon 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Tue Nov 24 22:31:59 MSK 2009 >Description: After latest update to 1.1.1, libtheora links with -lcompat (configure.ac claims that's needed for OpenBSD). However on FreeBSD it's not needed, and also breaks dependent ports, at least gmerlin-avdecoder: http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/e.8.20091222210227/gmerlin-avdecoder-1.0.1_1.log thus, patch configure to not detect libcompat. Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libtheora-1.1.1_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/multimedia/libtheora/Makefile,v retrieving revision 1.26 diff -u -u -r1.26 Makefile --- Makefile 21 Dec 2009 03:00:51 -0000 1.26 +++ Makefile 26 Dec 2009 12:49:31 -0000 @@ -7,6 +7,7 @@ PORTNAME= libtheora PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://downloads.xiph.org/releases/theora/ \ http://distfiles.master.finkmirrors.net/ @@ -32,7 +33,8 @@ post-patch: @${REINPLACE_CMD} -e 's|doc||g' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's, x86_64), x86_64|amd64),' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's, x86_64), x86_64|amd64),; \ + /ac_lib/ s,compat,,' ${WRKSRC}/configure .if ${ARCH}=="amd64" @${REINPLACE_CMD} -e 's|#define OC_X86_ASM|#undef OC_X86_ASM|' ${WRKSRC}/configure .endif --- libtheora-1.1.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: