71 lines
1.9 KiB
Bash
71 lines
1.9 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.2.2.ebuild,v 1.10 2013/04/10 20:22:10 ago Exp $
|
|
|
|
EAPI="5"
|
|
|
|
# no PYTHON_DEPEND, python is purely a build-time dependency
|
|
inherit eutils python
|
|
|
|
DESCRIPTION="Audio/video conferencing framework specifically designed for instant messengers"
|
|
HOMEPAGE="http://www.freedesktop.org/wiki/Software/Farstream"
|
|
SRC_URI="http://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
|
IUSE="+introspection msn test upnp"
|
|
|
|
SLOT="0.2"
|
|
|
|
# Tests need shmsink from gst-plugins-bad, which isn't packaged
|
|
RESTRICT="test"
|
|
|
|
COMMONDEPEND="media-libs/gstreamer:1.0
|
|
media-libs/gst-plugins-base:1.0
|
|
>=dev-libs/glib-2.32:2
|
|
>=net-libs/libnice-0.1.3-r1
|
|
introspection? ( >=dev-libs/gobject-introspection-0.10.11 )
|
|
upnp? ( >=net-libs/gupnp-igd-0.2:= )"
|
|
|
|
RDEPEND="${COMMONDEPEND}
|
|
media-libs/gst-plugins-good:1.0
|
|
media-libs/gst-plugins-bad:1.0
|
|
media-plugins/gst-plugins-libnice:1.0
|
|
msn? ( media-plugins/gst-plugins-mimic:1.0 )"
|
|
|
|
DEPEND="${COMMONDEPEND}
|
|
=dev-lang/python-2*
|
|
dev-util/gtk-doc-am
|
|
virtual/pkgconfig
|
|
test? (
|
|
media-libs/gst-plugins-base:1.0[vorbis]
|
|
media-libs/gst-plugins-good:1.0 )"
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
python_pkg_setup
|
|
}
|
|
|
|
src_configure() {
|
|
plugins="fsrawconference,fsrtpconference,fsfunnel,fsrtcpfilter,fsvideoanyrate"
|
|
use msn && plugins="${plugins},fsmsnconference"
|
|
econf --disable-static \
|
|
$(use_enable introspection) \
|
|
$(use_enable upnp gupnp) \
|
|
--with-plugins=${plugins}
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files --modules
|
|
}
|
|
|
|
src_test() {
|
|
# FIXME: do an out-of-tree build for tests if USE=-msn
|
|
if ! use msn; then
|
|
elog "Tests disabled without msn use flag"
|
|
return
|
|
fi
|
|
|
|
emake -j1 check
|
|
}
|