From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79ADF1396D9 for ; Sun, 19 Nov 2017 17:46:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7E69E0E68; Sun, 19 Nov 2017 17:46:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5A9EE0E68 for ; Sun, 19 Nov 2017 17:46:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 910E6340AC7 for ; Sun, 19 Nov 2017 17:46:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C715A071 for ; Sun, 19 Nov 2017 17:45:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1511111634.229961c5f3acf60505c611b9f55b3d8a578f2b53.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mediastreamer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mediastreamer/mediastreamer-2.9.0-r2.ebuild X-VCS-Directories: media-libs/mediastreamer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 229961c5f3acf60505c611b9f55b3d8a578f2b53 X-VCS-Branch: master Date: Sun, 19 Nov 2017 17:45:59 +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: ef4fbb48-c808-4024-b708-67de345835b4 X-Archives-Hash: 39518e8cb610ee98e322d62539f8214f commit: 229961c5f3acf60505c611b9f55b3d8a578f2b53 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 19 17:12:17 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 19 17:13:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=229961c5 media-libs/mediastreamer: Switch to EAPI 6 and ltprune.eclass Package-Manager: Portage-2.3.14, Repoman-2.3.6 .../mediastreamer/mediastreamer-2.9.0-r2.ebuild | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/media-libs/mediastreamer/mediastreamer-2.9.0-r2.ebuild b/media-libs/mediastreamer/mediastreamer-2.9.0-r2.ebuild index 467f88e4563..22229604baa 100644 --- a/media-libs/mediastreamer/mediastreamer-2.9.0-r2.ebuild +++ b/media-libs/mediastreamer/mediastreamer-2.9.0-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit autotools eutils +inherit autotools ltprune DESCRIPTION="Mediastreaming library for telephony application" HOMEPAGE="https://www.linphone.org/" @@ -76,7 +76,18 @@ PDEPEND=" video? ( x264? ( media-plugins/mediastreamer-x264 ) ) " +PATCHES=( + "${FILESDIR}/${P}-v4l-automagic.patch" + "${FILESDIR}/${P}-libav9.patch" + "${FILESDIR}/${P}-underlinking.patch" + "${FILESDIR}/${P}-tests.patch" + "${FILESDIR}/${P}-xxd.patch" + "${FILESDIR}/${P}-ffmpeg3.patch" +) + src_prepare() { + default + # variable causes "command not found" warning and is not # needed anyway sed -i \ @@ -108,13 +119,6 @@ src_prepare() { -e 's:linux/videodev.h ::' \ configure.ac || die - epatch "${FILESDIR}/${P}-v4l-automagic.patch" \ - "${FILESDIR}/${P}-libav9.patch" \ - "${FILESDIR}/${P}-underlinking.patch" \ - "${FILESDIR}/${P}-tests.patch" \ - "${FILESDIR}/${P}-xxd.patch" \ - "${FILESDIR}/${P}-ffmpeg3.patch" - eautoreconf }