blob: 1278d0e077285207a4e34b00b71e60ca5fd82233 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_P="msx264-${PV}"
DESCRIPTION="mediastreamer plugin: add H264 support"
HOMEPAGE="https://www.linphone.org/"
SRC_URI="mirror://nongnu/linphone/plugins/sources/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 arm64 ~ppc ~ppc64 ~x86"
IUSE="libav"
RDEPEND="
>=media-libs/mediastreamer-2.7.0:=[video]
>=media-libs/x264-0.0.20100118:=
libav? ( media-video/libav:0= )
!libav? ( media-video/ffmpeg:0= )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}"/${MY_P}
src_configure() {
# strict: don't want -Werror
econf \
--disable-strict
}
|