import orca 2.20.2

Orca is a free, open source, flexible, extensible, and powerful
assistive technology for people with visual impairments. Using various
combinations of speech synthesis, braille, and magnification, Orca helps
provide access to applications and toolkits that support the AT-SPI
(e.g., the GNOME desktop).

feedback and ok ajacoutot@
This commit is contained in:
jasper 2008-03-17 19:11:58 +00:00
parent 6cd1acdbca
commit 877a7e4915
6 changed files with 410 additions and 0 deletions

38
x11/gnome/orca/Makefile Normal file
View File

@ -0,0 +1,38 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/03/17 19:11:58 jasper Exp $
COMMENT= assistive technology for people with visual impairments
GNOME_VERSION= 2.20.2
GNOME_PROJECT= orca
HOMEPAGE= http://live.gnome.org/Orca
# LGPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= glib-2.0 pcre
MODULES= devel/gettext \
lang/python \
x11/gnome
BUILD_DEPENDS= ::x11/gnome/py-gnome \
::x11/gnome/mag \
::x11/gnome/speech
RUN_DEPENDS= ::x11/gnome/py-gnome \
::x11/gnome/mag \
::x11/gnome/speech
USE_X11= Yes
DESKTOP_FILES= Yes
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
PYTHON=${MODPY_BIN}
.include <bsd.port.mk>

5
x11/gnome/orca/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (gnome/orca-2.20.2.tar.bz2) = 27fs21MgGpUeWs/4kx0OmA==
RMD160 (gnome/orca-2.20.2.tar.bz2) = BjbiEhNwA0SXAM6AUmgeCJqfriE=
SHA1 (gnome/orca-2.20.2.tar.bz2) = i1s5RIQRQ1We7t6HP7o+EczD1ZI=
SHA256 (gnome/orca-2.20.2.tar.bz2) = 99nlaCKIFuLgcYPWMXi1jk8Dey+UnbXc8qEvpibAzOw=
SIZE (gnome/orca-2.20.2.tar.bz2) = 1428704

View File

@ -0,0 +1,27 @@
$OpenBSD: patch-src_orca_orca_gui_prefs_py,v 1.1.1.1 2008/03/17 19:11:58 jasper Exp $
--- src/orca/orca_gui_prefs.py.orig Fri Dec 28 12:32:22 2007
+++ src/orca/orca_gui_prefs.py Fri Dec 28 12:33:34 2007
@@ -2950,15 +2950,14 @@ class orcaSetupGUI(orca_glade.GladeWrapper):
- widget: the component that generated the signal.
"""
- enable = self.speechSupportCheckbutton.get_active()
- self.prefsDict["enableSpeech"] = enable
- self.prefsDict["speechServerFactory"] = \
- self.speechSystemsChoice.__name__
- self.prefsDict["speechServerInfo"] = self.speechServersChoice.getInfo()
- self.prefsDict["voices"] = {
- settings.DEFAULT_VOICE : acss.ACSS(self.defaultVoice),
- settings.UPPERCASE_VOICE : acss.ACSS(self.uppercaseVoice),
- settings.HYPERLINK_VOICE : acss.ACSS(self.hyperlinkVoice)
+ if enable:
+ self.prefsDict["speechServerFactory"] = \
+ self.speechSystemsChoice.__name__
+ self.prefsDict["speechServerInfo"] = self.speechServersChoice.getInfo()
+ self.prefsDict["voices"] = {
+ settings.DEFAULT_VOICE : acss.ACSS(self.defaultVoice),
+ settings.UPPERCASE_VOICE : acss.ACSS(self.uppercaseVoice),
+ settings.HYPERLINK_VOICE : acss.ACSS(self.hyperlinkVoice)
}
settings.setGKSUGrabDisabled(self.disableKeyGrabPref)

View File

@ -0,0 +1,36 @@
$OpenBSD: patch-src_orca_orca_in,v 1.1.1.1 2008/03/17 19:11:58 jasper Exp $
--- src/orca/orca.in.orig Fri Dec 28 12:30:02 2007
+++ src/orca/orca.in Fri Dec 28 12:31:02 2007
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# Orca
#
@@ -30,7 +30,7 @@
# Set the user's $PATH for this script.
#
-export PATH="/usr/ccs/bin:/usr/bin:/usr/sbin:/bin:/usr/sfw/bin:/usr/openwin/bin:/usr/X11R6/bin"
+#export PATH="/usr/ccs/bin:/usr/bin:/usr/sbin:/bin:/usr/sfw/bin:/usr/openwin/bin:/usr/X11R6/bin"
# If you set RUNONCE to "true", then this will just run Orca once and quit.
#
@@ -258,7 +258,7 @@ if [ "x$RUNONCE" = "xfalse" -a "x$ARGS" = "x" ]
then
main
else
- if [ `grep -c "\-q" <<< $ARGS` -gt 0 ]
+ if [ `echo $ARGS | grep -c "\-q"` -gt 0 ]
then
cleanup
else
@@ -270,7 +270,7 @@ else
# erroneously types an illegal command line argument, the
# help text is emitted and the other orca is not killed.
#
- if [ `egrep -c "\-s|\-g|\-t|\-n|\-u|\-e|\-d" <<< $ARGS` -eq 0 ]
+ if [ `echo $ARGS | egrep -c "\-s|\-g|\-t|\-n|\-u|\-e|\-d"` -eq 0 ]
then
runOrca "NO_CLEANUP"
else

5
x11/gnome/orca/pkg/DESCR Normal file
View File

@ -0,0 +1,5 @@
Orca is a free, open source, flexible, extensible, and powerful
assistive technology for people with visual impairments. Using various
combinations of speech synthesis, braille, and magnification, Orca helps
provide access to applications and toolkits that support the AT-SPI
(e.g., the GNOME desktop).

299
x11/gnome/orca/pkg/PLIST Normal file
View File

@ -0,0 +1,299 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2008/03/17 19:11:58 jasper Exp $
bin/orca
lib/python${MODPY_VERSION}/site-packages/orca/
lib/python${MODPY_VERSION}/site-packages/orca/Gecko.py
lib/python${MODPY_VERSION}/site-packages/orca/Gecko.pyc
lib/python${MODPY_VERSION}/site-packages/orca/Gecko.pyo
lib/python${MODPY_VERSION}/site-packages/orca/J2SE-access-bridge.py
lib/python${MODPY_VERSION}/site-packages/orca/J2SE-access-bridge.pyc
lib/python${MODPY_VERSION}/site-packages/orca/J2SE-access-bridge.pyo
lib/python${MODPY_VERSION}/site-packages/orca/__init__.py
lib/python${MODPY_VERSION}/site-packages/orca/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/orca/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/orca/acss.py
lib/python${MODPY_VERSION}/site-packages/orca/acss.pyc
lib/python${MODPY_VERSION}/site-packages/orca/acss.pyo
lib/python${MODPY_VERSION}/site-packages/orca/app_gui_prefs.py
lib/python${MODPY_VERSION}/site-packages/orca/app_gui_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/orca/app_gui_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/orca/atspi.py
lib/python${MODPY_VERSION}/site-packages/orca/atspi.pyc
lib/python${MODPY_VERSION}/site-packages/orca/atspi.pyo
lib/python${MODPY_VERSION}/site-packages/orca/bookmarks.py
lib/python${MODPY_VERSION}/site-packages/orca/bookmarks.pyc
lib/python${MODPY_VERSION}/site-packages/orca/bookmarks.pyo
lib/python${MODPY_VERSION}/site-packages/orca/braille.py
lib/python${MODPY_VERSION}/site-packages/orca/braille.pyc
lib/python${MODPY_VERSION}/site-packages/orca/braille.pyo
lib/python${MODPY_VERSION}/site-packages/orca/braillegenerator.py
lib/python${MODPY_VERSION}/site-packages/orca/braillegenerator.pyc
lib/python${MODPY_VERSION}/site-packages/orca/braillegenerator.pyo
lib/python${MODPY_VERSION}/site-packages/orca/brlmodule.a
lib/python${MODPY_VERSION}/site-packages/orca/brlmodule.la
lib/python${MODPY_VERSION}/site-packages/orca/brlmodule.so
lib/python${MODPY_VERSION}/site-packages/orca/brlmon.py
lib/python${MODPY_VERSION}/site-packages/orca/brlmon.pyc
lib/python${MODPY_VERSION}/site-packages/orca/brlmon.pyo
lib/python${MODPY_VERSION}/site-packages/orca/chnames.py
lib/python${MODPY_VERSION}/site-packages/orca/chnames.pyc
lib/python${MODPY_VERSION}/site-packages/orca/chnames.pyo
lib/python${MODPY_VERSION}/site-packages/orca/debug.py
lib/python${MODPY_VERSION}/site-packages/orca/debug.pyc
lib/python${MODPY_VERSION}/site-packages/orca/debug.pyo
lib/python${MODPY_VERSION}/site-packages/orca/dectalk.py
lib/python${MODPY_VERSION}/site-packages/orca/dectalk.pyc
lib/python${MODPY_VERSION}/site-packages/orca/dectalk.pyo
lib/python${MODPY_VERSION}/site-packages/orca/default.py
lib/python${MODPY_VERSION}/site-packages/orca/default.pyc
lib/python${MODPY_VERSION}/site-packages/orca/default.pyo
lib/python${MODPY_VERSION}/site-packages/orca/espeechfactory.py
lib/python${MODPY_VERSION}/site-packages/orca/espeechfactory.pyc
lib/python${MODPY_VERSION}/site-packages/orca/espeechfactory.pyo
lib/python${MODPY_VERSION}/site-packages/orca/eventsynthesizer.py
lib/python${MODPY_VERSION}/site-packages/orca/eventsynthesizer.pyc
lib/python${MODPY_VERSION}/site-packages/orca/eventsynthesizer.pyo
lib/python${MODPY_VERSION}/site-packages/orca/find.py
lib/python${MODPY_VERSION}/site-packages/orca/find.pyc
lib/python${MODPY_VERSION}/site-packages/orca/find.pyo
lib/python${MODPY_VERSION}/site-packages/orca/flat_review.py
lib/python${MODPY_VERSION}/site-packages/orca/flat_review.pyc
lib/python${MODPY_VERSION}/site-packages/orca/flat_review.pyo
lib/python${MODPY_VERSION}/site-packages/orca/focus_tracking_presenter.py
lib/python${MODPY_VERSION}/site-packages/orca/focus_tracking_presenter.pyc
lib/python${MODPY_VERSION}/site-packages/orca/focus_tracking_presenter.pyo
lib/python${MODPY_VERSION}/site-packages/orca/gnomespeechfactory.py
lib/python${MODPY_VERSION}/site-packages/orca/gnomespeechfactory.pyc
lib/python${MODPY_VERSION}/site-packages/orca/gnomespeechfactory.pyo
lib/python${MODPY_VERSION}/site-packages/orca/httpserver.py
lib/python${MODPY_VERSION}/site-packages/orca/httpserver.pyc
lib/python${MODPY_VERSION}/site-packages/orca/httpserver.pyo
lib/python${MODPY_VERSION}/site-packages/orca/input_event.py
lib/python${MODPY_VERSION}/site-packages/orca/input_event.pyc
lib/python${MODPY_VERSION}/site-packages/orca/input_event.pyo
lib/python${MODPY_VERSION}/site-packages/orca/keybindings.py
lib/python${MODPY_VERSION}/site-packages/orca/keybindings.pyc
lib/python${MODPY_VERSION}/site-packages/orca/keybindings.pyo
lib/python${MODPY_VERSION}/site-packages/orca/keynames.py
lib/python${MODPY_VERSION}/site-packages/orca/keynames.pyc
lib/python${MODPY_VERSION}/site-packages/orca/keynames.pyo
lib/python${MODPY_VERSION}/site-packages/orca/mag.py
lib/python${MODPY_VERSION}/site-packages/orca/mag.pyc
lib/python${MODPY_VERSION}/site-packages/orca/mag.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca.py
lib/python${MODPY_VERSION}/site-packages/orca/orca.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_console_prefs.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_console_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_console_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_glade.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_glade.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_glade.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_find.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_find.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_find.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_main.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_main.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_main.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_prefs.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_gui_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_i18n.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_i18n.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_i18n.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_prefs.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_quit.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_quit.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_quit.pyo
lib/python${MODPY_VERSION}/site-packages/orca/orca_state.py
lib/python${MODPY_VERSION}/site-packages/orca/orca_state.pyc
lib/python${MODPY_VERSION}/site-packages/orca/orca_state.pyo
lib/python${MODPY_VERSION}/site-packages/orca/outloud.py
lib/python${MODPY_VERSION}/site-packages/orca/outloud.pyc
lib/python${MODPY_VERSION}/site-packages/orca/outloud.pyo
lib/python${MODPY_VERSION}/site-packages/orca/phonnames.py
lib/python${MODPY_VERSION}/site-packages/orca/phonnames.pyc
lib/python${MODPY_VERSION}/site-packages/orca/phonnames.pyo
lib/python${MODPY_VERSION}/site-packages/orca/platform.py
lib/python${MODPY_VERSION}/site-packages/orca/platform.pyc
lib/python${MODPY_VERSION}/site-packages/orca/platform.pyo
lib/python${MODPY_VERSION}/site-packages/orca/presentation_manager.py
lib/python${MODPY_VERSION}/site-packages/orca/presentation_manager.pyc
lib/python${MODPY_VERSION}/site-packages/orca/presentation_manager.pyo
lib/python${MODPY_VERSION}/site-packages/orca/pronunciation_dict.py
lib/python${MODPY_VERSION}/site-packages/orca/pronunciation_dict.pyc
lib/python${MODPY_VERSION}/site-packages/orca/pronunciation_dict.pyo
lib/python${MODPY_VERSION}/site-packages/orca/punctuation_settings.py
lib/python${MODPY_VERSION}/site-packages/orca/punctuation_settings.pyc
lib/python${MODPY_VERSION}/site-packages/orca/punctuation_settings.pyo
lib/python${MODPY_VERSION}/site-packages/orca/rolenames.py
lib/python${MODPY_VERSION}/site-packages/orca/rolenames.pyc
lib/python${MODPY_VERSION}/site-packages/orca/rolenames.pyo
lib/python${MODPY_VERSION}/site-packages/orca/script.py
lib/python${MODPY_VERSION}/site-packages/orca/script.pyc
lib/python${MODPY_VERSION}/site-packages/orca/script.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Evolution.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Evolution.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Evolution.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Mozilla.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Mozilla.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Mozilla.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/StarOffice.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/StarOffice.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/StarOffice.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Thunderbird.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Thunderbird.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/Thunderbird.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/__init__.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/acroread.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/acroread.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/acroread.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gaim.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gaim.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gaim.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gcalctool.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gcalctool.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gcalctool.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gdmlogin.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gdmlogin.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gdmlogin.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gedit.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gedit.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gedit.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-keyring-ask.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-keyring-ask.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-keyring-ask.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-mud.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-mud.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-mud.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-panel.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-panel.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-panel.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-search-tool.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-search-tool.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-search-tool.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-system-monitor.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-system-monitor.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-system-monitor.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-terminal.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-terminal.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-terminal.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-window-properties.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-window-properties.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome-window-properties.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome_segv2.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome_segv2.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/gnome_segv2.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/liferea.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/liferea.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/liferea.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/metacity.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/metacity.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/metacity.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/nautilus.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/nautilus.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/nautilus.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/notification-daemon.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/notification-daemon.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/notification-daemon.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/planner.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/planner.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/planner.pyo
lib/python${MODPY_VERSION}/site-packages/orca/scripts/self_voicing.py
lib/python${MODPY_VERSION}/site-packages/orca/scripts/self_voicing.pyc
lib/python${MODPY_VERSION}/site-packages/orca/scripts/self_voicing.pyo
lib/python${MODPY_VERSION}/site-packages/orca/settings.py
lib/python${MODPY_VERSION}/site-packages/orca/settings.pyc
lib/python${MODPY_VERSION}/site-packages/orca/settings.pyo
lib/python${MODPY_VERSION}/site-packages/orca/speech.py
lib/python${MODPY_VERSION}/site-packages/orca/speech.pyc
lib/python${MODPY_VERSION}/site-packages/orca/speech.pyo
lib/python${MODPY_VERSION}/site-packages/orca/speechdispatcherfactory.py
lib/python${MODPY_VERSION}/site-packages/orca/speechdispatcherfactory.pyc
lib/python${MODPY_VERSION}/site-packages/orca/speechdispatcherfactory.pyo
lib/python${MODPY_VERSION}/site-packages/orca/speechgenerator.py
lib/python${MODPY_VERSION}/site-packages/orca/speechgenerator.pyc
lib/python${MODPY_VERSION}/site-packages/orca/speechgenerator.pyo
lib/python${MODPY_VERSION}/site-packages/orca/speechserver.py
lib/python${MODPY_VERSION}/site-packages/orca/speechserver.pyc
lib/python${MODPY_VERSION}/site-packages/orca/speechserver.pyo
lib/python${MODPY_VERSION}/site-packages/orca/where_am_I.py
lib/python${MODPY_VERSION}/site-packages/orca/where_am_I.pyc
lib/python${MODPY_VERSION}/site-packages/orca/where_am_I.pyo
@man man/man1/orca.1
share/applications/orca.desktop
share/icons/hicolor/16x16/apps/orca.png
share/icons/hicolor/22x22/apps/orca.png
share/icons/hicolor/24x24/apps/orca.png
share/icons/hicolor/32x32/apps/orca.png
share/icons/hicolor/48x48/apps/orca.png
share/icons/hicolor/scalable/apps/orca.svg
share/locale/ar/LC_MESSAGES/orca.mo
share/locale/bg/LC_MESSAGES/orca.mo
share/locale/bn/LC_MESSAGES/orca.mo
share/locale/bn_IN/LC_MESSAGES/orca.mo
share/locale/ca/LC_MESSAGES/orca.mo
share/locale/cs/LC_MESSAGES/orca.mo
share/locale/cy/LC_MESSAGES/orca.mo
share/locale/da/LC_MESSAGES/orca.mo
share/locale/de/LC_MESSAGES/orca.mo
share/locale/dz/LC_MESSAGES/orca.mo
share/locale/el/LC_MESSAGES/orca.mo
share/locale/en_CA/LC_MESSAGES/orca.mo
share/locale/en_GB/LC_MESSAGES/orca.mo
share/locale/es/LC_MESSAGES/orca.mo
share/locale/et/LC_MESSAGES/orca.mo
share/locale/eu/LC_MESSAGES/orca.mo
share/locale/fi/LC_MESSAGES/orca.mo
share/locale/fr/LC_MESSAGES/orca.mo
share/locale/gl/LC_MESSAGES/orca.mo
share/locale/gu/LC_MESSAGES/orca.mo
share/locale/hi/LC_MESSAGES/orca.mo
share/locale/hu/LC_MESSAGES/orca.mo
share/locale/it/LC_MESSAGES/orca.mo
share/locale/ja/LC_MESSAGES/orca.mo
share/locale/ko/LC_MESSAGES/orca.mo
share/locale/lt/LC_MESSAGES/orca.mo
share/locale/lv/LC_MESSAGES/orca.mo
share/locale/mk/LC_MESSAGES/orca.mo
share/locale/ml/LC_MESSAGES/orca.mo
share/locale/mr/LC_MESSAGES/orca.mo
share/locale/nb/LC_MESSAGES/orca.mo
share/locale/ne/LC_MESSAGES/orca.mo
share/locale/nl/LC_MESSAGES/orca.mo
share/locale/oc/LC_MESSAGES/orca.mo
share/locale/or/LC_MESSAGES/orca.mo
share/locale/pa/LC_MESSAGES/orca.mo
share/locale/pl/LC_MESSAGES/orca.mo
share/locale/pt/LC_MESSAGES/orca.mo
share/locale/pt_BR/LC_MESSAGES/orca.mo
share/locale/ru/LC_MESSAGES/orca.mo
share/locale/rw/LC_MESSAGES/orca.mo
share/locale/si/LC_MESSAGES/orca.mo
share/locale/sl/LC_MESSAGES/orca.mo
share/locale/sq/LC_MESSAGES/orca.mo
share/locale/sr/LC_MESSAGES/orca.mo
share/locale/sr@Latn/LC_MESSAGES/orca.mo
share/locale/sv/LC_MESSAGES/orca.mo
share/locale/ta/LC_MESSAGES/orca.mo
share/locale/th/LC_MESSAGES/orca.mo
share/locale/tr/LC_MESSAGES/orca.mo
share/locale/uk/LC_MESSAGES/orca.mo
share/locale/vi/LC_MESSAGES/orca.mo
share/locale/zh_CN/LC_MESSAGES/orca.mo
share/locale/zh_HK/LC_MESSAGES/orca.mo
share/locale/zh_TW/LC_MESSAGES/orca.mo
share/orca/
share/orca/glade/
share/orca/glade/orca-find.glade
share/orca/glade/orca-mainwin.glade
share/orca/glade/orca-quit.glade
share/orca/glade/orca-setup.glade
@exec %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor
@unexec %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor
@exec %D/bin/update-desktop-database
@unexec %D/bin/update-desktop-database