From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 14 08:18:49 2014 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0B53131; Sun, 14 Dec 2014 08:18:49 +0000 (UTC) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id B4AC2B18; Sun, 14 Dec 2014 08:18:48 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id KAA29083; Sun, 14 Dec 2014 10:20:34 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1Y04Nz-000FDR-Do; Sun, 14 Dec 2014 10:18:39 +0200 Message-ID: <548D478C.7020508@FreeBSD.org> Date: Sun, 14 Dec 2014 10:17:16 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: ports , freebsd-multimedia@FreeBSD.org Subject: libgstreamer-0.10.so.0: Undefined symbol "ppoll" Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Dec 2014 08:18:49 -0000 I have a program linked to libgstreamer and after upgrading to the latest official packages (gstreamer-0.10.36_2) the program does not run anymore: /usr/local/lib/libgstreamer-0.10.so.0: Undefined symbol "ppoll" Indeed: $ nm -D /usr/local/lib/libgstreamer-0.10.so.0 | fgrep ppoll U ppoll I wonder what package provides a library that provides the required ppoll on FreeBSD. Thank you! -- Andriy Gapon From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 14 08:36:32 2014 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 958B428B; Sun, 14 Dec 2014 08:36:32 +0000 (UTC) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23FEDC91; Sun, 14 Dec 2014 08:36:31 +0000 (UTC) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.14.9/8.14.9) with ESMTP id sBE8aR56023080 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 14 Dec 2014 10:36:27 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.9.2 kib.kiev.ua sBE8aR56023080 Received: (from kostik@localhost) by tom.home (8.14.9/8.14.9/Submit) id sBE8aRwT023079; Sun, 14 Dec 2014 10:36:27 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 14 Dec 2014 10:36:27 +0200 From: Konstantin Belousov To: Andriy Gapon Subject: Re: libgstreamer-0.10.so.0: Undefined symbol "ppoll" Message-ID: <20141214083627.GA2148@kib.kiev.ua> References: <548D478C.7020508@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <548D478C.7020508@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on tom.home Cc: freebsd-multimedia@FreeBSD.org, ports X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Dec 2014 08:36:32 -0000 On Sun, Dec 14, 2014 at 10:17:16AM +0200, Andriy Gapon wrote: > > I have a program linked to libgstreamer and after upgrading to the latest > official packages (gstreamer-0.10.36_2) the program does not run anymore: > /usr/local/lib/libgstreamer-0.10.so.0: Undefined symbol "ppoll" > > Indeed: > $ nm -D /usr/local/lib/libgstreamer-0.10.so.0 | fgrep ppoll > U ppoll > > I wonder what package provides a library that provides the required ppoll on > FreeBSD. The symbol is provided by libc.so.7. What is your branch, and how old is your world ? From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 14 09:15:05 2014 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CFAA898; Sun, 14 Dec 2014 09:15:05 +0000 (UTC) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 2EC5DFA9; Sun, 14 Dec 2014 09:15:03 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id LAA29612; Sun, 14 Dec 2014 11:16:55 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1Y05GX-000FGG-4l; Sun, 14 Dec 2014 11:15:01 +0200 Message-ID: <548D54DD.6000806@FreeBSD.org> Date: Sun, 14 Dec 2014 11:14:05 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Konstantin Belousov Subject: Re: libgstreamer-0.10.so.0: Undefined symbol "ppoll" References: <548D478C.7020508@FreeBSD.org> <20141214083627.GA2148@kib.kiev.ua> In-Reply-To: <20141214083627.GA2148@kib.kiev.ua> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: freebsd-multimedia@FreeBSD.org, ports X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Dec 2014 09:15:05 -0000 On 14/12/2014 10:36, Konstantin Belousov wrote: > On Sun, Dec 14, 2014 at 10:17:16AM +0200, Andriy Gapon wrote: >> >> I have a program linked to libgstreamer and after upgrading to the latest >> official packages (gstreamer-0.10.36_2) the program does not run anymore: >> /usr/local/lib/libgstreamer-0.10.so.0: Undefined symbol "ppoll" >> >> Indeed: >> $ nm -D /usr/local/lib/libgstreamer-0.10.so.0 | fgrep ppoll >> U ppoll >> >> I wonder what package provides a library that provides the required ppoll on >> FreeBSD. > > The symbol is provided by libc.so.7. What is your branch, and how old is > your world ? > Thank you for the quick answer! This is head, r273579, almost two months old. I guess I need to catch up. -- Andriy Gapon From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 14 09:55:14 2014 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAF5EF2A for ; Sun, 14 Dec 2014 09:55:14 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6A9236D for ; Sun, 14 Dec 2014 09:55:14 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id sBE9tEqT097399 for ; Sun, 14 Dec 2014 09:55:14 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id sBE9tEsQ097398; Sun, 14 Dec 2014 09:55:14 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201412140955.sBE9tEsQ097398@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Sun, 14 Dec 2014 09:55:14 +0000 From: portscout@FreeBSD.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Dec 2014 09:55:14 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ net/liveMedia | 2013.11.29 | 2014.12.13 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 14 21:08:05 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D822205 for ; Sun, 14 Dec 2014 21:08:05 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8AA3F2C for ; Sun, 14 Dec 2014 21:08:04 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBEL84sl006078 for ; Sun, 14 Dec 2014 21:08:04 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201412142108.sBEL84sl006078@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: multimedia@FreeBSD.org Subject: Problem reports for multimedia@FreeBSD.org that need special attention X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Date: Sun, 14 Dec 2014 21:08:04 +0000 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Dec 2014 21:08:05 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- New | 194922 | [UPDATE] multimedia/gstreamer1 to 1.4.4 In Progress | 195573 | audio/jack: move doxygen out of DOCS and disable In Progress | 195533 | audio/jack can not be upgraded 3 problems total for which you should take action. From owner-freebsd-multimedia@FreeBSD.ORG Mon Dec 15 14:52:03 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74361FEB for ; Mon, 15 Dec 2014 14:52:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BEF48B1 for ; Mon, 15 Dec 2014 14:52:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBFEq3Ha044761 for ; Mon, 15 Dec 2014 14:52:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 194399] [patch] comms/spandsp: update to 0.0.6 Date: Mon, 15 Dec 2014 14:52:03 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: madpilot@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pawel@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Dec 2014 14:52:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194399 --- Comment #7 from Guido Falsi --- Please note I just added net/asterisk13. It still uses the spandsp-devel port. It will need the same patch as asterisk11. Thanks. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Mon Dec 15 18:47:11 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01DA0B44 for ; Mon, 15 Dec 2014 18:47:11 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE4537A7 for ; Mon, 15 Dec 2014 18:47:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBFIlAuL070171 for ; Mon, 15 Dec 2014 18:47:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 194399] [patch] comms/spandsp: update to 0.0.6 Date: Mon, 15 Dec 2014 18:47:10 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pawel@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Dec 2014 18:47:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194399 --- Comment #8 from commit-hook@freebsd.org --- A commit references this bug: Author: pawel Date: Mon Dec 15 18:47:04 UTC 2014 New revision: 374761 URL: https://svnweb.freebsd.org/changeset/ports/374761 Log: - Update comms/spandsp to version 0.0.6 [1] - Convert all comms/spandsp-devel consumers to use newer comms/spandsp - Bump affected ports - Mark comms/spandsp-devel as deprecated and set expiration date - Add upgrade instructions to UPDATING PR: 194399 [1] Submitted by: Nikola Kolev [1] Approved by: madpilot (asterisk ports), maintainer timeout (other) Changes: head/UPDATING head/comms/gstreamer1-plugins-spandsp/Makefile head/comms/spandsp/Makefile head/comms/spandsp/distinfo head/comms/spandsp/files/patch-Makefile.am head/comms/spandsp/files/patch-configure.ac head/comms/spandsp/pkg-plist head/comms/spandsp-devel/Makefile head/misc/libsupertone/Makefile head/multimedia/gstreamer1-plugins/Makefile.common head/net/asterisk/Makefile head/net/asterisk11/Makefile head/net/asterisk13/Makefile head/net/mediastreamer/Makefile head/net/opal/Makefile head/net/yate/Makefile -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Mon Dec 15 18:47:48 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E73D5BB6 for ; Mon, 15 Dec 2014 18:47:48 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF6027BB for ; Mon, 15 Dec 2014 18:47:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBFIlmJ9070400 for ; Mon, 15 Dec 2014 18:47:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 194399] [patch] comms/spandsp: update to 0.0.6 Date: Mon, 15 Dec 2014 18:47:48 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pawel@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pawel@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Dec 2014 18:47:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194399 Pawel Pekala changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 16 09:38:37 2014 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB16098B for ; Tue, 16 Dec 2014 09:38:37 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9714F1F7 for ; Tue, 16 Dec 2014 09:38:37 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id sBG9cbA2072400 for ; Tue, 16 Dec 2014 09:38:37 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id sBG9cbkw072399; Tue, 16 Dec 2014 09:38:37 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201412160938.sBG9cbkw072399@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Tue, 16 Dec 2014 09:38:37 +0000 From: portscout@FreeBSD.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Dec 2014 09:38:37 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ multimedia/ffmpeg | 2.3.5 | 2.5.1 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 16 14:24:53 2014 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82B0FBE4 for ; Tue, 16 Dec 2014 14:24:53 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6996797A for ; Tue, 16 Dec 2014 14:24:53 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBGEOrNH002350 for ; Tue, 16 Dec 2014 14:24:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-multimedia@FreeBSD.org Subject: [Bug 159236] [pcm] [patch] set PCM_CAP_DEFAULT for the default snd device's caps Date: Tue, 16 Dec 2014 14:24:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dbn@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Dec 2014 14:24:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=159236 David Naylor changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Overcome By Events Status|In Progress |Closed CC| |dbn@FreeBSD.org --- Comment #4 from David Naylor --- To my knowledge, Wine was the only software having an issue with this, and it no longer has such a problem. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 16 16:54:24 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7267D1FA for ; Tue, 16 Dec 2014 16:54:24 +0000 (UTC) Received: from mail.server1.bsdforen.de (bsdforen.de [82.193.243.81]) by mx1.freebsd.org (Postfix) with ESMTP id 3234CC27 for ; Tue, 16 Dec 2014 16:54:23 +0000 (UTC) Received: from AprilRyan.norad (iz-aix-213a.HS-Karlsruhe.DE [193.196.64.213]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.server1.bsdforen.de (Postfix) with ESMTPSA id 08F8D844D8 for ; Tue, 16 Dec 2014 17:43:49 +0100 (CET) Message-ID: <54906146.3010303@freebsd.org> Date: Tue, 16 Dec 2014 17:43:50 +0100 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: multimedia@FreeBSD.org Subject: [patch] multimedia/ffmpeg fix for libvdpau dependency Content-Type: multipart/mixed; boundary="------------060302010809040001080708" X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Dec 2014 16:54:24 -0000 This is a multi-part message in MIME format. --------------060302010809040001080708 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit libvdpau is only a build dependency, even though it is dynamically linked. I.e. after running /pkg autoremove/ running ffmpeg failed: # ffmpeg Shared object "libvdpau.so.1" not found, required by "ffmpeg" -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? --------------060302010809040001080708 Content-Type: text/plain; charset=UTF-8; name="patch-ports-multimedia-ffmpeg.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-ports-multimedia-ffmpeg.txt" SW5kZXg6IG11bHRpbWVkaWEvZmZtcGVnL01ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIG11 bHRpbWVkaWEvZmZtcGVnL01ha2VmaWxlCShyZXZpc2lvbiAzNzQ4MDkpCisrKyBtdWx0aW1l ZGlhL2ZmbXBlZy9NYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMTc4LDcgKzE3OCw3IEBA CiBWQUFQSV9DT05GSUdVUkVfRU5BQkxFPQl2YWFwaQogCiAjIHZkcGF1Ci1WRFBBVV9CVUlM RF9ERVBFTkRTPQkke0xPQ0FMQkFTRX0vaW5jbHVkZS92ZHBhdS92ZHBhdS5oOiR7UE9SVFNE SVJ9L211bHRpbWVkaWEvbGlidmRwYXUKK1ZEUEFVX0xJQl9ERVBFTkRTPQlsaWJ2ZHBhdS5z bzoke1BPUlRTRElSfS9tdWx0aW1lZGlhL2xpYnZkcGF1CiBWRFBBVV9DT05GSUdVUkVfRU5B QkxFPQl2ZHBhdQogCiAjIHZvLWFhY2VuYwo= --------------060302010809040001080708-- From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 07:33:29 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 994F5F22; Wed, 17 Dec 2014 07:33:29 +0000 (UTC) Received: from beefy1.isc.freebsd.org (beefy1.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77E7B846; Wed, 17 Dec 2014 07:33:29 +0000 (UTC) Received: from beefy1.isc.freebsd.org (localhost [127.0.0.1]) by beefy1.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBH7XTvg054429; Wed, 17 Dec 2014 07:33:29 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBH7XTEG054425; Wed, 17 Dec 2014 07:33:29 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Wed, 17 Dec 2014 07:33:29 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412170733.sBH7XTEG054425@beefy1.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - 10i386-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 07:33:29 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy1.isc.freebsd.org/data/10i386-default/2014-12-17_04h15m29s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy1.isc.freebsd.org/build.html?mastername=10i386-default&build=2014-12-17_04h15m29s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Wed Dec 17 07:33:19 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD 10i386-default-job-19 10.0-RELEASE-p9 FreeBSD 10.0-RELEASE-p9 i386 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 1000510 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=1000510 UNAME_v=FreeBSD 10.0-RELEASE-p9 UNAME_r=10.0-RELEASE-p9 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/10i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/10i386-default/ref/.p/pool MASTERNAME=10i386-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=10.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [10i386-default-job-19] Installing pkg-1.4.0... [10i386-default-job-19] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [10i386-default-job-19] Installing gmake-4.1_1... [10i386-default-job-19] `-- Installing gettext-runtime-0.19.3... [10i386-default-job-19] | `-- Installing indexinfo-0.2... [10i386-default-job-19] | `-- Extracting indexinfo-0.2... done [10i386-default-job-19] `-- Extracting gettext-runtime-0.19.3... done [10i386-default-job-19] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [10i386-default-job-19] Installing pkgconf-0.9.7... [10i386-default-job-19] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [10i386-default-job-19] Installing glproto-1.4.17... [10i386-default-job-19] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [10i386-default-job-19] Installing dri2proto-2.8... [10i386-default-job-19] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [10i386-default-job-19] Installing libX11-1.6.2_2,1... [10i386-default-job-19] `-- Installing kbproto-1.0.6... [10i386-default-job-19] `-- Extracting kbproto-1.0.6... done [10i386-default-job-19] `-- Installing libXau-1.0.8_2... [10i386-default-job-19] | `-- Installing xproto-7.0.26... [10i386-default-job-19] | `-- Extracting xproto-7.0.26... done [10i386-default-job-19] `-- Extracting libXau-1.0.8_2... done [10i386-default-job-19] `-- Installing libXdmcp-1.1.1_2... [10i386-default-job-19] `-- Extracting libXdmcp-1.1.1_2... done [10i386-default-job-19] `-- Installing libxcb-1.11... [10i386-default-job-19] | `-- Installing libpthread-stubs-0.3_6... [10i386-default-job-19] | `-- Extracting libpthread-stubs-0.3_6... done [10i386-default-job-19] | `-- Installing libxml2-2.9.2_2... [10i386-default-job-19] | `-- Extracting libxml2-2.9.2_2... done [10i386-default-job-19] `-- Extracting libxcb-1.11... done [10i386-default-job-19] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [10i386-default-job-19] Installing libXrandr-1.4.2_2... [10i386-default-job-19] `-- Installing libXext-1.3.3,1... [10i386-default-job-19] | `-- Installing xextproto-7.3.0... [10i386-default-job-19] | `-- Extracting xextproto-7.3.0... done [10i386-default-job-19] `-- Extracting libXext-1.3.3,1... done [10i386-default-job-19] `-- Installing libXrender-0.9.8_2... [10i386-default-job-19] | `-- Installing renderproto-0.11.1... [10i386-default-job-19] | `-- Extracting renderproto-0.11.1... done [10i386-default-job-19] `-- Extracting libXrender-0.9.8_2... done [10i386-default-job-19] `-- Installing randrproto-1.4.0... [10i386-default-job-19] `-- Extracting randrproto-1.4.0... done [10i386-default-job-19] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [10i386-default-job-19] Installing gstreamer1-plugins-1.4.4... [10i386-default-job-19] `-- Installing freetype2-2.5.4... [10i386-default-job-19] `-- Extracting freetype2-2.5.4... done [10i386-default-job-19] `-- Installing glib-2.42.1... [10i386-default-job-19] | `-- Installing libffi-3.0.13_3... [10i386-default-job-19] | `-- Extracting libffi-3.0.13_3... done [10i386-default-job-19] | `-- Installing libiconv-1.14_6... [10i386-default-job-19] | `-- Extracting libiconv-1.14_6... done [10i386-default-job-19] | `-- Installing pcre-8.35_2... [10i386-default-job-19] | `-- Extracting pcre-8.35_2... done [10i386-default-job-19] | `-- Installing perl5-5.18.4_10... [10i386-default-job-19] | `-- Extracting perl5-5.18.4_10... done [10i386-default-job-19] | `-- Installing python27-2.7.8_6... [10i386-default-job-19] | `-- Extracting python27-2.7.8_6... done [10i386-default-job-19] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [10i386-default-job-19] `-- Installing gstreamer1-1.4.4... [10i386-default-job-19] `-- Extracting gstreamer1-1.4.4... done [10i386-default-job-19] `-- Installing iso-codes-3.56... [10i386-default-job-19] `-- Extracting iso-codes-3.56... done [10i386-default-job-19] `-- Installing orc-0.4.22... [10i386-default-job-19] `-- Extracting orc-0.4.22... done [10i386-default-job-19] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [10i386-default-job-19] Installing libva-1.4.0... [10i386-default-job-19] `-- Installing libGL-9.1.7_4... [10i386-default-job-19] | `-- Installing expat-2.1.0_2... [10i386-default-job-19] | `-- Extracting expat-2.1.0_2... done [10i386-default-job-19] | `-- Installing libXdamage-1.1.4_2... [10i386-default-job-19] | | `-- Installing damageproto-1.2.1... [10i386-default-job-19] | | `-- Extracting damageproto-1.2.1... done [10i386-default-job-19] | | `-- Installing libXfixes-5.0.1_2... [10i386-default-job-19] | | `-- Installing fixesproto-5.0... [10i386-default-job-19] | | `-- Extracting fixesproto-5.0... done [10i386-default-job-19] | | `-- Extracting libXfixes-5.0.1_2... done [10i386-default-job-19] | `-- Extracting libXdamage-1.1.4_2... done [10i386-default-job-19] | `-- Installing libXxf86vm-1.1.3_2... [10i386-default-job-19] | | `-- Installing xf86vidmodeproto-2.3.1... [10i386-default-job-19] | | `-- Extracting xf86vidmodeproto-2.3.1... done [10i386-default-job-19] | `-- Extracting libXxf86vm-1.1.3_2... done [10i386-default-job-19] | `-- Installing libdevq-0.0.2... [10i386-default-job-19] | `-- Extracting libdevq-0.0.2... done [10i386-default-job-19] | `-- Installing libdrm-2.4.58_1,1... [10i386-default-job-19] | | `-- Installing libpciaccess-0.13.2_2... [10i386-default-job-19] | | `-- Installing pciids-20141123... [10i386-default-job-19] | | `-- Extracting pciids-20141123... done [10i386-default-job-19] | | `-- Extracting libpciaccess-0.13.2_2... done [10i386-default-job-19] | `-- Extracting libdrm-2.4.58_1,1... done [10i386-default-job-19] | `-- Installing libglapi-9.1.7_2... [10i386-default-job-19] | | `-- Installing libxshmfence-1.1_3... [10i386-default-job-19] | | `-- Extracting libxshmfence-1.1_3... done [10i386-default-job-19] | `-- Extracting libglapi-9.1.7_2... done [10i386-default-job-19] `-- Extracting libGL-9.1.7_4... done [10i386-default-job-19] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... i386-portbld-freebsd10.0 checking host system type... i386-portbld-freebsd10.0 checking target system type... i386-portbld-freebsd10.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd10.0 file names to i386-portbld-freebsd10.0 format... func_convert_file_noop checking how to convert i386-portbld-freebsd10.0 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/multimedia/gstreamer1-vaapi From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 07:39:49 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80DC5FC4; Wed, 17 Dec 2014 07:39:49 +0000 (UTC) Received: from beefy2.isc.freebsd.org (beefy2.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F56D86E; Wed, 17 Dec 2014 07:39:49 +0000 (UTC) Received: from beefy2.isc.freebsd.org (localhost [127.0.0.1]) by beefy2.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBH7dnBC043859; Wed, 17 Dec 2014 07:39:49 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBH7dnQ7043851; Wed, 17 Dec 2014 07:39:49 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Wed, 17 Dec 2014 07:39:49 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412170739.sBH7dnQ7043851@beefy2.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - 10amd64-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 07:39:49 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy2.isc.freebsd.org/data/10amd64-default/2014-12-17_04h21m21s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy2.isc.freebsd.org/build.html?mastername=10amd64-default&build=2014-12-17_04h21m21s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Wed Dec 17 07:39:39 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD 10amd64-default-job-12 10.0-RELEASE-p9 FreeBSD 10.0-RELEASE-p9 amd64 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 1000510 ---Begin Environment--- OSVERSION=1000510 UNAME_v=FreeBSD 10.0-RELEASE-p9 UNAME_r=10.0-RELEASE-p9 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/10amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/10amd64-default/ref/.p/pool MASTERNAME=10amd64-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=10.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted ran via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [10amd64-default-job-12] Installing pkg-1.4.0... [10amd64-default-job-12] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [10amd64-default-job-12] Installing gmake-4.1_1... [10amd64-default-job-12] `-- Installing gettext-runtime-0.19.3... [10amd64-default-job-12] | `-- Installing indexinfo-0.2... [10amd64-default-job-12] | `-- Extracting indexinfo-0.2... done [10amd64-default-job-12] `-- Extracting gettext-runtime-0.19.3... done [10amd64-default-job-12] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [10amd64-default-job-12] Installing pkgconf-0.9.7... [10amd64-default-job-12] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [10amd64-default-job-12] Installing glproto-1.4.17... [10amd64-default-job-12] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [10amd64-default-job-12] Installing dri2proto-2.8... [10amd64-default-job-12] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [10amd64-default-job-12] Installing libX11-1.6.2_2,1... [10amd64-default-job-12] `-- Installing kbproto-1.0.6... [10amd64-default-job-12] `-- Extracting kbproto-1.0.6... done [10amd64-default-job-12] `-- Installing libXau-1.0.8_2... [10amd64-default-job-12] | `-- Installing xproto-7.0.26... [10amd64-default-job-12] | `-- Extracting xproto-7.0.26... done [10amd64-default-job-12] `-- Extracting libXau-1.0.8_2... done [10amd64-default-job-12] `-- Installing libXdmcp-1.1.1_2... [10amd64-default-job-12] `-- Extracting libXdmcp-1.1.1_2... done [10amd64-default-job-12] `-- Installing libxcb-1.11... [10amd64-default-job-12] | `-- Installing libpthread-stubs-0.3_6... [10amd64-default-job-12] | `-- Extracting libpthread-stubs-0.3_6... done [10amd64-default-job-12] | `-- Installing libxml2-2.9.2_2... [10amd64-default-job-12] | `-- Extracting libxml2-2.9.2_2... done [10amd64-default-job-12] `-- Extracting libxcb-1.11... done [10amd64-default-job-12] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [10amd64-default-job-12] Installing libXrandr-1.4.2_2... [10amd64-default-job-12] `-- Installing libXext-1.3.3,1... [10amd64-default-job-12] | `-- Installing xextproto-7.3.0... [10amd64-default-job-12] | `-- Extracting xextproto-7.3.0... done [10amd64-default-job-12] `-- Extracting libXext-1.3.3,1... done [10amd64-default-job-12] `-- Installing libXrender-0.9.8_2... [10amd64-default-job-12] | `-- Installing renderproto-0.11.1... [10amd64-default-job-12] | `-- Extracting renderproto-0.11.1... done [10amd64-default-job-12] `-- Extracting libXrender-0.9.8_2... done [10amd64-default-job-12] `-- Installing randrproto-1.4.0... [10amd64-default-job-12] `-- Extracting randrproto-1.4.0... done [10amd64-default-job-12] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [10amd64-default-job-12] Installing gstreamer1-plugins-1.4.4... [10amd64-default-job-12] `-- Installing freetype2-2.5.4... [10amd64-default-job-12] `-- Extracting freetype2-2.5.4... done [10amd64-default-job-12] `-- Installing glib-2.42.1... [10amd64-default-job-12] | `-- Installing libffi-3.0.13_3... [10amd64-default-job-12] | `-- Extracting libffi-3.0.13_3... done [10amd64-default-job-12] | `-- Installing libiconv-1.14_6... [10amd64-default-job-12] | `-- Extracting libiconv-1.14_6... done [10amd64-default-job-12] | `-- Installing pcre-8.35_2... [10amd64-default-job-12] | `-- Extracting pcre-8.35_2... done [10amd64-default-job-12] | `-- Installing perl5-5.18.4_10... [10amd64-default-job-12] | `-- Extracting perl5-5.18.4_10... done [10amd64-default-job-12] | `-- Installing python27-2.7.8_6... [10amd64-default-job-12] | `-- Extracting python27-2.7.8_6... done [10amd64-default-job-12] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [10amd64-default-job-12] `-- Installing gstreamer1-1.4.4... [10amd64-default-job-12] `-- Extracting gstreamer1-1.4.4... done [10amd64-default-job-12] `-- Installing iso-codes-3.56... [10amd64-default-job-12] `-- Extracting iso-codes-3.56... done [10amd64-default-job-12] `-- Installing orc-0.4.22... [10amd64-default-job-12] `-- Extracting orc-0.4.22... done [10amd64-default-job-12] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [10amd64-default-job-12] Installing libva-1.4.0... [10amd64-default-job-12] `-- Installing libGL-9.1.7_4... [10amd64-default-job-12] | `-- Installing expat-2.1.0_2... [10amd64-default-job-12] | `-- Extracting expat-2.1.0_2... done [10amd64-default-job-12] | `-- Installing libXdamage-1.1.4_2... [10amd64-default-job-12] | | `-- Installing damageproto-1.2.1... [10amd64-default-job-12] | | `-- Extracting damageproto-1.2.1... done [10amd64-default-job-12] | | `-- Installing libXfixes-5.0.1_2... [10amd64-default-job-12] | | `-- Installing fixesproto-5.0... [10amd64-default-job-12] | | `-- Extracting fixesproto-5.0... done [10amd64-default-job-12] | | `-- Extracting libXfixes-5.0.1_2... done [10amd64-default-job-12] | `-- Extracting libXdamage-1.1.4_2... done [10amd64-default-job-12] | `-- Installing libXxf86vm-1.1.3_2... [10amd64-default-job-12] | | `-- Installing xf86vidmodeproto-2.3.1... [10amd64-default-job-12] | | `-- Extracting xf86vidmodeproto-2.3.1... done [10amd64-default-job-12] | `-- Extracting libXxf86vm-1.1.3_2... done [10amd64-default-job-12] | `-- Installing libdevq-0.0.2... [10amd64-default-job-12] | `-- Extracting libdevq-0.0.2... done [10amd64-default-job-12] | `-- Installing libdrm-2.4.58_1,1... [10amd64-default-job-12] | | `-- Installing libpciaccess-0.13.2_2... [10amd64-default-job-12] | | `-- Installing pciids-20141123... [10amd64-default-job-12] | | `-- Extracting pciids-20141123... done [10amd64-default-job-12] | | `-- Extracting libpciaccess-0.13.2_2... done [10amd64-default-job-12] | `-- Extracting libdrm-2.4.58_1,1... done [10amd64-default-job-12] | `-- Installing libglapi-9.1.7_2... [10amd64-default-job-12] | | `-- Installing libxshmfence-1.1_3... [10amd64-default-job-12] | | `-- Extracting libxshmfence-1.1_3... done [10amd64-default-job-12] | `-- Extracting libglapi-9.1.7_2... done [10amd64-default-job-12] `-- Extracting libGL-9.1.7_4... done [10amd64-default-job-12] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... amd64-portbld-freebsd10.0 checking host system type... amd64-portbld-freebsd10.0 checking target system type... amd64-portbld-freebsd10.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd10.0 file names to amd64-portbld-freebsd10.0 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd10.0 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/multimedia/gstreamer1-vaapi From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 11:04:31 2014 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9500811F8 for ; Wed, 17 Dec 2014 11:04:31 +0000 (UTC) Received: from portscout.freebsd.org (unknown [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C7F513BF for ; Wed, 17 Dec 2014 09:52:50 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id sBH9qZBK087396 for ; Wed, 17 Dec 2014 09:52:35 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id sBH9qZe5087393; Wed, 17 Dec 2014 09:52:35 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201412170952.sBH9qZe5087393@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Wed, 17 Dec 2014 09:52:35 +0000 From: portscout@FreeBSD.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 11:04:31 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ net/liveMedia | 2013.11.29 | 2014.12.16 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 11:39:31 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB4007CF for ; Wed, 17 Dec 2014 11:39:31 +0000 (UTC) Received: from kenobi.freebsd.org (unknown [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B631F40 for ; Wed, 17 Dec 2014 08:56:16 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBH8txvE098324 for ; Wed, 17 Dec 2014 08:55:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 195603] Build of "multimedia/gstreamer1-plugins-bad" fails Date: Wed, 17 Dec 2014 08:55:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: tijl@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status assigned_to dependson Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 11:39:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195603 Tijl Coosemans changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed Assignee|freebsd-ports-bugs@FreeBSD. |multimedia@FreeBSD.org |org | Depends on| |194922 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 12:49:30 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9472359; Wed, 17 Dec 2014 12:49:30 +0000 (UTC) Received: from beefy1.isc.freebsd.org (beefy1.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A93107A1; Wed, 17 Dec 2014 12:49:30 +0000 (UTC) Received: from beefy1.isc.freebsd.org (localhost [127.0.0.1]) by beefy1.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHCnUxc006081; Wed, 17 Dec 2014 12:49:30 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBHCnU29006080; Wed, 17 Dec 2014 12:49:30 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Wed, 17 Dec 2014 12:49:30 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412171249.sBHCnU29006080@beefy1.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - 91i386-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 12:49:30 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy1.isc.freebsd.org/data/91i386-default/2014-12-17_09h04m39s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy1.isc.freebsd.org/build.html?mastername=91i386-default&build=2014-12-17_09h04m39s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Wed Dec 17 12:49:19 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD 91i386-default-job-10 9.1-RELEASE-p19 FreeBSD 9.1-RELEASE-p19 i386 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 901000 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=901000 UNAME_v=FreeBSD 9.1-RELEASE-p19 UNAME_r=9.1-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/91i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/91i386-default/ref/.p/pool MASTERNAME=91i386-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS="" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=9.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [91i386-default-job-10] Installing pkg-1.4.0... [91i386-default-job-10] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [91i386-default-job-10] Installing gmake-4.1_1... [91i386-default-job-10] `-- Installing gettext-runtime-0.19.3... [91i386-default-job-10] | `-- Installing indexinfo-0.2... [91i386-default-job-10] | `-- Extracting indexinfo-0.2... done [91i386-default-job-10] | `-- Installing libiconv-1.14_6... [91i386-default-job-10] | `-- Extracting libiconv-1.14_6... done [91i386-default-job-10] `-- Extracting gettext-runtime-0.19.3... done [91i386-default-job-10] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [91i386-default-job-10] Installing pkgconf-0.9.7... [91i386-default-job-10] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [91i386-default-job-10] Installing glproto-1.4.17... [91i386-default-job-10] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [91i386-default-job-10] Installing dri2proto-2.8... [91i386-default-job-10] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [91i386-default-job-10] Installing libX11-1.6.2_2,1... [91i386-default-job-10] `-- Installing kbproto-1.0.6... [91i386-default-job-10] `-- Extracting kbproto-1.0.6... done [91i386-default-job-10] `-- Installing libXau-1.0.8_2... [91i386-default-job-10] | `-- Installing xproto-7.0.26... [91i386-default-job-10] | `-- Extracting xproto-7.0.26... done [91i386-default-job-10] `-- Extracting libXau-1.0.8_2... done [91i386-default-job-10] `-- Installing libXdmcp-1.1.1_2... [91i386-default-job-10] `-- Extracting libXdmcp-1.1.1_2... done [91i386-default-job-10] `-- Installing libxcb-1.11... [91i386-default-job-10] | `-- Installing libpthread-stubs-0.3_6... [91i386-default-job-10] | `-- Extracting libpthread-stubs-0.3_6... done [91i386-default-job-10] | `-- Installing libxml2-2.9.2_2... [91i386-default-job-10] | `-- Extracting libxml2-2.9.2_2... done [91i386-default-job-10] `-- Extracting libxcb-1.11... done [91i386-default-job-10] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [91i386-default-job-10] Installing libXrandr-1.4.2_2... [91i386-default-job-10] `-- Installing libXext-1.3.3,1... [91i386-default-job-10] | `-- Installing xextproto-7.3.0... [91i386-default-job-10] | `-- Extracting xextproto-7.3.0... done [91i386-default-job-10] `-- Extracting libXext-1.3.3,1... done [91i386-default-job-10] `-- Installing libXrender-0.9.8_2... [91i386-default-job-10] | `-- Installing renderproto-0.11.1... [91i386-default-job-10] | `-- Extracting renderproto-0.11.1... done [91i386-default-job-10] `-- Extracting libXrender-0.9.8_2... done [91i386-default-job-10] `-- Installing randrproto-1.4.0... [91i386-default-job-10] `-- Extracting randrproto-1.4.0... done [91i386-default-job-10] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [91i386-default-job-10] Installing gstreamer1-plugins-1.4.4... [91i386-default-job-10] `-- Installing freetype2-2.5.4... [91i386-default-job-10] `-- Extracting freetype2-2.5.4... done [91i386-default-job-10] `-- Installing glib-2.42.1... [91i386-default-job-10] | `-- Installing libffi-3.0.13_3... [91i386-default-job-10] | `-- Extracting libffi-3.0.13_3... done [91i386-default-job-10] | `-- Installing pcre-8.35_2... [91i386-default-job-10] | `-- Extracting pcre-8.35_2... done [91i386-default-job-10] | `-- Installing perl5-5.18.4_10... [91i386-default-job-10] | `-- Extracting perl5-5.18.4_10... done [91i386-default-job-10] | `-- Installing python27-2.7.8_6... [91i386-default-job-10] | `-- Extracting python27-2.7.8_6... done [91i386-default-job-10] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [91i386-default-job-10] `-- Installing gstreamer1-1.4.4... [91i386-default-job-10] `-- Extracting gstreamer1-1.4.4... done [91i386-default-job-10] `-- Installing iso-codes-3.56... [91i386-default-job-10] `-- Extracting iso-codes-3.56... done [91i386-default-job-10] `-- Installing orc-0.4.22... [91i386-default-job-10] `-- Extracting orc-0.4.22... done [91i386-default-job-10] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [91i386-default-job-10] Installing libva-1.4.0... [91i386-default-job-10] `-- Installing libGL-9.1.7_4... [91i386-default-job-10] | `-- Installing expat-2.1.0_2... [91i386-default-job-10] | `-- Extracting expat-2.1.0_2... done [91i386-default-job-10] | `-- Installing libXdamage-1.1.4_2... [91i386-default-job-10] | | `-- Installing damageproto-1.2.1... [91i386-default-job-10] | | `-- Extracting damageproto-1.2.1... done [91i386-default-job-10] | | `-- Installing libXfixes-5.0.1_2... [91i386-default-job-10] | | `-- Installing fixesproto-5.0... [91i386-default-job-10] | | `-- Extracting fixesproto-5.0... done [91i386-default-job-10] | | `-- Extracting libXfixes-5.0.1_2... done [91i386-default-job-10] | `-- Extracting libXdamage-1.1.4_2... done [91i386-default-job-10] | `-- Installing libXxf86vm-1.1.3_2... [91i386-default-job-10] | | `-- Installing xf86vidmodeproto-2.3.1... [91i386-default-job-10] | | `-- Extracting xf86vidmodeproto-2.3.1... done [91i386-default-job-10] | `-- Extracting libXxf86vm-1.1.3_2... done [91i386-default-job-10] | `-- Installing libdevq-0.0.2... [91i386-default-job-10] | `-- Extracting libdevq-0.0.2... done [91i386-default-job-10] | `-- Installing libdrm-2.4.58_1,1... [91i386-default-job-10] | | `-- Installing libpciaccess-0.13.2_2... [91i386-default-job-10] | | `-- Installing pciids-20141123... [91i386-default-job-10] | | `-- Extracting pciids-20141123... done [91i386-default-job-10] | | `-- Extracting libpciaccess-0.13.2_2... done [91i386-default-job-10] | `-- Extracting libdrm-2.4.58_1,1... done [91i386-default-job-10] | `-- Installing libglapi-9.1.7_2... [91i386-default-job-10] | | `-- Installing libxshmfence-1.1_3... [91i386-default-job-10] | | `-- Extracting libxshmfence-1.1_3... done [91i386-default-job-10] | `-- Extracting libglapi-9.1.7_2... done [91i386-default-job-10] `-- Extracting libGL-9.1.7_4... done [91i386-default-job-10] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... i386-portbld-freebsd9.1 checking host system type... i386-portbld-freebsd9.1 checking target system type... i386-portbld-freebsd9.1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd9.1 file names to i386-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert i386-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** [do-configure] Error code 1 Stop in /usr/ports/multimedia/gstreamer1-vaapi. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 12:57:39 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D29162A; Wed, 17 Dec 2014 12:57:39 +0000 (UTC) Received: from beefy2.isc.freebsd.org (beefy2.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 29D028AB; Wed, 17 Dec 2014 12:57:39 +0000 (UTC) Received: from beefy2.isc.freebsd.org (localhost [127.0.0.1]) by beefy2.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHCvddf037238; Wed, 17 Dec 2014 12:57:39 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBHCvcwh037235; Wed, 17 Dec 2014 12:57:38 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Wed, 17 Dec 2014 12:57:38 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412171257.sBHCvcwh037235@beefy2.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - 91amd64-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 12:57:39 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy2.isc.freebsd.org/data/91amd64-default/2014-12-17_09h11m38s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy2.isc.freebsd.org/build.html?mastername=91amd64-default&build=2014-12-17_09h11m38s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Wed Dec 17 12:57:26 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD 91amd64-default-job-01 9.1-RELEASE-p19 FreeBSD 9.1-RELEASE-p19 amd64 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 901000 ---Begin Environment--- OSVERSION=901000 UNAME_v=FreeBSD 9.1-RELEASE-p19 UNAME_r=9.1-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/91amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/91amd64-default/ref/.p/pool MASTERNAME=91amd64-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=9.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted ran via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [91amd64-default-job-01] Installing pkg-1.4.0... [91amd64-default-job-01] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [91amd64-default-job-01] Installing gmake-4.1_1... [91amd64-default-job-01] `-- Installing gettext-runtime-0.19.3... [91amd64-default-job-01] | `-- Installing indexinfo-0.2... [91amd64-default-job-01] | `-- Extracting indexinfo-0.2... done [91amd64-default-job-01] | `-- Installing libiconv-1.14_6... [91amd64-default-job-01] | `-- Extracting libiconv-1.14_6... done [91amd64-default-job-01] `-- Extracting gettext-runtime-0.19.3... done [91amd64-default-job-01] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [91amd64-default-job-01] Installing pkgconf-0.9.7... [91amd64-default-job-01] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [91amd64-default-job-01] Installing glproto-1.4.17... [91amd64-default-job-01] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [91amd64-default-job-01] Installing dri2proto-2.8... [91amd64-default-job-01] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [91amd64-default-job-01] Installing libX11-1.6.2_2,1... [91amd64-default-job-01] `-- Installing kbproto-1.0.6... [91amd64-default-job-01] `-- Extracting kbproto-1.0.6... done [91amd64-default-job-01] `-- Installing libXau-1.0.8_2... [91amd64-default-job-01] | `-- Installing xproto-7.0.26... [91amd64-default-job-01] | `-- Extracting xproto-7.0.26... done [91amd64-default-job-01] `-- Extracting libXau-1.0.8_2... done [91amd64-default-job-01] `-- Installing libXdmcp-1.1.1_2... [91amd64-default-job-01] `-- Extracting libXdmcp-1.1.1_2... done [91amd64-default-job-01] `-- Installing libxcb-1.11... [91amd64-default-job-01] | `-- Installing libpthread-stubs-0.3_6... [91amd64-default-job-01] | `-- Extracting libpthread-stubs-0.3_6... done [91amd64-default-job-01] | `-- Installing libxml2-2.9.2_2... [91amd64-default-job-01] | `-- Extracting libxml2-2.9.2_2... done [91amd64-default-job-01] `-- Extracting libxcb-1.11... done [91amd64-default-job-01] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [91amd64-default-job-01] Installing libXrandr-1.4.2_2... [91amd64-default-job-01] `-- Installing libXext-1.3.3,1... [91amd64-default-job-01] | `-- Installing xextproto-7.3.0... [91amd64-default-job-01] | `-- Extracting xextproto-7.3.0... done [91amd64-default-job-01] `-- Extracting libXext-1.3.3,1... done [91amd64-default-job-01] `-- Installing libXrender-0.9.8_2... [91amd64-default-job-01] | `-- Installing renderproto-0.11.1... [91amd64-default-job-01] | `-- Extracting renderproto-0.11.1... done [91amd64-default-job-01] `-- Extracting libXrender-0.9.8_2... done [91amd64-default-job-01] `-- Installing randrproto-1.4.0... [91amd64-default-job-01] `-- Extracting randrproto-1.4.0... done [91amd64-default-job-01] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [91amd64-default-job-01] Installing gstreamer1-plugins-1.4.4... [91amd64-default-job-01] `-- Installing freetype2-2.5.4... [91amd64-default-job-01] `-- Extracting freetype2-2.5.4... done [91amd64-default-job-01] `-- Installing glib-2.42.1... [91amd64-default-job-01] | `-- Installing libffi-3.0.13_3... [91amd64-default-job-01] | `-- Extracting libffi-3.0.13_3... done [91amd64-default-job-01] | `-- Installing pcre-8.35_2... [91amd64-default-job-01] | `-- Extracting pcre-8.35_2... done [91amd64-default-job-01] | `-- Installing perl5-5.18.4_10... [91amd64-default-job-01] | `-- Extracting perl5-5.18.4_10... done [91amd64-default-job-01] | `-- Installing python27-2.7.8_6... [91amd64-default-job-01] | `-- Extracting python27-2.7.8_6... done [91amd64-default-job-01] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [91amd64-default-job-01] `-- Installing gstreamer1-1.4.4... [91amd64-default-job-01] `-- Extracting gstreamer1-1.4.4... done [91amd64-default-job-01] `-- Installing iso-codes-3.56... [91amd64-default-job-01] `-- Extracting iso-codes-3.56... done [91amd64-default-job-01] `-- Installing orc-0.4.22... [91amd64-default-job-01] `-- Extracting orc-0.4.22... done [91amd64-default-job-01] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [91amd64-default-job-01] Installing libva-1.4.0... [91amd64-default-job-01] `-- Installing libGL-9.1.7_4... [91amd64-default-job-01] | `-- Installing expat-2.1.0_2... [91amd64-default-job-01] | `-- Extracting expat-2.1.0_2... done [91amd64-default-job-01] | `-- Installing libXdamage-1.1.4_2... [91amd64-default-job-01] | | `-- Installing damageproto-1.2.1... [91amd64-default-job-01] | | `-- Extracting damageproto-1.2.1... done [91amd64-default-job-01] | | `-- Installing libXfixes-5.0.1_2... [91amd64-default-job-01] | | `-- Installing fixesproto-5.0... [91amd64-default-job-01] | | `-- Extracting fixesproto-5.0... done [91amd64-default-job-01] | | `-- Extracting libXfixes-5.0.1_2... done [91amd64-default-job-01] | `-- Extracting libXdamage-1.1.4_2... done [91amd64-default-job-01] | `-- Installing libXxf86vm-1.1.3_2... [91amd64-default-job-01] | | `-- Installing xf86vidmodeproto-2.3.1... [91amd64-default-job-01] | | `-- Extracting xf86vidmodeproto-2.3.1... done [91amd64-default-job-01] | `-- Extracting libXxf86vm-1.1.3_2... done [91amd64-default-job-01] | `-- Installing libdevq-0.0.2... [91amd64-default-job-01] | `-- Extracting libdevq-0.0.2... done [91amd64-default-job-01] | `-- Installing libdrm-2.4.58_1,1... [91amd64-default-job-01] | | `-- Installing libpciaccess-0.13.2_2... [91amd64-default-job-01] | | `-- Installing pciids-20141123... [91amd64-default-job-01] | | `-- Extracting pciids-20141123... done [91amd64-default-job-01] | | `-- Extracting libpciaccess-0.13.2_2... done [91amd64-default-job-01] | `-- Extracting libdrm-2.4.58_1,1... done [91amd64-default-job-01] | `-- Installing libglapi-9.1.7_2... [91amd64-default-job-01] | | `-- Installing libxshmfence-1.1_3... [91amd64-default-job-01] | | `-- Extracting libxshmfence-1.1_3... done [91amd64-default-job-01] | `-- Extracting libglapi-9.1.7_2... done [91amd64-default-job-01] `-- Extracting libGL-9.1.7_4... done [91amd64-default-job-01] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking target system type... amd64-portbld-freebsd9.1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd9.1 file names to amd64-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** [do-configure] Error code 1 Stop in /usr/ports/multimedia/gstreamer1-vaapi. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 20:43:39 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DF23CBF for ; Wed, 17 Dec 2014 20:43:39 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A24C19CD for ; Wed, 17 Dec 2014 20:43:39 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHKhcFx087908 for ; Wed, 17 Dec 2014 20:43:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: maintainer-feedback requested: [Bug 196072] net/liveMedia: upgrade to latest Date: Wed, 17 Dec 2014 20:43:39 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 20:43:39 -0000 Thierry Thomas has reassigned Bugzilla Automation 's request for maintainer-feedback to multimedia@FreeBSD.org: Bug 196072: net/liveMedia: upgrade to latest https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196072 --- Description --- Created attachment 150692 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150692&action=edit Upgrade to 2014.12.17. liveMedia is now more than one year old. The attached patch upgrades it to 2014.12.17 and bumps vlc's PORTREVISION. ATM, the distfile is mirrored by wg; it that causes any problem, I could mirror it. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 20:43:39 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63994CC0 for ; Wed, 17 Dec 2014 20:43:39 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A9FF19CE for ; Wed, 17 Dec 2014 20:43:39 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHKhd5t087912 for ; Wed, 17 Dec 2014 20:43:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196072] New: net/liveMedia: upgrade to latest Date: Wed, 17 Dec 2014 20:43:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: thierry@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 20:43:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196072 Bug ID: 196072 Summary: net/liveMedia: upgrade to latest Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: multimedia@FreeBSD.org Reporter: thierry@FreeBSD.org Assignee: multimedia@FreeBSD.org Flags: maintainer-feedback?(multimedia@FreeBSD.org) Created attachment 150692 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150692&action=edit Upgrade to 2014.12.17. liveMedia is now more than one year old. The attached patch upgrades it to 2014.12.17 and bumps vlc's PORTREVISION. ATM, the distfile is mirrored by wg; it that causes any problem, I could mirror it. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 20:49:33 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28564339 for ; Wed, 17 Dec 2014 20:49:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 147B21A97 for ; Wed, 17 Dec 2014 20:49:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHKnWTc090233 for ; Wed, 17 Dec 2014 20:49:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: maintainer-feedback requested: [Bug 196073] multimedia/vlc: please add liveMedia as a default option Date: Wed, 17 Dec 2014 20:49:32 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 20:49:33 -0000 Thierry Thomas has reassigned Bugzilla Automation 's request for maintainer-feedback to multimedia@FreeBSD.org: Bug 196073: multimedia/vlc: please add liveMedia as a default option https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196073 --- Description --- Created attachment 150693 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150693&action=edit Set LIVEMEDIA as a default option To stream WebTV via rtsp, vlc uses liveMedia. Without it you cannot watch this kind of streams, and multimedia/freetuxtv does not work if installed as a package. The attached patch proposes to set liveMedia as a default option, so that it get packaged. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 17 20:49:33 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EA1E33B for ; Wed, 17 Dec 2014 20:49:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65A1D1A9A for ; Wed, 17 Dec 2014 20:49:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHKnXuL090248 for ; Wed, 17 Dec 2014 20:49:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196073] New: multimedia/vlc: please add liveMedia as a default option Date: Wed, 17 Dec 2014 20:49:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: thierry@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 20:49:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196073 Bug ID: 196073 Summary: multimedia/vlc: please add liveMedia as a default option Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: multimedia@FreeBSD.org Reporter: thierry@FreeBSD.org Assignee: multimedia@FreeBSD.org Flags: maintainer-feedback?(multimedia@FreeBSD.org) Created attachment 150693 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150693&action=edit Set LIVEMEDIA as a default option To stream WebTV via rtsp, vlc uses liveMedia. Without it you cannot watch this kind of streams, and multimedia/freetuxtv does not work if installed as a package. The attached patch proposes to set liveMedia as a default option, so that it get packaged. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 09:51:52 2014 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABE74276 for ; Thu, 18 Dec 2014 09:51:52 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 984C11509 for ; Thu, 18 Dec 2014 09:51:52 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id sBI9pqdw051803 for ; Thu, 18 Dec 2014 09:51:52 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id sBI9pqjr051800; Thu, 18 Dec 2014 09:51:52 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201412180951.sBI9pqjr051800@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Thu, 18 Dec 2014 09:51:52 +0000 From: portscout@FreeBSD.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 09:51:52 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ net/liveMedia | 2013.11.29 | 2014.12.17 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 10:24:33 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 182C7AB4; Thu, 18 Dec 2014 10:24:33 +0000 (UTC) Received: from beefy1.isc.freebsd.org (beefy1.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB2551A97; Thu, 18 Dec 2014 10:24:32 +0000 (UTC) Received: from beefy1.isc.freebsd.org (localhost [127.0.0.1]) by beefy1.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBIAOWB2064526; Thu, 18 Dec 2014 10:24:32 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBIAOWJW064504; Thu, 18 Dec 2014 10:24:32 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 18 Dec 2014 10:24:32 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412181024.sBIAOWJW064504@beefy1.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - head-i386-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 10:24:33 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy1.isc.freebsd.org/data/head-i386-default/2014-12-17_14h43m22s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy1.isc.freebsd.org/build.html?mastername=head-i386-default&build=2014-12-17_14h43m22s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Thu Dec 18 10:23:55 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD head-i386-default-job-19 11.0-CURRENT FreeBSD 11.0-CURRENT r275845 i386 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 1100050 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=1100050 UNAME_v=FreeBSD 11.0-CURRENT r275845 UNAME_r=11.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/head-i386-default/ref/.p/pool MASTERNAME=head-i386-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [head-i386-default-job-19] Installing pkg-1.4.0... [head-i386-default-job-19] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [head-i386-default-job-19] Installing gmake-4.1_1... [head-i386-default-job-19] `-- Installing gettext-runtime-0.19.3... [head-i386-default-job-19] | `-- Installing indexinfo-0.2... [head-i386-default-job-19] | `-- Extracting indexinfo-0.2... done [head-i386-default-job-19] `-- Extracting gettext-runtime-0.19.3... done [head-i386-default-job-19] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [head-i386-default-job-19] Installing pkgconf-0.9.7... [head-i386-default-job-19] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [head-i386-default-job-19] Installing glproto-1.4.17... [head-i386-default-job-19] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [head-i386-default-job-19] Installing dri2proto-2.8... [head-i386-default-job-19] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [head-i386-default-job-19] Installing libX11-1.6.2_2,1... [head-i386-default-job-19] `-- Installing kbproto-1.0.6... [head-i386-default-job-19] `-- Extracting kbproto-1.0.6... done [head-i386-default-job-19] `-- Installing libXau-1.0.8_2... [head-i386-default-job-19] | `-- Installing xproto-7.0.26... [head-i386-default-job-19] | `-- Extracting xproto-7.0.26... done [head-i386-default-job-19] `-- Extracting libXau-1.0.8_2... done [head-i386-default-job-19] `-- Installing libXdmcp-1.1.1_2... [head-i386-default-job-19] `-- Extracting libXdmcp-1.1.1_2... done [head-i386-default-job-19] `-- Installing libxcb-1.11... [head-i386-default-job-19] | `-- Installing libpthread-stubs-0.3_6... [head-i386-default-job-19] | `-- Extracting libpthread-stubs-0.3_6... done [head-i386-default-job-19] | `-- Installing libxml2-2.9.2_2... [head-i386-default-job-19] | `-- Extracting libxml2-2.9.2_2... done [head-i386-default-job-19] `-- Extracting libxcb-1.11... done [head-i386-default-job-19] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [head-i386-default-job-19] Installing libXrandr-1.4.2_2... [head-i386-default-job-19] `-- Installing libXext-1.3.3,1... [head-i386-default-job-19] | `-- Installing xextproto-7.3.0... [head-i386-default-job-19] | `-- Extracting xextproto-7.3.0... done [head-i386-default-job-19] `-- Extracting libXext-1.3.3,1... done [head-i386-default-job-19] `-- Installing libXrender-0.9.8_2... [head-i386-default-job-19] | `-- Installing renderproto-0.11.1... [head-i386-default-job-19] | `-- Extracting renderproto-0.11.1... done [head-i386-default-job-19] `-- Extracting libXrender-0.9.8_2... done [head-i386-default-job-19] `-- Installing randrproto-1.4.0... [head-i386-default-job-19] `-- Extracting randrproto-1.4.0... done [head-i386-default-job-19] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [head-i386-default-job-19] Installing gstreamer1-plugins-1.4.4... [head-i386-default-job-19] `-- Installing freetype2-2.5.4... [head-i386-default-job-19] `-- Extracting freetype2-2.5.4... done [head-i386-default-job-19] `-- Installing glib-2.42.1... [head-i386-default-job-19] | `-- Installing libffi-3.0.13_3... [head-i386-default-job-19] | `-- Extracting libffi-3.0.13_3... done [head-i386-default-job-19] | `-- Installing libiconv-1.14_6... [head-i386-default-job-19] | `-- Extracting libiconv-1.14_6... done [head-i386-default-job-19] | `-- Installing pcre-8.35_2... [head-i386-default-job-19] | `-- Extracting pcre-8.35_2... done [head-i386-default-job-19] | `-- Installing perl5-5.18.4_10... [head-i386-default-job-19] | `-- Extracting perl5-5.18.4_10... done [head-i386-default-job-19] | `-- Installing python27-2.7.8_6... [head-i386-default-job-19] | | `-- Installing readline-6.3.8... [head-i386-default-job-19] | | `-- Extracting readline-6.3.8... done [head-i386-default-job-19] | `-- Extracting python27-2.7.8_6... done [head-i386-default-job-19] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [head-i386-default-job-19] `-- Installing gstreamer1-1.4.4... [head-i386-default-job-19] `-- Extracting gstreamer1-1.4.4... done [head-i386-default-job-19] `-- Installing iso-codes-3.56... [head-i386-default-job-19] `-- Extracting iso-codes-3.56... done [head-i386-default-job-19] `-- Installing orc-0.4.22... [head-i386-default-job-19] `-- Extracting orc-0.4.22... done [head-i386-default-job-19] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [head-i386-default-job-19] Installing libva-1.4.0... [head-i386-default-job-19] `-- Installing libGL-10.3.4... [head-i386-default-job-19] | `-- Installing expat-2.1.0_2... [head-i386-default-job-19] | `-- Extracting expat-2.1.0_2... done [head-i386-default-job-19] | `-- Installing libXdamage-1.1.4_2... [head-i386-default-job-19] | | `-- Installing damageproto-1.2.1... [head-i386-default-job-19] | | `-- Extracting damageproto-1.2.1... done [head-i386-default-job-19] | | `-- Installing libXfixes-5.0.1_2... [head-i386-default-job-19] | | `-- Installing fixesproto-5.0... [head-i386-default-job-19] | | `-- Extracting fixesproto-5.0... done [head-i386-default-job-19] | | `-- Extracting libXfixes-5.0.1_2... done [head-i386-default-job-19] | `-- Extracting libXdamage-1.1.4_2... done [head-i386-default-job-19] | `-- Installing libXxf86vm-1.1.3_2... [head-i386-default-job-19] | | `-- Installing xf86vidmodeproto-2.3.1... [head-i386-default-job-19] | | `-- Extracting xf86vidmodeproto-2.3.1... done [head-i386-default-job-19] | `-- Extracting libXxf86vm-1.1.3_2... done [head-i386-default-job-19] | `-- Installing libdevq-0.0.2... [head-i386-default-job-19] | `-- Extracting libdevq-0.0.2... done [head-i386-default-job-19] | `-- Installing libdrm-2.4.58_1,1... [head-i386-default-job-19] | | `-- Installing libpciaccess-0.13.2_2... [head-i386-default-job-19] | | `-- Installing pciids-20141123... [head-i386-default-job-19] | | `-- Extracting pciids-20141123... done [head-i386-default-job-19] | | `-- Extracting libpciaccess-0.13.2_2... done [head-i386-default-job-19] | `-- Extracting libdrm-2.4.58_1,1... done [head-i386-default-job-19] | `-- Installing libglapi-10.3.4... [head-i386-default-job-19] | | `-- Installing libxshmfence-1.1_3... [head-i386-default-job-19] | | `-- Extracting libxshmfence-1.1_3... done [head-i386-default-job-19] | `-- Extracting libglapi-10.3.4... done [head-i386-default-job-19] `-- Extracting libGL-10.3.4... done [head-i386-default-job-19] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... i386-portbld-freebsd11.0 checking host system type... i386-portbld-freebsd11.0 checking target system type... i386-portbld-freebsd11.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd11.0 file names to i386-portbld-freebsd11.0 format... func_convert_file_noop checking how to convert i386-portbld-freebsd11.0 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd11.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/multimedia/gstreamer1-vaapi From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 10:53:25 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4019B161 for ; Thu, 18 Dec 2014 10:53:25 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 272A11EC3 for ; Thu, 18 Dec 2014 10:53:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBIArPW0053390 for ; Thu, 18 Dec 2014 10:53:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196072] net/liveMedia: Update to 2014.12.17 Date: Thu, 18 Dec 2014 10:53:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: short_desc bug_status keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 10:53:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196072 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|net/liveMedia: upgrade to |net/liveMedia: Update to |latest |2014.12.17 Status|New |Open Keywords| |easy, needs-qa, patch -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 10:54:41 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B29F1C6 for ; Thu, 18 Dec 2014 10:54:41 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 718EC1EE8 for ; Thu, 18 Dec 2014 10:54:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBIAsfMs057619 for ; Thu, 18 Dec 2014 10:54:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196073] multimedia/vlc: Add LIVEMEDIA to OPTIONS_DEFAULT Date: Thu, 18 Dec 2014 10:54:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, feature, needs-qa, patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: keywords short_desc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 10:54:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196073 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |easy, feature, needs-qa, | |patch Summary|multimedia/vlc: please add |multimedia/vlc: Add |liveMedia as a default |LIVEMEDIA to |option |OPTIONS_DEFAULT Status|New |Open -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 10:59:48 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 675AF3A3; Thu, 18 Dec 2014 10:59:48 +0000 (UTC) Received: from beefy2.isc.freebsd.org (beefy2.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 461131F5B; Thu, 18 Dec 2014 10:59:48 +0000 (UTC) Received: from beefy2.isc.freebsd.org (localhost [127.0.0.1]) by beefy2.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBIAxlnA053364; Thu, 18 Dec 2014 10:59:47 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBIAxlfg053357; Thu, 18 Dec 2014 10:59:47 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 18 Dec 2014 10:59:47 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412181059.sBIAxlfg053357@beefy2.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - head-amd64-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 10:59:48 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy2.isc.freebsd.org/data/head-amd64-default/2014-12-17_14h44m21s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy2.isc.freebsd.org/build.html?mastername=head-amd64-default&build=2014-12-17_14h44m21s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Thu Dec 18 10:59:07 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD head-amd64-default-job-12 11.0-CURRENT FreeBSD 11.0-CURRENT r275845 amd64 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 1100050 ---Begin Environment--- OSVERSION=1100050 UNAME_v=FreeBSD 11.0-CURRENT r275845 UNAME_r=11.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool MASTERNAME=head-amd64-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted ran via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [head-amd64-default-job-12] Installing pkg-1.4.0... [head-amd64-default-job-12] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [head-amd64-default-job-12] Installing gmake-4.1_1... [head-amd64-default-job-12] `-- Installing gettext-runtime-0.19.3... [head-amd64-default-job-12] | `-- Installing indexinfo-0.2... [head-amd64-default-job-12] | `-- Extracting indexinfo-0.2... done [head-amd64-default-job-12] `-- Extracting gettext-runtime-0.19.3... done [head-amd64-default-job-12] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [head-amd64-default-job-12] Installing pkgconf-0.9.7... [head-amd64-default-job-12] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [head-amd64-default-job-12] Installing glproto-1.4.17... [head-amd64-default-job-12] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [head-amd64-default-job-12] Installing dri2proto-2.8... [head-amd64-default-job-12] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [head-amd64-default-job-12] Installing libX11-1.6.2_2,1... [head-amd64-default-job-12] `-- Installing kbproto-1.0.6... [head-amd64-default-job-12] `-- Extracting kbproto-1.0.6... done [head-amd64-default-job-12] `-- Installing libXau-1.0.8_2... [head-amd64-default-job-12] | `-- Installing xproto-7.0.26... [head-amd64-default-job-12] | `-- Extracting xproto-7.0.26... done [head-amd64-default-job-12] `-- Extracting libXau-1.0.8_2... done [head-amd64-default-job-12] `-- Installing libXdmcp-1.1.1_2... [head-amd64-default-job-12] `-- Extracting libXdmcp-1.1.1_2... done [head-amd64-default-job-12] `-- Installing libxcb-1.11... [head-amd64-default-job-12] | `-- Installing libpthread-stubs-0.3_6... [head-amd64-default-job-12] | `-- Extracting libpthread-stubs-0.3_6... done [head-amd64-default-job-12] | `-- Installing libxml2-2.9.2_2... [head-amd64-default-job-12] | `-- Extracting libxml2-2.9.2_2... done [head-amd64-default-job-12] `-- Extracting libxcb-1.11... done [head-amd64-default-job-12] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [head-amd64-default-job-12] Installing libXrandr-1.4.2_2... [head-amd64-default-job-12] `-- Installing libXext-1.3.3,1... [head-amd64-default-job-12] | `-- Installing xextproto-7.3.0... [head-amd64-default-job-12] | `-- Extracting xextproto-7.3.0... done [head-amd64-default-job-12] `-- Extracting libXext-1.3.3,1... done [head-amd64-default-job-12] `-- Installing libXrender-0.9.8_2... [head-amd64-default-job-12] | `-- Installing renderproto-0.11.1... [head-amd64-default-job-12] | `-- Extracting renderproto-0.11.1... done [head-amd64-default-job-12] `-- Extracting libXrender-0.9.8_2... done [head-amd64-default-job-12] `-- Installing randrproto-1.4.0... [head-amd64-default-job-12] `-- Extracting randrproto-1.4.0... done [head-amd64-default-job-12] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [head-amd64-default-job-12] Installing gstreamer1-plugins-1.4.4... [head-amd64-default-job-12] `-- Installing freetype2-2.5.4... [head-amd64-default-job-12] `-- Extracting freetype2-2.5.4... done [head-amd64-default-job-12] `-- Installing glib-2.42.1... [head-amd64-default-job-12] | `-- Installing libffi-3.0.13_3... [head-amd64-default-job-12] | `-- Extracting libffi-3.0.13_3... done [head-amd64-default-job-12] | `-- Installing libiconv-1.14_6... [head-amd64-default-job-12] | `-- Extracting libiconv-1.14_6... done [head-amd64-default-job-12] | `-- Installing pcre-8.35_2... [head-amd64-default-job-12] | `-- Extracting pcre-8.35_2... done [head-amd64-default-job-12] | `-- Installing perl5-5.18.4_10... [head-amd64-default-job-12] | `-- Extracting perl5-5.18.4_10... done [head-amd64-default-job-12] | `-- Installing python27-2.7.8_6... [head-amd64-default-job-12] | | `-- Installing readline-6.3.8... [head-amd64-default-job-12] | | `-- Extracting readline-6.3.8... done [head-amd64-default-job-12] | `-- Extracting python27-2.7.8_6... done [head-amd64-default-job-12] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [head-amd64-default-job-12] `-- Installing gstreamer1-1.4.4... [head-amd64-default-job-12] `-- Extracting gstreamer1-1.4.4... done [head-amd64-default-job-12] `-- Installing iso-codes-3.56... [head-amd64-default-job-12] `-- Extracting iso-codes-3.56... done [head-amd64-default-job-12] `-- Installing orc-0.4.22... [head-amd64-default-job-12] `-- Extracting orc-0.4.22... done [head-amd64-default-job-12] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [head-amd64-default-job-12] Installing libva-1.4.0... [head-amd64-default-job-12] `-- Installing libGL-10.3.4... [head-amd64-default-job-12] | `-- Installing expat-2.1.0_2... [head-amd64-default-job-12] | `-- Extracting expat-2.1.0_2... done [head-amd64-default-job-12] | `-- Installing libXdamage-1.1.4_2... [head-amd64-default-job-12] | | `-- Installing damageproto-1.2.1... [head-amd64-default-job-12] | | `-- Extracting damageproto-1.2.1... done [head-amd64-default-job-12] | | `-- Installing libXfixes-5.0.1_2... [head-amd64-default-job-12] | | `-- Installing fixesproto-5.0... [head-amd64-default-job-12] | | `-- Extracting fixesproto-5.0... done [head-amd64-default-job-12] | | `-- Extracting libXfixes-5.0.1_2... done [head-amd64-default-job-12] | `-- Extracting libXdamage-1.1.4_2... done [head-amd64-default-job-12] | `-- Installing libXxf86vm-1.1.3_2... [head-amd64-default-job-12] | | `-- Installing xf86vidmodeproto-2.3.1... [head-amd64-default-job-12] | | `-- Extracting xf86vidmodeproto-2.3.1... done [head-amd64-default-job-12] | `-- Extracting libXxf86vm-1.1.3_2... done [head-amd64-default-job-12] | `-- Installing libdevq-0.0.2... [head-amd64-default-job-12] | `-- Extracting libdevq-0.0.2... done [head-amd64-default-job-12] | `-- Installing libdrm-2.4.58_1,1... [head-amd64-default-job-12] | | `-- Installing libpciaccess-0.13.2_2... [head-amd64-default-job-12] | | `-- Installing pciids-20141123... [head-amd64-default-job-12] | | `-- Extracting pciids-20141123... done [head-amd64-default-job-12] | | `-- Extracting libpciaccess-0.13.2_2... done [head-amd64-default-job-12] | `-- Extracting libdrm-2.4.58_1,1... done [head-amd64-default-job-12] | `-- Installing libglapi-10.3.4... [head-amd64-default-job-12] | | `-- Installing libxshmfence-1.1_3... [head-amd64-default-job-12] | | `-- Extracting libxshmfence-1.1_3... done [head-amd64-default-job-12] | `-- Extracting libglapi-10.3.4... done [head-amd64-default-job-12] `-- Extracting libGL-10.3.4... done [head-amd64-default-job-12] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... amd64-portbld-freebsd11.0 checking host system type... amd64-portbld-freebsd11.0 checking target system type... amd64-portbld-freebsd11.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd11.0 file names to amd64-portbld-freebsd11.0 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd11.0 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd11.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/multimedia/gstreamer1-vaapi From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 19:50:37 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98B1B85B; Thu, 18 Dec 2014 19:50:37 +0000 (UTC) Received: from beefy1.isc.freebsd.org (beefy1.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7699716CF; Thu, 18 Dec 2014 19:50:37 +0000 (UTC) Received: from beefy1.isc.freebsd.org (localhost [127.0.0.1]) by beefy1.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBIJoaPC066552; Thu, 18 Dec 2014 19:50:36 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBIJoacj066547; Thu, 18 Dec 2014 19:50:36 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 18 Dec 2014 19:50:36 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412181950.sBIJoacj066547@beefy1.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - 84i386-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 19:50:37 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy1.isc.freebsd.org/data/84i386-default/2014-12-18_16h17m19s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy1.isc.freebsd.org/build.html?mastername=84i386-default&build=2014-12-18_16h17m19s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Thu Dec 18 19:50:24 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD 84i386-default-job-09 8.4-RELEASE-p16 FreeBSD 8.4-RELEASE-p16 i386 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 804000 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=804000 UNAME_v=FreeBSD 8.4-RELEASE-p16 UNAME_r=8.4-RELEASE-p16 FTP_PASSIVE_MODE=YES BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/84i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/84i386-default/ref/.p/pool MASTERNAME=84i386-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS="" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=8.4 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [84i386-default-job-09] Installing pkg-1.4.0... [84i386-default-job-09] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [84i386-default-job-09] Installing gmake-4.1_1... [84i386-default-job-09] `-- Installing gettext-runtime-0.19.3... [84i386-default-job-09] | `-- Installing indexinfo-0.2... [84i386-default-job-09] | `-- Extracting indexinfo-0.2... done [84i386-default-job-09] | `-- Installing libiconv-1.14_6... [84i386-default-job-09] | `-- Extracting libiconv-1.14_6... done [84i386-default-job-09] `-- Extracting gettext-runtime-0.19.3... done [84i386-default-job-09] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [84i386-default-job-09] Installing pkgconf-0.9.7... [84i386-default-job-09] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [84i386-default-job-09] Installing glproto-1.4.17... [84i386-default-job-09] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [84i386-default-job-09] Installing dri2proto-2.8... [84i386-default-job-09] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [84i386-default-job-09] Installing libX11-1.6.2_2,1... [84i386-default-job-09] `-- Installing kbproto-1.0.6... [84i386-default-job-09] `-- Extracting kbproto-1.0.6... done [84i386-default-job-09] `-- Installing libXau-1.0.8_2... [84i386-default-job-09] | `-- Installing xproto-7.0.26... [84i386-default-job-09] | `-- Extracting xproto-7.0.26... done [84i386-default-job-09] `-- Extracting libXau-1.0.8_2... done [84i386-default-job-09] `-- Installing libXdmcp-1.1.1_2... [84i386-default-job-09] `-- Extracting libXdmcp-1.1.1_2... done [84i386-default-job-09] `-- Installing libxcb-1.11... [84i386-default-job-09] | `-- Installing libpthread-stubs-0.3_6... [84i386-default-job-09] | `-- Extracting libpthread-stubs-0.3_6... done [84i386-default-job-09] | `-- Installing libxml2-2.9.2_2... [84i386-default-job-09] | `-- Extracting libxml2-2.9.2_2... done [84i386-default-job-09] `-- Extracting libxcb-1.11... done [84i386-default-job-09] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [84i386-default-job-09] Installing libXrandr-1.4.2_2... [84i386-default-job-09] `-- Installing libXext-1.3.3,1... [84i386-default-job-09] | `-- Installing xextproto-7.3.0... [84i386-default-job-09] | `-- Extracting xextproto-7.3.0... done [84i386-default-job-09] `-- Extracting libXext-1.3.3,1... done [84i386-default-job-09] `-- Installing libXrender-0.9.8_2... [84i386-default-job-09] | `-- Installing renderproto-0.11.1... [84i386-default-job-09] | `-- Extracting renderproto-0.11.1... done [84i386-default-job-09] `-- Extracting libXrender-0.9.8_2... done [84i386-default-job-09] `-- Installing randrproto-1.4.0... [84i386-default-job-09] `-- Extracting randrproto-1.4.0... done [84i386-default-job-09] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [84i386-default-job-09] Installing gstreamer1-plugins-1.4.4... [84i386-default-job-09] `-- Installing freetype2-2.5.4... [84i386-default-job-09] `-- Extracting freetype2-2.5.4... done [84i386-default-job-09] `-- Installing glib-2.42.1... [84i386-default-job-09] | `-- Installing libffi-3.0.13_3... [84i386-default-job-09] | `-- Extracting libffi-3.0.13_3... done [84i386-default-job-09] | `-- Installing pcre-8.35_2... [84i386-default-job-09] | `-- Extracting pcre-8.35_2... done [84i386-default-job-09] | `-- Installing perl5-5.18.4_10... [84i386-default-job-09] | `-- Extracting perl5-5.18.4_10... done [84i386-default-job-09] | `-- Installing python27-2.7.8_6... [84i386-default-job-09] | `-- Extracting python27-2.7.8_6... done [84i386-default-job-09] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [84i386-default-job-09] `-- Installing gstreamer1-1.4.4... [84i386-default-job-09] `-- Extracting gstreamer1-1.4.4... done [84i386-default-job-09] `-- Installing iso-codes-3.56... [84i386-default-job-09] `-- Extracting iso-codes-3.56... done [84i386-default-job-09] `-- Installing orc-0.4.22... [84i386-default-job-09] `-- Extracting orc-0.4.22... done [84i386-default-job-09] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [84i386-default-job-09] Installing libva-1.4.0... [84i386-default-job-09] `-- Installing libGL-9.1.7_4... [84i386-default-job-09] | `-- Installing expat-2.1.0_2... [84i386-default-job-09] | `-- Extracting expat-2.1.0_2... done [84i386-default-job-09] | `-- Installing libXdamage-1.1.4_2... [84i386-default-job-09] | | `-- Installing damageproto-1.2.1... [84i386-default-job-09] | | `-- Extracting damageproto-1.2.1... done [84i386-default-job-09] | | `-- Installing libXfixes-5.0.1_2... [84i386-default-job-09] | | `-- Installing fixesproto-5.0... [84i386-default-job-09] | | `-- Extracting fixesproto-5.0... done [84i386-default-job-09] | | `-- Extracting libXfixes-5.0.1_2... done [84i386-default-job-09] | `-- Extracting libXdamage-1.1.4_2... done [84i386-default-job-09] | `-- Installing libXxf86vm-1.1.3_2... [84i386-default-job-09] | | `-- Installing xf86vidmodeproto-2.3.1... [84i386-default-job-09] | | `-- Extracting xf86vidmodeproto-2.3.1... done [84i386-default-job-09] | `-- Extracting libXxf86vm-1.1.3_2... done [84i386-default-job-09] | `-- Installing libdevq-0.0.2... [84i386-default-job-09] | `-- Extracting libdevq-0.0.2... done [84i386-default-job-09] | `-- Installing libdrm-2.4.58_1,1... [84i386-default-job-09] | | `-- Installing libpciaccess-0.13.2_2... [84i386-default-job-09] | | `-- Installing pciids-20141123... [84i386-default-job-09] | | `-- Extracting pciids-20141123... done [84i386-default-job-09] | | `-- Extracting libpciaccess-0.13.2_2... done [84i386-default-job-09] | `-- Extracting libdrm-2.4.58_1,1... done [84i386-default-job-09] | `-- Installing libglapi-9.1.7_2... [84i386-default-job-09] | | `-- Installing libxshmfence-1.1_3... [84i386-default-job-09] | | `-- Extracting libxshmfence-1.1_3... done [84i386-default-job-09] | `-- Extracting libglapi-9.1.7_2... done [84i386-default-job-09] `-- Extracting libGL-9.1.7_4... done [84i386-default-job-09] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... i386-portbld-freebsd8.4 checking host system type... i386-portbld-freebsd8.4 checking target system type... i386-portbld-freebsd8.4 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd8.4 file names to i386-portbld-freebsd8.4 format... func_convert_file_noop checking how to convert i386-portbld-freebsd8.4 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd8.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop in /usr/ports/multimedia/gstreamer1-vaapi. From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 18 20:48:54 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5C9EDA1; Thu, 18 Dec 2014 20:48:54 +0000 (UTC) Received: from beefy2.isc.freebsd.org (beefy2.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C479320E6; Thu, 18 Dec 2014 20:48:54 +0000 (UTC) Received: from beefy2.isc.freebsd.org (localhost [127.0.0.1]) by beefy2.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sBIKmsuB063380; Thu, 18 Dec 2014 20:48:54 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.isc.freebsd.org (8.14.9/8.14.9/Submit) id sBIKmsDr063379; Thu, 18 Dec 2014 20:48:54 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 18 Dec 2014 20:48:54 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412182048.sBIKmsDr063379@beefy2.isc.freebsd.org> To: multimedia@FreeBSD.org Subject: [package - 84amd64-default][multimedia/gstreamer1-vaapi] Failed for gstreamer1-vaapi-0.5.7_2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2014 20:48:55 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: multimedia@FreeBSD.org Last committer: tijl@FreeBSD.org Ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Log URL: http://beefy2.isc.freebsd.org/data/84amd64-default/2014-12-18_17h11m07s/logs/gstreamer1-vaapi-0.5.7_2.log Build URL: http://beefy2.isc.freebsd.org/build.html?mastername=84amd64-default&build=2014-12-18_17h11m07s Log: ====>> Building multimedia/gstreamer1-vaapi build started at Thu Dec 18 20:48:41 UTC 2014 port directory: /usr/ports/multimedia/gstreamer1-vaapi building for: FreeBSD 84amd64-default-job-15 8.4-RELEASE-p16 FreeBSD 8.4-RELEASE-p16 amd64 maintained by: multimedia@FreeBSD.org Makefile ident: $FreeBSD: head/multimedia/gstreamer1-vaapi/Makefile 368079 2014-09-13 10:08:59Z tijl $ Poudriere version: 3.1-pre Host OSVERSION: 1100050 Jail OSVERSION: 804000 ---Begin Environment--- OSVERSION=804000 UNAME_v=FreeBSD 8.4-RELEASE-p16 UNAME_r=8.4-RELEASE-p16 FTP_PASSIVE_MODE=YES BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/84amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=gstreamer1-vaapi-0.5.7_2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/84amd64-default/ref/.p/pool MASTERNAME=84amd64-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-wayland --with-gstreamer-api=1.2 --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" MAKE=gmake PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work HOME=/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- VERSION=1.2 OSREL=8.4 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/gstreamer1-vaapi" EXAMPLESDIR="share/examples/gstreamer1-vaapi" DATADIR="share/gstreamer1-vaapi" WWWDIR="www/gstreamer1-vaapi" ETCDIR="etc/gstreamer1-vaapi" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/gstreamer1-vaapi DOCSDIR=/usr/local/share/doc/gstreamer1-vaapi EXAMPLESDIR=/usr/local/share/examples/gstreamer1-vaapi WWWDIR=/usr/local/www/gstreamer1-vaapi ETCDIR=/usr/local/etc/gstreamer1-vaapi --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted ran via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 accepted by the user =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.4.0.txz [84amd64-default-job-15] Installing pkg-1.4.0... [84amd64-default-job-15] Extracting pkg-1.4.0... done Message for pkg-1.4.0: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 accepted by the user ===> Fetching all distfiles required by gstreamer1-vaapi-0.5.7_2 for building ===> Extracting for gstreamer1-vaapi-0.5.7_2 => SHA256 Checksum OK for gstreamer-vaapi-0.5.7.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /packages/All/gmake-4.1_1.txz [84amd64-default-job-15] Installing gmake-4.1_1... [84amd64-default-job-15] `-- Installing gettext-runtime-0.19.3... [84amd64-default-job-15] | `-- Installing indexinfo-0.2... [84amd64-default-job-15] | `-- Extracting indexinfo-0.2... done [84amd64-default-job-15] | `-- Installing libiconv-1.14_6... [84amd64-default-job-15] | `-- Extracting libiconv-1.14_6... done [84amd64-default-job-15] `-- Extracting gettext-runtime-0.19.3... done [84amd64-default-job-15] Extracting gmake-4.1_1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [84amd64-default-job-15] Installing pkgconf-0.9.7... [84amd64-default-job-15] Extracting pkgconf-0.9.7... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc in /usr/ports/x11/glproto ===> Installing existing package /packages/All/glproto-1.4.17.txz [84amd64-default-job-15] Installing glproto-1.4.17... [84amd64-default-job-15] Extracting glproto-1.4.17... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/dri2proto.pc in /usr/ports/x11/dri2proto ===> Installing existing package /packages/All/dri2proto-2.8.txz [84amd64-default-job-15] Installing dri2proto-2.8... [84amd64-default-job-15] Extracting dri2proto-2.8... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/x11.pc in /usr/ports/x11/libX11 ===> Installing existing package /packages/All/libX11-1.6.2_2,1.txz [84amd64-default-job-15] Installing libX11-1.6.2_2,1... [84amd64-default-job-15] `-- Installing kbproto-1.0.6... [84amd64-default-job-15] `-- Extracting kbproto-1.0.6... done [84amd64-default-job-15] `-- Installing libXau-1.0.8_2... [84amd64-default-job-15] | `-- Installing xproto-7.0.26... [84amd64-default-job-15] | `-- Extracting xproto-7.0.26... done [84amd64-default-job-15] `-- Extracting libXau-1.0.8_2... done [84amd64-default-job-15] `-- Installing libXdmcp-1.1.1_2... [84amd64-default-job-15] `-- Extracting libXdmcp-1.1.1_2... done [84amd64-default-job-15] `-- Installing libxcb-1.11... [84amd64-default-job-15] | `-- Installing libpthread-stubs-0.3_6... [84amd64-default-job-15] | `-- Extracting libpthread-stubs-0.3_6... done [84amd64-default-job-15] | `-- Installing libxml2-2.9.2_2... [84amd64-default-job-15] | `-- Extracting libxml2-2.9.2_2... done [84amd64-default-job-15] `-- Extracting libxcb-1.11... done [84amd64-default-job-15] Extracting libX11-1.6.2_2,1... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - not found ===> Verifying install for /usr/local/libdata/pkgconfig/xrandr.pc in /usr/ports/x11/libXrandr ===> Installing existing package /packages/All/libXrandr-1.4.2_2.txz [84amd64-default-job-15] Installing libXrandr-1.4.2_2... [84amd64-default-job-15] `-- Installing libXext-1.3.3,1... [84amd64-default-job-15] | `-- Installing xextproto-7.3.0... [84amd64-default-job-15] | `-- Extracting xextproto-7.3.0... done [84amd64-default-job-15] `-- Extracting libXext-1.3.3,1... done [84amd64-default-job-15] `-- Installing libXrender-0.9.8_2... [84amd64-default-job-15] | `-- Installing renderproto-0.11.1... [84amd64-default-job-15] | `-- Extracting renderproto-0.11.1... done [84amd64-default-job-15] `-- Extracting libXrender-0.9.8_2... done [84amd64-default-job-15] `-- Installing randrproto-1.4.0... [84amd64-default-job-15] `-- Extracting randrproto-1.4.0... done [84amd64-default-job-15] Extracting libXrandr-1.4.2_2... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> gstreamer1-vaapi-0.5.7_2 depends on package: gstreamer1-plugins>=1.4.0 - not found ===> Verifying install for gstreamer1-plugins>=1.4.0 in /usr/ports/multimedia/gstreamer1-plugins ===> Installing existing package /packages/All/gstreamer1-plugins-1.4.4.txz [84amd64-default-job-15] Installing gstreamer1-plugins-1.4.4... [84amd64-default-job-15] `-- Installing freetype2-2.5.4... [84amd64-default-job-15] `-- Extracting freetype2-2.5.4... done [84amd64-default-job-15] `-- Installing glib-2.42.1... [84amd64-default-job-15] | `-- Installing libffi-3.0.13_3... [84amd64-default-job-15] | `-- Extracting libffi-3.0.13_3... done [84amd64-default-job-15] | `-- Installing pcre-8.35_2... [84amd64-default-job-15] | `-- Extracting pcre-8.35_2... done [84amd64-default-job-15] | `-- Installing perl5-5.18.4_10... [84amd64-default-job-15] | `-- Extracting perl5-5.18.4_10... done [84amd64-default-job-15] | `-- Installing python27-2.7.8_6... [84amd64-default-job-15] | `-- Extracting python27-2.7.8_6... done [84amd64-default-job-15] `-- Extracting glib-2.42.1... done No schema files found: doing nothing. [84amd64-default-job-15] `-- Installing gstreamer1-1.4.4... [84amd64-default-job-15] `-- Extracting gstreamer1-1.4.4... done [84amd64-default-job-15] `-- Installing iso-codes-3.56... [84amd64-default-job-15] `-- Extracting iso-codes-3.56... done [84amd64-default-job-15] `-- Installing orc-0.4.22... [84amd64-default-job-15] `-- Extracting orc-0.4.22... done [84amd64-default-job-15] Extracting gstreamer1-plugins-1.4.4... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of gstreamer1-vaapi-0.5.7_2 =========================================================================== =================================================== ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libva.so - not found ===> Verifying for libva.so in /usr/ports/multimedia/libva ===> Installing existing package /packages/All/libva-1.4.0.txz [84amd64-default-job-15] Installing libva-1.4.0... [84amd64-default-job-15] `-- Installing libGL-9.1.7_4... [84amd64-default-job-15] | `-- Installing expat-2.1.0_2... [84amd64-default-job-15] | `-- Extracting expat-2.1.0_2... done [84amd64-default-job-15] | `-- Installing libXdamage-1.1.4_2... [84amd64-default-job-15] | | `-- Installing damageproto-1.2.1... [84amd64-default-job-15] | | `-- Extracting damageproto-1.2.1... done [84amd64-default-job-15] | | `-- Installing libXfixes-5.0.1_2... [84amd64-default-job-15] | | `-- Installing fixesproto-5.0... [84amd64-default-job-15] | | `-- Extracting fixesproto-5.0... done [84amd64-default-job-15] | | `-- Extracting libXfixes-5.0.1_2... done [84amd64-default-job-15] | `-- Extracting libXdamage-1.1.4_2... done [84amd64-default-job-15] | `-- Installing libXxf86vm-1.1.3_2... [84amd64-default-job-15] | | `-- Installing xf86vidmodeproto-2.3.1... [84amd64-default-job-15] | | `-- Extracting xf86vidmodeproto-2.3.1... done [84amd64-default-job-15] | `-- Extracting libXxf86vm-1.1.3_2... done [84amd64-default-job-15] | `-- Installing libdevq-0.0.2... [84amd64-default-job-15] | `-- Extracting libdevq-0.0.2... done [84amd64-default-job-15] | `-- Installing libdrm-2.4.58_1,1... [84amd64-default-job-15] | | `-- Installing libpciaccess-0.13.2_2... [84amd64-default-job-15] | | `-- Installing pciids-20141123... [84amd64-default-job-15] | | `-- Extracting pciids-20141123... done [84amd64-default-job-15] | | `-- Extracting libpciaccess-0.13.2_2... done [84amd64-default-job-15] | `-- Extracting libdrm-2.4.58_1,1... done [84amd64-default-job-15] | `-- Installing libglapi-9.1.7_2... [84amd64-default-job-15] | | `-- Installing libxshmfence-1.1_3... [84amd64-default-job-15] | | `-- Extracting libxshmfence-1.1_3... done [84amd64-default-job-15] | `-- Extracting libglapi-9.1.7_2... done [84amd64-default-job-15] `-- Extracting libGL-9.1.7_4... done [84amd64-default-job-15] Extracting libva-1.4.0... done ===> Returning to build of gstreamer1-vaapi-0.5.7_2 ===> gstreamer1-vaapi-0.5.7_2 depends on shared library: libGL.so - found (/usr/local/lib/libGL.so) =========================================================================== =================================================== ===> Configuring for gstreamer1-vaapi-0.5.7_2 configure: loading site script /usr/ports/Templates/config.site checking build system type... amd64-portbld-freebsd8.4 checking host system type... amd64-portbld-freebsd8.4 checking target system type... amd64-portbld-freebsd8.4 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether UID '0' is supported by ustar format... yes checking whether GID '0' is supported by ustar format... yes checking how to create a ustar tar archive... (cached) /usr/bin/tar checking whether gmake supports nested variables... (cached) yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for git... no checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd8.4 file names to amd64-portbld-freebsd8.4 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd8.4 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd8.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for tan in -lm... yes checking pkg-config is at least version 0.9.0... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for GLIB... yes checking for dlopen... (cached) yes checking for GStreamer API version... 1.4 configure: error: unsupported GStreamer API version 1.4 ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/multimedia/gstreamer1-vaapi/work/gstreamer-vaapi-0.5.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop in /usr/ports/multimedia/gstreamer1-vaapi. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 17:50:37 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1284AC97 for ; Sat, 20 Dec 2014 17:50:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F333012AE for ; Sat, 20 Dec 2014 17:50:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKHoatk031128 for ; Sat, 20 Dec 2014 17:50:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: maintainer-feedback requested: [Bug 196162] net/liveMedia ignores PREFIX [patch] Date: Sat, 20 Dec 2014 17:50:36 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 17:50:37 -0000 Mikhail T. has reassigned Bugzilla Automation 's request for maintainer-feedback to multimedia@FreeBSD.org: Bug 196162: net/liveMedia ignores PREFIX [patch] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196162 --- Description --- Created attachment 150814 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150814&action=edit "Brute force" correct PREFIX in generated Makefiles after configure My prefix is set to /opt here, but the port staged everything into ${STAGEDIR}/usr/local anyway. Installation failed. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 17:50:37 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71E72C99 for ; Sat, 20 Dec 2014 17:50:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59A0712B0 for ; Sat, 20 Dec 2014 17:50:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKHobnZ031143 for ; Sat, 20 Dec 2014 17:50:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196162] New: net/liveMedia ignores PREFIX [patch] Date: Sat, 20 Dec 2014 17:50:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 17:50:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196162 Bug ID: 196162 Summary: net/liveMedia ignores PREFIX [patch] Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: multimedia@FreeBSD.org Reporter: mi@ALDAN.algebra.com Assignee: multimedia@FreeBSD.org Flags: maintainer-feedback?(multimedia@FreeBSD.org) Created attachment 150814 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150814&action=edit "Brute force" correct PREFIX in generated Makefiles after configure My prefix is set to /opt here, but the port staged everything into ${STAGEDIR}/usr/local anyway. Installation failed. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 17:52:12 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1ADDE48 for ; Sat, 20 Dec 2014 17:52:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D921612E4 for ; Sat, 20 Dec 2014 17:52:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKHqChY048832 for ; Sat, 20 Dec 2014 17:52:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196072] net/liveMedia: Update to 2014.12.17 Date: Sat, 20 Dec 2014 17:52:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 17:52:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196072 Mikhail T. changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mi@ALDAN.algebra.com --- Comment #2 from Mikhail T. --- The port was upgraded, but the commit-message made no mention of this PR: r375008 | riggs | 2014-12-20 09:49:15 -0500 (Sat, 20 Dec 2014) | 2 lines Update to upstream version 2014.12.17 The PR should no be closed, I suppose... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 17:57:36 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8606C220 for ; Sat, 20 Dec 2014 17:57:36 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72645135F for ; Sat, 20 Dec 2014 17:57:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKHvaSs070250 for ; Sat, 20 Dec 2014 17:57:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: maintainer-feedback requested: [Bug 196163] audio/fluidsynth: ALSA option breaks build Date: Sat, 20 Dec 2014 17:57:36 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 17:57:36 -0000 Mikhail T. has reassigned Bugzilla Automation 's request for maintainer-feedback to multimedia@FreeBSD.org: Bug 196163: audio/fluidsynth: ALSA option breaks build https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196163 --- Description --- Enabling ALSA option breaks the build here (10.1/amd64): FAILED: /usr/bin/cc -DHAVE_CONFIG_H -Dlibfluidsynth_EXPORTS -O2 -pipe -march=3Dopteron -I/opt/include/portaudio2 -I/opt/include -fstack-protector -fno-strict-aliasing -O2 -pipe -march=3Dopteron -I/opt/include/portaudio2 -I/opt/include -fstack-protector -fno-strict-aliasing -fPIC -I. -Isrc -Isrc/drivers -Isrc/synth -Isrc/rvoice -Isrc/midi -Isrc/utils -Isrc/sfloader -Isrc/bindings -Iinclude -I/opt/include/glib-2.0 -I/opt/lib/glib-2.0/include -I/opt/include -I/opt/include/alsa -MMD -MT src/CMakeFiles/libfluidsynth.dir/drivers/fluid_alsa.c.o -MF src/CMakeFiles/libfluidsynth.dir/drivers/fluid_alsa.c.o.d -o src/CMakeFiles/libfluidsynth.dir/drivers/fluid_alsa.c.o -c src/drivers/fluid_alsa.c ... src/drivers/fluid_alsa.c:357:8: error: duplicate case value '-32' case -ESTRPIPE: ^ src/drivers/fluid_alsa.c:350:8: note: previous case defined here case -EPIPE: Indeed, both EPIPE and ESTRPIPE are 32... --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org= From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 17:57:36 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D113F221 for ; Sat, 20 Dec 2014 17:57:36 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E6751360 for ; Sat, 20 Dec 2014 17:57:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKHvaS4070253 for ; Sat, 20 Dec 2014 17:57:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196163] New: audio/fluidsynth: ALSA option breaks build Date: Sat, 20 Dec 2014 17:57:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 17:57:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196163 Bug ID: 196163 Summary: audio/fluidsynth: ALSA option breaks build Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: multimedia@FreeBSD.org Reporter: mi@ALDAN.algebra.com Flags: maintainer-feedback?(multimedia@FreeBSD.org) Assignee: multimedia@FreeBSD.org Enabling ALSA option breaks the build here (10.1/amd64): FAILED: /usr/bin/cc -DHAVE_CONFIG_H -Dlibfluidsynth_EXPORTS -O2 -pipe -march=opteron -I/opt/include/portaudio2 -I/opt/include -fstack-protector -fno-strict-aliasing -O2 -pipe -march=opteron -I/opt/include/portaudio2 -I/opt/include -fstack-protector -fno-strict-aliasing -fPIC -I. -Isrc -Isrc/drivers -Isrc/synth -Isrc/rvoice -Isrc/midi -Isrc/utils -Isrc/sfloader -Isrc/bindings -Iinclude -I/opt/include/glib-2.0 -I/opt/lib/glib-2.0/include -I/opt/include -I/opt/include/alsa -MMD -MT src/CMakeFiles/libfluidsynth.dir/drivers/fluid_alsa.c.o -MF src/CMakeFiles/libfluidsynth.dir/drivers/fluid_alsa.c.o.d -o src/CMakeFiles/libfluidsynth.dir/drivers/fluid_alsa.c.o -c src/drivers/fluid_alsa.c ... src/drivers/fluid_alsa.c:357:8: error: duplicate case value '-32' case -ESTRPIPE: ^ src/drivers/fluid_alsa.c:350:8: note: previous case defined here case -EPIPE: Indeed, both EPIPE and ESTRPIPE are 32... --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer multimedia@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 18:04:26 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CEF831E for ; Sat, 20 Dec 2014 18:04:26 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4489214CF for ; Sat, 20 Dec 2014 18:04:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKI4QbQ083938 for ; Sat, 20 Dec 2014 18:04:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196072] net/liveMedia: Update to 2014.12.17 Date: Sat, 20 Dec 2014 18:04:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: riggs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: riggs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 18:04:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196072 Thomas Zander changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|multimedia@FreeBSD.org |riggs@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 18:12:13 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63960698 for ; Sat, 20 Dec 2014 18:12:13 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AABB1AFC for ; Sat, 20 Dec 2014 18:12:13 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKICDcF094851 for ; Sat, 20 Dec 2014 18:12:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196163] audio/fluidsynth: ALSA option breaks build Date: Sat, 20 Dec 2014 18:12:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 18:12:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196163 --- Comment #2 from Mikhail T. --- Created attachment 150815 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150815&action=edit Fix alsa-driver I submitted this patch upstream too: https://sourceforge.net/p/fluidsynth/tickets/135/ Drop into files/ ... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 18:12:46 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A97956D9 for ; Sat, 20 Dec 2014 18:12:46 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 836B21B0A for ; Sat, 20 Dec 2014 18:12:46 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKICkUl023804 for ; Sat, 20 Dec 2014 18:12:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196163] audio/fluidsynth: ALSA option breaks build [patch] Date: Sat, 20 Dec 2014 18:12:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mi@ALDAN.algebra.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 18:12:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196163 Mikhail T. changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|audio/fluidsynth: ALSA |audio/fluidsynth: ALSA |option breaks build |option breaks build [patch] -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 20 18:33:00 2014 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99FD165C for ; Sat, 20 Dec 2014 18:33:00 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 818971E38 for ; Sat, 20 Dec 2014 18:33:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKIX0BB011406 for ; Sat, 20 Dec 2014 18:33:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 196162] net/liveMedia ignores PREFIX [patch] Date: Sat, 20 Dec 2014 18:33:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: riggs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: riggs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 18:33:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196162 Thomas Zander changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |riggs@FreeBSD.org Status|New |Open Assignee|multimedia@FreeBSD.org |riggs@FreeBSD.org --- Comment #2 from Thomas Zander --- Did it respect PREFIX before? No worries, I don't want to reject this generally, just being curious. -- You are receiving this mail because: You are the assignee for the bug.