30 lines
654 B
Bash
30 lines
654 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id: a06ea1e473b2fa662915f7cb3e3c9df05f7ecb27 $
|
|
|
|
EAPI=5
|
|
|
|
MY_P="msx264-${PV}"
|
|
|
|
DESCRIPTION="mediastreamer plugin: add H264 support"
|
|
HOMEPAGE="http://www.linphone.org/"
|
|
SRC_URI="mirror://nongnu/linphone/plugins/sources/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=media-libs/mediastreamer-2.7.0:=[video]
|
|
>=media-libs/x264-0.0.20100118:=
|
|
virtual/ffmpeg"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_configure() {
|
|
# strict: don't want -Werror
|
|
econf \
|
|
--disable-strict
|
|
}
|