From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 25CE213877A for ; Fri, 20 Jun 2014 12:54:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A815DE0876; Fri, 20 Jun 2014 12:54:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B801E0807 for ; Fri, 20 Jun 2014 12:54:26 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 322973401A5 for ; Fri, 20 Jun 2014 12:54:25 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2166) id C818B2004E; Fri, 20 Jun 2014 12:54:23 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libdc1394: libdc1394-2.2.1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libdc1394-2.2.1.ebuild ChangeLog X-VCS-Directories: media-libs/libdc1394 X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140620125423.C818B2004E@flycatcher.gentoo.org> Date: Fri, 20 Jun 2014 12:54:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4e194c37-331c-4f07-b48b-f463353ff3ef X-Archives-Hash: b2c7938026faf936dd8c7768240c31fa ssuominen 14/06/20 12:54:23 Modified: libdc1394-2.2.1.ebuild ChangeLog Log: Since capture.c in dc1394/usb/ directory is using pthread_join and pthread_create functions, link to -lpthread accordingly wrt #514008 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D) Revision Changes Path 1.6 media-libs/libdc1394/libdc1394-2.2.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild?r1=1.5&r2=1.6 Index: libdc1394-2.2.1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- libdc1394-2.2.1.ebuild 20 Jun 2014 11:53:31 -0000 1.5 +++ libdc1394-2.2.1.ebuild 20 Jun 2014 12:54:23 -0000 1.6 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild,v 1.5 2014/06/20 11:53:31 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild,v 1.6 2014/06/20 12:54:23 ssuominen Exp $ EAPI=5 @@ -23,7 +23,10 @@ doc? ( app-doc/doxygen )" src_prepare() { - epatch "${FILESDIR}"/${P}-includes.patch + epatch \ + "${FILESDIR}"/${P}-includes.patch \ + "${FILESDIR}"/${P}-pthread.patch + AT_M4DIR=${WORKDIR}/aclocal eautoreconf } 1.75 media-libs/libdc1394/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.75&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.75&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?r1=1.74&r2=1.75 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v retrieving revision 1.74 retrieving revision 1.75 diff -u -r1.74 -r1.75 --- ChangeLog 20 Jun 2014 11:53:31 -0000 1.74 +++ ChangeLog 20 Jun 2014 12:54:23 -0000 1.75 @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libdc1394 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.74 2014/06/20 11:53:31 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.75 2014/06/20 12:54:23 ssuominen Exp $ + + 20 Jun 2014; Samuli Suominen + +files/libdc1394-2.2.1-pthread.patch, libdc1394-2.2.1.ebuild: + Since capture.c in dc1394/usb/ directory is using pthread_join and + pthread_create functions, link to -lpthread accordingly wrt #514008 20 Jun 2014; Samuli Suominen libdc1394-2.2.1.ebuild: Download and extract sdl.m4 and point AT_M4DIR for eautoreconf to it wrt