summaryrefslogtreecommitdiffstats
path: root/telephony
diff options
context:
space:
mode:
authorIsmael Luceno2021-01-14 20:35:44 +0100
committerIsmael Luceno2021-01-14 20:36:55 +0100
commit50b913b63d2a39d06435e0c82cdd31f7b8208f7d (patch)
treef29090d0441cb10422156c34cfc74b237ca28575 /telephony
parent0084064987ef4fda277b962391bf4d840831e27d (diff)
farstream: Fix PYTHON subdep
Bindings are provided through GObject Introspection now.
Diffstat (limited to 'telephony')
-rw-r--r--telephony/farstream/HISTORY3
-rwxr-xr-xtelephony/farstream/PRE_SUB_DEPENDS2
-rwxr-xr-xtelephony/farstream/SUB_DEPENDS4
3 files changed, 5 insertions, 4 deletions
diff --git a/telephony/farstream/HISTORY b/telephony/farstream/HISTORY
index 7bda65e98d..4a3b3c448e 100644
--- a/telephony/farstream/HISTORY
+++ b/telephony/farstream/HISTORY
@@ -1,3 +1,6 @@
+2021-01-14 Ismael Luceno <ismael@iodev.co.uk>
+ * PRE_SUB_DEPENDS, SUB_DEPENDS: fixed PYTHON support
+
2021-01-13 Ismael Luceno <ismael@sourcemage.org>
* PRE_BUILD: disabled installation of libtool pseudo-libraries
* DETAILS: PATCHLEVEL++
diff --git a/telephony/farstream/PRE_SUB_DEPENDS b/telephony/farstream/PRE_SUB_DEPENDS
index 90596d9d5d..f324730c73 100755
--- a/telephony/farstream/PRE_SUB_DEPENDS
+++ b/telephony/farstream/PRE_SUB_DEPENDS
@@ -1,4 +1,4 @@
case "$THIS_SUB_DEPENDS" in
- PYTHON) is_depends_enabled $SPELL python ;;
+ PYTHON) is_depends_enabled "$SPELL" gobject-introspection ;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL $THIS_SUB_DEPENDS${DEFAULT_COLOR}"; return 1;;
esac
diff --git a/telephony/farstream/SUB_DEPENDS b/telephony/farstream/SUB_DEPENDS
index 6e8c9904b4..acfbc10490 100755
--- a/telephony/farstream/SUB_DEPENDS
+++ b/telephony/farstream/SUB_DEPENDS
@@ -1,6 +1,4 @@
case "$THIS_SUB_DEPENDS" in
- PYTHON) depends python "--enable-python" &&
- depends pygobject &&
- depends gst-python ;;
+ PYTHON) depends gobject-introspection ;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL $THIS_SUB_DEPENDS${DEFAULT_COLOR}"; return 1;;
esac