-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Samuel Martin <[email protected]>
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
config BR2_PACKAGE_FARSIGHT2 | ||
bool "farsight" | ||
depends on BR2_USE_WCHAR # libglib2 | ||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 | ||
depends on BR2_USE_MMU # libglib2 | ||
select BR2_PACKAGE_LIBGLIB2 | ||
select BR2_PACKAGE_LIBNICE | ||
select BR2_PACKAGE_GSTREAMER | ||
select BR2_PACKAGE_GST_PLUGINS_BASE | ||
select BR2_PACKAGE_GST_PLUGINS_GOOD | ||
select BR2_PACKAGE_GST_PLUGINS_BAD | ||
help | ||
The Farsight (new version named Farstream) project is an effort to | ||
create a framework to deal with all known audio/video conferencing | ||
protocols. On one side it offers a generic API that makes it possible | ||
to write plugins for different streaming protocols, on the other side | ||
it offers an API for clients to use those plugins. | ||
|
||
http://www.freedesktop.org/wiki/Software/Farstream/ | ||
|
||
comment "farsight2 needs a toolchain w/ wchar, threads" | ||
depends on BR2_USE_MMU | ||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
################################################################################ | ||
# | ||
# farsight2 | ||
# | ||
################################################################################ | ||
|
||
FARSIGHT2_VERSION = 0.0.31 | ||
FARSIGHT2_SITE = http://www.freedesktop.org/software/farstream/releases/farsight2/ | ||
FARSIGHT2_LICENSE = LGPLv2.1+ | ||
FARSIGHT2_LICENSE_FILES = COPYING | ||
FARSIGHT2_INSTALL_STAGING = YES | ||
FARSIGHT2_DEPENDENCIES = \ | ||
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad \ | ||
libglib2 libnice \ | ||
host-pkgconf | ||
FARSIGHT2_CONF_OPT = \ | ||
--disable-python \ | ||
--disable-gupnp \ | ||
--with-plugins=fsrtpconference,funnel,rtcpfilter,videoanyrate | ||
|
||
$(eval $(autotools-package)) |