diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-11-19 18:12:17 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-11-19 18:13:54 +0100 |
commit | 229961c5f3acf60505c611b9f55b3d8a578f2b53 (patch) | |
tree | 128ec14bcffa309405e7efcd710cf8fddd6fd533 /media-libs | |
parent | media-libs/mediastreamer: Switch to https (diff) | |
download | gentoo-229961c5f3acf60505c611b9f55b3d8a578f2b53.tar.gz gentoo-229961c5f3acf60505c611b9f55b3d8a578f2b53.tar.bz2 gentoo-229961c5f3acf60505c611b9f55b3d8a578f2b53.zip |
media-libs/mediastreamer: Switch to EAPI 6 and ltprune.eclass
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/mediastreamer/mediastreamer-2.9.0-r2.ebuild | 22 |
1 files 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 467f88e45639..22229604baa9 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 } |