[Bug 207556] accessibility/orca: Add accessibility/py3-speech-dispatcher to BUILD_DEPENDS

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Mar 1 23:29:52 UTC 2016


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=207556

Koop Mast <kwm at FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kwm at FreeBSD.org

--- Comment #2 from Koop Mast <kwm at FreeBSD.org> ---
All the orca files are installed regardless if the python3 bindings of
speech-dispatch are installed or not. And unless I read the configure wrong it
only does reporting if speech-dispatcher is available on build-time or not.

the speechdispatcherfactory.py file has the following:

[code]
try:
    import speechd
except:
    _speechd_available = False
else:
    _speechd_available = True
    try:
        getattr(speechd, "CallbackType")
    except AttributeError:
        _speechd_version_ok = False
    else:
        _speechd_version_ok = True
[/code]

So it check on run-time if speech-dispatcher is available or not. Could you be
more specific why you think orca is miss-configured?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.


More information about the freebsd-gnome mailing list