1234567891011121314151617181920212223242526272829 |
- # Copyright 1999-2015 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- EAPI=5
- MY_P="bcg729-${PV}"
- DESCRIPTION="Backported G729 implementation for Linphone"
- 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.8.2:=[ortp]"
- DEPEND="${RDEPEND}
- virtual/pkgconfig"
- S="${WORKDIR}/${MY_P}"
- src_configure(){
- # strict = -Werror
- econf \
- --disable-static \
- --disable-strict
- }
|