diff options
Diffstat (limited to 'accessibility')
29 files changed, 740 insertions, 125 deletions
diff --git a/accessibility/at-spi/Makefile b/accessibility/at-spi/Makefile index ab46c80bf15f..c1207d4ada51 100644 --- a/accessibility/at-spi/Makefile +++ b/accessibility/at-spi/Makefile @@ -3,31 +3,36 @@ # Whom: Maxim Sobolev <sobomax@FreeBSD.org> # # $FreeBSD$ +# $MCom: ports/accessibility/at-spi/Makefile,v 1.43 2006/04/13 07:52:28 bland Exp $ # PORTNAME= at-spi -PORTVERSION= 1.6.6 -PORTREVISION= 2 +PORTVERSION= 1.7.7 CATEGORIES= accessibility x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.6 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= An Assistive Technology Service Provider Interface USE_BZIP2= yes +USE_GETTEXT= yes USE_GMAKE= yes USE_GNOME= gnomeprefix gnomehack gnomehier intltool gail libbonobo \ intlhack USE_X_PREFIX= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes -USE_REINPLACE= yes CONFIGURE_ARGS= --enable-static CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} + +post-extract: + @${RM} -f ${WRKSRC}/registryd/Accessibility_Registry.server + post-patch: @${REINPLACE_CMD} -e "/^SUBDIRS =/s/test//" ${WRKSRC}/Makefile.in diff --git a/accessibility/at-spi/distinfo b/accessibility/at-spi/distinfo index 1155e21ca64e..8faba5778802 100644 --- a/accessibility/at-spi/distinfo +++ b/accessibility/at-spi/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/at-spi-1.6.6.tar.bz2) = 9669ee9e3633ffb43a70795edd748e4d -SHA256 (gnome2/at-spi-1.6.6.tar.bz2) = e80e6e93923bb00d2beb5409bf532d4ff3a3f76afaa41dda9cdd336729e42020 -SIZE (gnome2/at-spi-1.6.6.tar.bz2) = 541611 +MD5 (gnome2/at-spi-1.7.7.tar.bz2) = 2988cd21d9f292fd404a8c532fe2723d +SHA256 (gnome2/at-spi-1.7.7.tar.bz2) = 8e5a5a9be3e3c26068b98fbcd37e44a6c377b1d8f97735339e8dd1215b506ad6 +SIZE (gnome2/at-spi-1.7.7.tar.bz2) = 696704 diff --git a/accessibility/at-spi/files/patch-docs_reference_idl_Makefile.in b/accessibility/at-spi/files/patch-docs_reference_idl_Makefile.in new file mode 100644 index 000000000000..f8b41ab8c214 --- /dev/null +++ b/accessibility/at-spi/files/patch-docs_reference_idl_Makefile.in @@ -0,0 +1,11 @@ +--- docs/reference/idl/Makefile.in.orig Fri Mar 31 17:43:05 2006 ++++ docs/reference/idl/Makefile.in Fri Mar 31 17:43:28 2006 +@@ -233,7 +233,7 @@ sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + doxygen_configfile = Doxyfile + EXTRA_DIST = Doxyfile README html +-referencetopdir = $(datadir)/doc/at-spi-$(VERSION)/reference ++referencetopdir = $(prefix)/share/doc/at-spi-$(VERSION)/reference + referencedir = $(referencetopdir)/html + all: all-am + diff --git a/accessibility/at-spi/files/patch-libspi_Makefile.in b/accessibility/at-spi/files/patch-libspi_Makefile.in deleted file mode 100644 index cfb55a212a86..000000000000 --- a/accessibility/at-spi/files/patch-libspi_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- libspi/Makefile.in.orig Fri May 2 13:36:07 2003 -+++ libspi/Makefile.in Fri May 2 13:36:37 2003 -@@ -539,7 +539,7 @@ - mostlyclean distclean maintainer-clean - - --$(top_srcdir)/libspi/accessible.c $(top_srcdir)/libspi/base.h $(top_srcdir)/libspi/keystrokelistener.h $(top_srcdir)/libspi/libspi.h $(top_srcdir)/libspi/listener.h $(top_srcdir)/libspi/remoteobject.h : Accessibility.h -+accessible.c base.h keystrokelistener.h libspi.h listener.h remoteobject.h : Accessibility.h - - $(IDL_OUT) Accessibility-imodule.c : $(IDL_DEPS) $(ORBIT_IDL) - $(ORBIT_IDL) -D__ACCESSIBILITY_COMPILATION__ $(IDLFLAGS) $(top_srcdir)/idl/Accessibility.idl diff --git a/accessibility/at-spi/files/patch-registryd_Makefile.in b/accessibility/at-spi/files/patch-registryd_Makefile.in deleted file mode 100644 index 7729e9da1400..000000000000 --- a/accessibility/at-spi/files/patch-registryd_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- registryd/Makefile.in.orig Fri Aug 8 12:15:34 2003 -+++ registryd/Makefile.in Fri Aug 8 12:20:05 2003 -@@ -150,7 +150,7 @@ - at_spi_registryd_SOURCES = desktop.c desktop.h deviceeventcontroller.c deviceeventcontroller.h registry-main.c registry.c registry.h - - --LDADD = $(top_builddir)/libspi/libspi.la $(X_LIBS) $(XTST_LIBS) $(XEVIE_LIBS) $(REGISTRYD_LIBS) -+LDADD = -L$(top_builddir)/libspi/.libs $(top_builddir)/libspi/libspi.la $(X_LIBS) $(XTST_LIBS) $(XEVIE_LIBS) $(REGISTRYD_LIBS) - - serverinfodir = $(prefix)/libdata/bonobo/servers - serverinfo_DATA = Accessibility_Registry.server diff --git a/accessibility/at-spi/pkg-plist b/accessibility/at-spi/pkg-plist index f87187c9c458..2b256a37de20 100644 --- a/accessibility/at-spi/pkg-plist +++ b/accessibility/at-spi/pkg-plist @@ -29,6 +29,9 @@ include/at-spi-1.0/libspi/text.h include/at-spi-1.0/libspi/value.h include/at-spi-1.0/login-helper/Accessibility_LoginHelper.h include/at-spi-1.0/login-helper/login-helper.h +lib/gtk-2.0/modules/libatk-bridge.a +lib/gtk-2.0/modules/libatk-bridge.la +lib/gtk-2.0/modules/libatk-bridge.so lib/libcspi.a lib/libcspi.la lib/libcspi.so @@ -41,9 +44,6 @@ lib/libspi.a lib/libspi.la lib/libspi.so lib/libspi.so.10 -lib/gtk-2.0/modules/libatk-bridge.a -lib/gtk-2.0/modules/libatk-bridge.la -lib/gtk-2.0/modules/libatk-bridge.so lib/orbit-2.0/Accessibility_LoginHelper_module.a lib/orbit-2.0/Accessibility_LoginHelper_module.la lib/orbit-2.0/Accessibility_LoginHelper_module.so @@ -55,6 +55,102 @@ libdata/pkgconfig/cspi-1.0.pc libdata/pkgconfig/libloginhelper-1.0.pc libdata/pkgconfig/libspi-1.0.pc libexec/at-spi-registryd +%%DOCSDIR%%/reference/html/Accessibility_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Accessible_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Accessible_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Action_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Action_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Application_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Application_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Component_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Component_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Desktop_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Desktop_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__EditableText_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__EditableText_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Event_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Event_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Hyperlink_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Hyperlink_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Hypertext_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Hypertext_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Image_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Image_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__LoginHelper_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__LoginHelper_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Registry_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Registry_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Relation_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Relation_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Role_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Role_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Selection_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Selection_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Selector_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Selector_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__State_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__State_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__StreamableContent_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__StreamableContent_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Table_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Table_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Text_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Text_8idl.html +%%DOCSDIR%%/reference/html/Accessibility__Value_8idl-source.html +%%DOCSDIR%%/reference/html/Accessibility__Value_8idl.html +%%DOCSDIR%%/reference/html/annotated.html +%%DOCSDIR%%/reference/html/doxygen.css +%%DOCSDIR%%/reference/html/doxygen.png +%%DOCSDIR%%/reference/html/exceptionAccessibility_1_1StreamableContent_1_1IOError.html +%%DOCSDIR%%/reference/html/exceptionAccessibility_1_1StreamableContent_1_1NoPermission.html +%%DOCSDIR%%/reference/html/exceptionAccessibility_1_1StreamableContent_1_1NotSupported.html +%%DOCSDIR%%/reference/html/files.html +%%DOCSDIR%%/reference/html/functions.html +%%DOCSDIR%%/reference/html/hierarchy.html +%%DOCSDIR%%/reference/html/index.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Accessible.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Accessible.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Action.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Application.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Application.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1CommandListener.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Component.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Desktop.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Desktop.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1DeviceEventController.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1DeviceEventListener.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1EditableText.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1EditableText.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1EventListener.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1EventListener.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Hyperlink.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Hypertext.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Image.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1LoginHelper.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Registry.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Registry.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Relation.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Selection.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Selector.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1StateSet.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1StreamableContent.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Table.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Text.html +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Text.png +%%DOCSDIR%%/reference/html/interfaceAccessibility_1_1Value.html +%%DOCSDIR%%/reference/html/namespaceAccessibility.html +%%DOCSDIR%%/reference/html/namespacemembers.html +%%DOCSDIR%%/reference/html/namespaces.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1BoundingBox.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1Command.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1DeviceEvent.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1Event.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1EventDetails.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1EventListenerMode.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1KeyDefinition.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1LoginHelper_1_1WindowInfo.html +%%DOCSDIR%%/reference/html/structAccessibility_1_1Text_1_1Range.html share/doc/at-spi-cspi/at-spi-cspi-Accessible-Objects.html share/doc/at-spi-cspi/at-spi-cspi-AccessibleAction-Interface.html share/doc/at-spi-cspi/at-spi-cspi-AccessibleApplication-API.html @@ -73,6 +169,7 @@ share/doc/at-spi-cspi/at-spi-cspi-Registry-queries.html share/doc/at-spi-cspi/at-spi-cspi-SPI-main-loop-and-initialization.html share/doc/at-spi-cspi/at-spi-cspi-State-and-StateSets.html share/doc/at-spi-cspi/at-spi-cspi.devhelp +share/doc/at-spi-cspi/at-spi-cspi.devhelp2 share/doc/at-spi-cspi/ch05.html share/doc/at-spi-cspi/home.png share/doc/at-spi-cspi/index.html @@ -101,13 +198,90 @@ share/gnome/idl/at-spi-1.0/Accessibility_Registry.idl share/gnome/idl/at-spi-1.0/Accessibility_Relation.idl share/gnome/idl/at-spi-1.0/Accessibility_Role.idl share/gnome/idl/at-spi-1.0/Accessibility_Selection.idl +share/gnome/idl/at-spi-1.0/Accessibility_Selector.idl share/gnome/idl/at-spi-1.0/Accessibility_State.idl share/gnome/idl/at-spi-1.0/Accessibility_StreamableContent.idl share/gnome/idl/at-spi-1.0/Accessibility_Table.idl share/gnome/idl/at-spi-1.0/Accessibility_Text.idl share/gnome/idl/at-spi-1.0/Accessibility_Value.idl +share/locale/ar/LC_MESSAGES/at-spi.mo +share/locale/az/LC_MESSAGES/at-spi.mo +share/locale/be/LC_MESSAGES/at-spi.mo +share/locale/bg/LC_MESSAGES/at-spi.mo +share/locale/bn/LC_MESSAGES/at-spi.mo +share/locale/bs/LC_MESSAGES/at-spi.mo +share/locale/ca/LC_MESSAGES/at-spi.mo +share/locale/cs/LC_MESSAGES/at-spi.mo +share/locale/cy/LC_MESSAGES/at-spi.mo +share/locale/da/LC_MESSAGES/at-spi.mo +share/locale/de/LC_MESSAGES/at-spi.mo +share/locale/dz/LC_MESSAGES/at-spi.mo +share/locale/el/LC_MESSAGES/at-spi.mo +share/locale/en_CA/LC_MESSAGES/at-spi.mo +share/locale/en_GB/LC_MESSAGES/at-spi.mo +share/locale/eo/LC_MESSAGES/at-spi.mo +share/locale/es/LC_MESSAGES/at-spi.mo +share/locale/et/LC_MESSAGES/at-spi.mo +share/locale/eu/LC_MESSAGES/at-spi.mo +share/locale/fa/LC_MESSAGES/at-spi.mo +share/locale/fi/LC_MESSAGES/at-spi.mo +share/locale/fr/LC_MESSAGES/at-spi.mo +share/locale/gl/LC_MESSAGES/at-spi.mo +share/locale/gu/LC_MESSAGES/at-spi.mo +share/locale/he/LC_MESSAGES/at-spi.mo +share/locale/hi/LC_MESSAGES/at-spi.mo +share/locale/hr/LC_MESSAGES/at-spi.mo +share/locale/hu/LC_MESSAGES/at-spi.mo +share/locale/id/LC_MESSAGES/at-spi.mo +share/locale/is/LC_MESSAGES/at-spi.mo +share/locale/it/LC_MESSAGES/at-spi.mo +share/locale/ja/LC_MESSAGES/at-spi.mo +share/locale/ka/LC_MESSAGES/at-spi.mo +share/locale/ko/LC_MESSAGES/at-spi.mo +share/locale/lt/LC_MESSAGES/at-spi.mo +share/locale/mn/LC_MESSAGES/at-spi.mo +share/locale/mr/LC_MESSAGES/at-spi.mo +share/locale/ms/LC_MESSAGES/at-spi.mo +share/locale/nb/LC_MESSAGES/at-spi.mo +share/locale/ne/LC_MESSAGES/at-spi.mo +share/locale/nl/LC_MESSAGES/at-spi.mo +share/locale/nn/LC_MESSAGES/at-spi.mo +share/locale/no/LC_MESSAGES/at-spi.mo +share/locale/or/LC_MESSAGES/at-spi.mo +share/locale/pa/LC_MESSAGES/at-spi.mo +share/locale/pl/LC_MESSAGES/at-spi.mo +share/locale/pt/LC_MESSAGES/at-spi.mo +share/locale/pt_BR/LC_MESSAGES/at-spi.mo +share/locale/ro/LC_MESSAGES/at-spi.mo +share/locale/ru/LC_MESSAGES/at-spi.mo +share/locale/rw/LC_MESSAGES/at-spi.mo +share/locale/sk/LC_MESSAGES/at-spi.mo +share/locale/sl/LC_MESSAGES/at-spi.mo +share/locale/sq/LC_MESSAGES/at-spi.mo +share/locale/sr/LC_MESSAGES/at-spi.mo +share/locale/sr@Latn/LC_MESSAGES/at-spi.mo +share/locale/sr@ije/LC_MESSAGES/at-spi.mo +share/locale/sv/LC_MESSAGES/at-spi.mo +share/locale/th/LC_MESSAGES/at-spi.mo +share/locale/ug/LC_MESSAGES/at-spi.mo +share/locale/uk/LC_MESSAGES/at-spi.mo +share/locale/vi/LC_MESSAGES/at-spi.mo +share/locale/wa/LC_MESSAGES/at-spi.mo +share/locale/xh/LC_MESSAGES/at-spi.mo +share/locale/zh_CN/LC_MESSAGES/at-spi.mo +share/locale/zh_HK/LC_MESSAGES/at-spi.mo +share/locale/zh_TW/LC_MESSAGES/at-spi.mo +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz @dirrm share/gnome/idl/at-spi-1.0 @dirrm share/doc/at-spi-cspi +@dirrm %%DOCSDIR%%/reference/html +@dirrm %%DOCSDIR%%/reference +@dirrm %%DOCSDIR%% @dirrm lib/orbit-2.0 @dirrm include/at-spi-1.0/login-helper @dirrm include/at-spi-1.0/libspi diff --git a/accessibility/atk/Makefile b/accessibility/atk/Makefile index c99b643dc6b7..c69aaa8d6727 100644 --- a/accessibility/atk/Makefile +++ b/accessibility/atk/Makefile @@ -3,22 +3,21 @@ # Whom: Maxim Sobolev <sobomax@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/accessibility/atk/Makefile,v 1.56 2005/09/05 21:13:50 marcus Exp $ +# $MCom: ports/accessibility/atk/Makefile,v 1.68 2006/04/13 07:52:28 bland Exp $ # PORTNAME= atk -PORTVERSION= 1.10.3 -PORTREVISION= 1 +PORTVERSION= 1.11.4 CATEGORIES= accessibility devel -MASTER_SITES= ${MASTER_SITE_GNOME} \ - ftp://ftp.gtk.org/pub/gtk/v2.6/ -MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.10 +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= A GNOME accessibility toolkit (ATK) USE_BZIP2= yes +USE_GETTEXT= yes INSTALLS_SHLIB= yes USE_AUTOTOOLS= libtool:15 USE_GNOME= gnomehack glib20 ltverhack diff --git a/accessibility/atk/distinfo b/accessibility/atk/distinfo index 76912377e10f..8be97790ae67 100644 --- a/accessibility/atk/distinfo +++ b/accessibility/atk/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/atk-1.10.3.tar.bz2) = c84a01fea567b365c0d44b227fead948 -SHA256 (gnome2/atk-1.10.3.tar.bz2) = c596baf95f6a6cd7748b1018336b2ac45ca2ef668816e6c703b01691e09b8a89 -SIZE (gnome2/atk-1.10.3.tar.bz2) = 542712 +MD5 (gnome2/atk-1.11.4.tar.bz2) = 2f7132e46a62a2586545bca40eeeef39 +SHA256 (gnome2/atk-1.11.4.tar.bz2) = f288657de2f7413c35626dcc43fb66ca837c8232b7d0c00bc602430706dd2ed7 +SIZE (gnome2/atk-1.11.4.tar.bz2) = 621041 diff --git a/accessibility/atk/pkg-plist b/accessibility/atk/pkg-plist index 4458fa2e1320..47b421caff0e 100644 --- a/accessibility/atk/pkg-plist +++ b/accessibility/atk/pkg-plist @@ -29,9 +29,38 @@ lib/libatk-1.0.la lib/libatk-1.0.so lib/libatk-1.0.so.0 libdata/pkgconfig/atk.pc +%%DOCSDIR%%/AtkAction.html +%%DOCSDIR%%/AtkComponent.html +%%DOCSDIR%%/AtkDocument.html +%%DOCSDIR%%/AtkEditableText.html +%%DOCSDIR%%/AtkGObjectAccessible.html +%%DOCSDIR%%/AtkHyperlink.html +%%DOCSDIR%%/AtkHypertext.html +%%DOCSDIR%%/AtkImage.html +%%DOCSDIR%%/AtkNoOpObject.html +%%DOCSDIR%%/AtkNoOpObjectFactory.html +%%DOCSDIR%%/AtkObject.html +%%DOCSDIR%%/AtkObjectFactory.html +%%DOCSDIR%%/AtkRegistry.html +%%DOCSDIR%%/AtkRelation.html +%%DOCSDIR%%/AtkRelationSet.html +%%DOCSDIR%%/AtkSelection.html +%%DOCSDIR%%/AtkStreamableContent.html +%%DOCSDIR%%/AtkTable.html +%%DOCSDIR%%/AtkText.html +%%DOCSDIR%%/AtkUtil.html +%%DOCSDIR%%/AtkValue.html +%%DOCSDIR%%/atk-AtkState.html +%%DOCSDIR%%/atk-AtkStateSet.html +%%DOCSDIR%%/atk.devhelp +%%DOCSDIR%%/atk.devhelp2 +%%DOCSDIR%%/atk.html %%DOCSDIR%%/home.png +%%DOCSDIR%%/index.html +%%DOCSDIR%%/index.sgml %%DOCSDIR%%/left.png %%DOCSDIR%%/right.png +%%DOCSDIR%%/style.css %%DOCSDIR%%/up.png share/locale/af/LC_MESSAGES/atk10.mo share/locale/am/LC_MESSAGES/atk10.mo @@ -68,6 +97,7 @@ share/locale/id/LC_MESSAGES/atk10.mo share/locale/is/LC_MESSAGES/atk10.mo share/locale/it/LC_MESSAGES/atk10.mo share/locale/ja/LC_MESSAGES/atk10.mo +share/locale/ka/LC_MESSAGES/atk10.mo share/locale/kn/LC_MESSAGES/atk10.mo share/locale/ko/LC_MESSAGES/atk10.mo share/locale/li/LC_MESSAGES/atk10.mo @@ -83,6 +113,7 @@ share/locale/ne/LC_MESSAGES/atk10.mo share/locale/nl/LC_MESSAGES/atk10.mo share/locale/nn/LC_MESSAGES/atk10.mo share/locale/no/LC_MESSAGES/atk10.mo +share/locale/or/LC_MESSAGES/atk10.mo share/locale/pa/LC_MESSAGES/atk10.mo share/locale/pl/LC_MESSAGES/atk10.mo share/locale/pt/LC_MESSAGES/atk10.mo @@ -101,6 +132,7 @@ share/locale/ta/LC_MESSAGES/atk10.mo share/locale/th/LC_MESSAGES/atk10.mo share/locale/tk/LC_MESSAGES/atk10.mo share/locale/tr/LC_MESSAGES/atk10.mo +share/locale/tt/LC_MESSAGES/atk10.mo share/locale/ug/LC_MESSAGES/atk10.mo share/locale/uk/LC_MESSAGES/atk10.mo share/locale/vi/LC_MESSAGES/atk10.mo @@ -108,20 +140,68 @@ share/locale/wa/LC_MESSAGES/atk10.mo share/locale/xh/LC_MESSAGES/atk10.mo share/locale/yi/LC_MESSAGES/atk10.mo share/locale/zh_CN/LC_MESSAGES/atk10.mo +share/locale/zh_HK/LC_MESSAGES/atk10.mo share/locale/zh_TW/LC_MESSAGES/atk10.mo -@dirrm %%DOCSDIR%% -@exec mkdir -p %D/%%DOCSDIR%% -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/gl/LC_MESSAGES -@dirrmtry share/locale/gl -@dirrmtry share/locale/li/LC_MESSAGES -@dirrmtry share/locale/li -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/tk/LC_MESSAGES -@dirrmtry share/locale/tk +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/yi/LC_MESSAGES +@dirrmtry share/locale/yi +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk @dirrmtry share/locale/ug/LC_MESSAGES @dirrmtry share/locale/ug +@dirrmtry share/locale/tt/LC_MESSAGES +@dirrmtry share/locale/tt +@dirrmtry share/locale/tk/LC_MESSAGES +@dirrmtry share/locale/tk +@dirrmtry share/locale/sr@ije/LC_MESSAGES +@dirrmtry share/locale/sr@ije +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/no/LC_MESSAGES +@dirrmtry share/locale/no +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/li/LC_MESSAGES +@dirrmtry share/locale/li +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/be/LC_MESSAGES +@dirrmtry share/locale/be +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as +@dirrm %%DOCSDIR%% @dirrm include/atk-1.0/atk @dirrm include/atk-1.0 diff --git a/accessibility/dasher/Makefile b/accessibility/dasher/Makefile index 445df1ae2890..df97a89f56dd 100644 --- a/accessibility/dasher/Makefile +++ b/accessibility/dasher/Makefile @@ -3,26 +3,25 @@ # Whom: lewiz <purple@lewiz.net> # # $FreeBSD$ -# $MCom: ports/accessibility/dasher/Makefile,v 1.18 2005/10/29 22:31:15 marcus Exp $ +# $MCom: ports/accessibility/dasher/Makefile,v 1.34 2006/04/13 07:52:29 bland Exp $ # PORTNAME= dasher -PORTVERSION= 3.2.18 -PORTREVISION= 1 +PORTVERSION= 4.0.2 PORTEPOCH= 1 CATEGORIES= accessibility editors x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/3.2 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DIST_SUBDIR= gnome2 MAINTAINER= lewiz@compsoc.man.ac.uk COMMENT= Information efficient text-entry interface BUILD_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 RUN_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper USE_BZIP2= yes +USE_GETTEXT= yes USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOME= gnomeprefix gnomehack intlhack gnomehier libgnomeui atspi \ @@ -30,7 +29,7 @@ USE_GNOME= gnomeprefix gnomehack intlhack gnomehier libgnomeui atspi \ WANT_GNOME= yes GNU_CONFIGURE= yes INSTALLS_OMF= yes -USE_REINPLACE= yes +INSTALLS_ICONS= yes USE_GCC= 3.4+ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" @@ -41,8 +40,7 @@ MAN1= dasher.1 .if ${HAVE_GNOME:Mgnomespeech}!="" USE_GNOME+= gnomespeech -.else -CONFIGURE_ARGS+=--without-speech +CONFIGURE_ARGS+=--enable-speech .endif post-patch: diff --git a/accessibility/dasher/distinfo b/accessibility/dasher/distinfo index 4bfa1d52313b..0af9bb63a4bc 100644 --- a/accessibility/dasher/distinfo +++ b/accessibility/dasher/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/dasher-3.2.18.tar.bz2) = f724113d3148a3c7f888b9e830ae75af -SHA256 (gnome2/dasher-3.2.18.tar.bz2) = a58ec285fb908dddde468794def6538ef2930a1e273d0b24d11a627ddbe02ee9 -SIZE (gnome2/dasher-3.2.18.tar.bz2) = 4758337 +MD5 (gnome2/dasher-4.0.2.tar.bz2) = 47cf27594abb51ea97f3a8fdb276736d +SHA256 (gnome2/dasher-4.0.2.tar.bz2) = 4a4adb18ca80641319ffdb63c8cbd69f2faa0698b4d275a2b3ccae467de8d73c +SIZE (gnome2/dasher-4.0.2.tar.bz2) = 5802684 diff --git a/accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp b/accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp new file mode 100644 index 000000000000..da5a022d06c5 --- /dev/null +++ b/accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp @@ -0,0 +1,36 @@ +--- Src/DasherCore/FileLogger.cpp.orig Tue Jan 17 01:41:44 2006 ++++ Src/DasherCore/FileLogger.cpp Tue Jan 17 01:51:33 2006 +@@ -17,7 +17,7 @@ static char THIS_FILE[] = __FILE__; + #include <windows.h> + #endif + +-#include <sys/timeb.h> ++#include <sys/time.h> + + CFileLogger::CFileLogger(const std::string& strFilenamePath, eLogLevel iLogLevel, int iOptionsMask) + { +@@ -492,12 +492,12 @@ std::string CFileLogger::GetTimeDateStam + + if ((m_bTimeStamp) || (m_bDateStamp)) + { +- struct timeb sTimeBuffer; ++ struct timeval sTimeBuffer; + char* szTimeLine = NULL; + +- ftime(&sTimeBuffer); ++ gettimeofday(&sTimeBuffer, NULL); + +- szTimeLine = ctime(&(sTimeBuffer.time)); ++ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); + + // Format is: + // Wed Jun 22 10:22:00 2005 +@@ -520,7 +520,7 @@ std::string CFileLogger::GetTimeDateStam + strTimeStamp += szTimeLine[i]; + strTimeStamp += "."; + char strMs[16]; +- sprintf(strMs, "%d", sTimeBuffer.millitm); ++ sprintf(strMs, "%d", (int) (sTimeBuffer.tv_usec / 1000)); + if (strlen(strMs) == 1) + strTimeStamp += "00"; + else if (strlen(strMs) == 2) diff --git a/accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp b/accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp new file mode 100644 index 000000000000..d8679afaed3e --- /dev/null +++ b/accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp @@ -0,0 +1,44 @@ +--- Src/DasherCore/SimpleTimer.cpp.orig Tue Jan 17 01:43:17 2006 ++++ Src/DasherCore/SimpleTimer.cpp Tue Jan 17 01:46:24 2006 +@@ -1,6 +1,6 @@ + #include "SimpleTimer.h" + +-#include <sys/timeb.h> ++#include <sys/time.h> + + // Track memory leaks on Windows to the line that new'd the memory + #ifdef _WIN32 +@@ -14,12 +14,12 @@ static char THIS_FILE[] = __FILE__; + + CSimpleTimer::CSimpleTimer() + { +- struct timeb sTimeBuffer; ++ struct timeval sTimeBuffer; + +- ftime(&sTimeBuffer); ++ gettimeofday(&sTimeBuffer, NULL); + +- m_iStartMs = sTimeBuffer.millitm; +- m_iStartSecond = sTimeBuffer.time; ++ m_iStartMs = (int) (sTimeBuffer.tv_usec / 1000); ++ m_iStartSecond = (int) sTimeBuffer.tv_sec; + } + + CSimpleTimer::~CSimpleTimer() +@@ -28,12 +28,12 @@ CSimpleTimer::~CSimpleTimer() + + double CSimpleTimer::GetElapsed() + { +- struct timeb sTimeBuffer; ++ struct timeval sTimeBuffer; + +- ftime(&sTimeBuffer); ++ gettimeofday(&sTimeBuffer, NULL); + +- int iEndMs = sTimeBuffer.millitm; +- int iEndSecond = sTimeBuffer.time; ++ int iEndMs = (int) (sTimeBuffer.tv_usec / 1000); ++ int iEndSecond = (int) sTimeBuffer.tv_sec; + + return ((double) iEndMs / 1000.0 + (double) iEndSecond) - + ((double) m_iStartMs / 1000.0 + (double) m_iStartSecond); diff --git a/accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp b/accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp new file mode 100644 index 000000000000..d5bf37daf0d2 --- /dev/null +++ b/accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp @@ -0,0 +1,51 @@ +--- Src/DasherCore/TimeSpan.cpp.orig Tue Jan 17 01:47:12 2006 ++++ Src/DasherCore/TimeSpan.cpp Tue Jan 17 01:48:47 2006 +@@ -1,6 +1,6 @@ + + #include "TimeSpan.h" +-#include <sys/timeb.h> ++#include <sys/time.h> + + #ifdef _WIN32 + // In order to track leaks to line number, we need this at the top of every file +@@ -102,12 +102,12 @@ string CTimeSpan::GetXML(const string& s + string CTimeSpan::GetTimeStamp() + { + string strTimeStamp = ""; +- struct timeb sTimeBuffer; ++ struct timeval sTimeBuffer; + char* szTimeLine = NULL; + +- ftime(&sTimeBuffer); ++ gettimeofday(&sTimeBuffer, NULL); + +- szTimeLine = ctime(&(sTimeBuffer.time)); ++ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); + + if ((szTimeLine != NULL) && (strlen(szTimeLine) > 18)) + { +@@ -115,7 +115,7 @@ string CTimeSpan::GetTimeStamp() + strTimeStamp += szTimeLine[i]; + strTimeStamp += "."; + char szMs[16]; +- sprintf(szMs, "%d", sTimeBuffer.millitm); ++ sprintf(szMs, "%d", (int) (sTimeBuffer.tv_usec / 1000)); + if (strlen(szMs) == 1) + strTimeStamp += "00"; + else if (strlen(szMs) == 2) +@@ -163,12 +163,12 @@ string CTimeSpan::GetDateStamp() + { + std::string strDateStamp = ""; + +- struct timeb sTimeBuffer; ++ struct timeval sTimeBuffer; + char* szTimeLine = NULL; + +- ftime(&sTimeBuffer); ++ gettimeofday(&sTimeBuffer, NULL); + +- szTimeLine = ctime(&(sTimeBuffer.time)); ++ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); + + // Format is: + // Wed Jun 22 10:22:00 2005 diff --git a/accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp b/accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp new file mode 100644 index 000000000000..2ba6fec10fff --- /dev/null +++ b/accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp @@ -0,0 +1,41 @@ +--- Src/DasherCore/UserLog.cpp.orig Tue Jan 17 01:49:12 2006 ++++ Src/DasherCore/UserLog.cpp Tue Jan 17 01:50:11 2006 +@@ -1,7 +1,7 @@ + + #include "UserLog.h" + #include <fstream> +-#include <sys/timeb.h> ++#include <sys/time.h> + + // Track memory leaks on Windows to the line that new'd the memory + #ifdef _WIN32 +@@ -624,12 +624,12 @@ void CUserLog::SetOuputFilename(const st + { + m_strFilename = USER_LOG_DETAILED_PREFIX; + +- struct timeb sTimeBuffer; ++ struct timeval sTimeBuffer; + char* szTimeLine = NULL; + +- ftime(&sTimeBuffer); ++ gettimeofday(&sTimeBuffer, NULL); + +- szTimeLine = ctime(&(sTimeBuffer.time)); ++ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); + + if ((szTimeLine != NULL) && (strlen(szTimeLine) > 18)) + { +@@ -829,10 +829,10 @@ bool CUserLog::UpdateMouseLocation() + { + //CFunctionLogger f1("CUserLog::UpdateMouseLocation", g_pLogger); + +- struct timeb sTimeBuffer; +- ftime(&sTimeBuffer); ++ struct timeval sTimeBuffer; ++ gettimeofday(&sTimeBuffer, NULL); + +- double dTime = (sTimeBuffer.time * 1000.0) + sTimeBuffer.millitm; ++ double dTime = (sTimeBuffer.tv_sec * 1000.0) + (int) (sTimeBuffer.tv_usec / 1000); + + if ((dTime - m_dLastMouseUpdate) > LOG_MOUSE_EVERY_MS) + { diff --git a/accessibility/dasher/files/patch-Src_Gtk2_speech.cc b/accessibility/dasher/files/patch-Src_Gtk2_speech.cc index 7622867dbd57..9817b2f11bb1 100644 --- a/accessibility/dasher/files/patch-Src_Gtk2_speech.cc +++ b/accessibility/dasher/files/patch-Src_Gtk2_speech.cc @@ -1,12 +1,10 @@ ---- Src/Gtk2/speech.cc.orig Fri Aug 19 09:57:44 2005 -+++ Src/Gtk2/speech.cc Mon Aug 22 20:23:21 2005 -@@ -78,7 +78,8 @@ void setup_speech() { +--- Src/Gtk2/speech.cc.orig Thu Jan 12 15:52:50 2006 ++++ Src/Gtk2/speech.cc Tue Jan 17 01:29:35 2006 +@@ -74,6 +74,7 @@ void setup_speech() { void teardown_speech() { - bonobo_object_release_unref (speaker, NULL); -- CORBA_free (voices); + bonobo_object_release_unref(speaker, NULL); + if (voices != NULL && !BONOBO_EX (&ev) && voices->_length != 0) -+ CORBA_free (voices); + CORBA_free(voices); GNOME_Speech_SynthesisDriver_unref(rv, &ev); - CORBA_exception_free (&ev); - + CORBA_exception_free(&ev); diff --git a/accessibility/dasher/files/patch-configure b/accessibility/dasher/files/patch-configure new file mode 100644 index 000000000000..982daaac6663 --- /dev/null +++ b/accessibility/dasher/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Tue Jan 31 01:13:42 2006 ++++ configure Tue Jan 31 01:14:07 2006 +@@ -24818,7 +24818,7 @@ + + + GTK2BUILD_CFLAGS="$GTK2_CFLAGS $SETTINGS_CFLAGS $gthread_CFLAGS $gnome_speech_CFLAGS $gnome_a11y_CFLAGS $glade_CFLAGS $gnome_CFLAGS $wnck_CFLAGS $hildon_CFLAGS" +-GTK2BUILD_LIBS="$X_LIBS $GTK2_LIBS $SETTINGS_LIBS $gthread_LIBS $gnome_speech_LIBS $gnome_a11y_LIBS $glade_LIBS $gnome_LIBS $wnck_LIBS $hildon_LIBS -Wl,--export-dynamic," ++GTK2BUILD_LIBS="$X_LIBS $GTK2_LIBS $SETTINGS_LIBS $gthread_LIBS $gnome_speech_LIBS $gnome_a11y_LIBS $glade_LIBS $gnome_LIBS $wnck_LIBS $hildon_LIBS -Wl,--export-dynamic" + + + diff --git a/accessibility/dasher/pkg-plist b/accessibility/dasher/pkg-plist index baf14dc3aa72..0e3238b8a829 100644 --- a/accessibility/dasher/pkg-plist +++ b/accessibility/dasher/pkg-plist @@ -75,6 +75,7 @@ share/gnome/dasher/alphabet.dtd share/gnome/dasher/alphabet.dutch.xml share/gnome/dasher/alphabet.english.xml share/gnome/dasher/alphabet.englishC.xml +share/gnome/dasher/alphabet.englishLC.xml share/gnome/dasher/alphabet.ethiopic.xml share/gnome/dasher/alphabet.ewe.xml share/gnome/dasher/alphabet.faroese.xml @@ -91,6 +92,7 @@ share/gnome/dasher/alphabet.hiragana2.xml share/gnome/dasher/alphabet.hungarian.xml share/gnome/dasher/alphabet.ipa.xml share/gnome/dasher/alphabet.italian.xml +share/gnome/dasher/alphabet.japanese.canna.xml share/gnome/dasher/alphabet.kazakh.xml share/gnome/dasher/alphabet.kirghiz.xml share/gnome/dasher/alphabet.kirundi.xml @@ -144,11 +146,15 @@ share/gnome/dasher/colour.rainbow.xml share/gnome/dasher/colour.vowels.xml share/gnome/dasher/colour.vowels2.xml share/gnome/dasher/colour.xml +share/gnome/dasher/controllabels.dtd +share/gnome/dasher/controllabels.xml share/gnome/dasher/dasher.glade +share/gnome/dasher/dashermaemo.glade share/gnome/dasher/training_albanian_SQ.txt share/gnome/dasher/training_basque_EU.txt share/gnome/dasher/training_bengali_BD.txt share/gnome/dasher/training_bengali_bn.txt +share/gnome/dasher/training_canna_JP.txt share/gnome/dasher/training_czech_CS.txt share/gnome/dasher/training_danish_DK.txt share/gnome/dasher/training_dutch_NL.txt @@ -170,6 +176,7 @@ share/gnome/dasher/training_russian_RU.txt share/gnome/dasher/training_spanish_ES.txt share/gnome/dasher/training_swahili_KE.txt share/gnome/dasher/training_swedish_SE.txt +share/gnome/dasher/training_turkish_TR.txt share/gnome/dasher/training_welsh_GB.txt share/gnome/help/dasher/C/dasher.xml share/gnome/help/dasher/C/figures/figure2.png @@ -189,20 +196,23 @@ share/gnome/help/dasher/eu/figures/prefs3.png share/gnome/help/dasher/eu/figures/prefs4.png share/gnome/help/dasher/eu/figures/prefs5.png share/gnome/help/dasher/eu/version.xml -share/gnome/icons/dasher.png share/gnome/omf/dasher/dasher-C.omf share/gnome/omf/dasher/dasher-eu.omf +share/icons/hicolor/48x48/apps/dasher.png +share/icons/hicolor/scalable/apps/dasher.svg share/locale/ar/LC_MESSAGES/dasher.mo share/locale/az/LC_MESSAGES/dasher.mo share/locale/be/LC_MESSAGES/dasher.mo share/locale/bg/LC_MESSAGES/dasher.mo share/locale/bn/LC_MESSAGES/dasher.mo +share/locale/br/LC_MESSAGES/dasher.mo share/locale/bs/LC_MESSAGES/dasher.mo share/locale/ca/LC_MESSAGES/dasher.mo share/locale/cs/LC_MESSAGES/dasher.mo share/locale/cy/LC_MESSAGES/dasher.mo share/locale/da/LC_MESSAGES/dasher.mo share/locale/de/LC_MESSAGES/dasher.mo +share/locale/dz/LC_MESSAGES/dasher.mo share/locale/el/LC_MESSAGES/dasher.mo share/locale/en_CA/LC_MESSAGES/dasher.mo share/locale/en_GB/LC_MESSAGES/dasher.mo @@ -222,7 +232,9 @@ share/locale/hu/LC_MESSAGES/dasher.mo share/locale/id/LC_MESSAGES/dasher.mo share/locale/it/LC_MESSAGES/dasher.mo share/locale/ja/LC_MESSAGES/dasher.mo +share/locale/ka/LC_MESSAGES/dasher.mo share/locale/ko/LC_MESSAGES/dasher.mo +share/locale/ky/LC_MESSAGES/dasher.mo share/locale/lt/LC_MESSAGES/dasher.mo share/locale/mk/LC_MESSAGES/dasher.mo share/locale/mn/LC_MESSAGES/dasher.mo @@ -244,14 +256,25 @@ share/locale/sr/LC_MESSAGES/dasher.mo share/locale/sr@Latn/LC_MESSAGES/dasher.mo share/locale/sv/LC_MESSAGES/dasher.mo share/locale/ta/LC_MESSAGES/dasher.mo +share/locale/th/LC_MESSAGES/dasher.mo share/locale/tk/LC_MESSAGES/dasher.mo share/locale/tr/LC_MESSAGES/dasher.mo share/locale/ug/LC_MESSAGES/dasher.mo share/locale/uk/LC_MESSAGES/dasher.mo +share/locale/vi/LC_MESSAGES/dasher.mo share/locale/zh_CN/LC_MESSAGES/dasher.mo +share/locale/zh_HK/LC_MESSAGES/dasher.mo share/locale/zh_TW/LC_MESSAGES/dasher.mo +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK @dirrmtry share/locale/ug/LC_MESSAGES @dirrmtry share/locale/ug +@dirrmtry share/locale/ky/LC_MESSAGES +@dirrmtry share/locale/ky +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/br/LC_MESSAGES +@dirrmtry share/locale/br @dirrm share/gnome/omf/dasher @dirrm share/gnome/help/dasher/eu/figures @dirrm share/gnome/help/dasher/eu diff --git a/accessibility/gail/Makefile b/accessibility/gail/Makefile index a6d7c917e3a6..62da81721c9a 100644 --- a/accessibility/gail/Makefile +++ b/accessibility/gail/Makefile @@ -3,25 +3,25 @@ # Whom: Maxim Sobolev <sobomax@FreeBSD.org> # # $FreeBSD$ +# $MCom: ports/accessibility/gail/Makefile,v 1.44 2006/04/23 22:21:28 mezz Exp $ # PORTNAME= gail -PORTVERSION= 1.8.10 -PORTREVISION= 1 +PORTVERSION= 1.8.11 CATEGORIES= accessibility x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.8 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= An implementation of the ATK interfaces for GTK+ widgets USE_BZIP2= yes +USE_GETTEXT= yes USE_X_PREFIX= yes USE_GMAKE= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes -USE_REINPLACE= yes USE_GNOME= gnomehack libgnomecanvas lthack CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" diff --git a/accessibility/gail/distinfo b/accessibility/gail/distinfo index 40c6c437bde7..5ae5efb34fd3 100644 --- a/accessibility/gail/distinfo +++ b/accessibility/gail/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gail-1.8.10.tar.bz2) = f7dbebcda98a5eb0cc22074b56a62d29 -SHA256 (gnome2/gail-1.8.10.tar.bz2) = d81deb6d470f9efc888c1ed2f28438ddece07f29e63e853a1bd51388a91729d7 -SIZE (gnome2/gail-1.8.10.tar.bz2) = 584033 +MD5 (gnome2/gail-1.8.11.tar.bz2) = ff79df7dd0cf7a5109c089b9b5fbe17f +SHA256 (gnome2/gail-1.8.11.tar.bz2) = b1520968851727881e5ae070ec5d43c466322fab51607d96df531609f4abe6cf +SIZE (gnome2/gail-1.8.11.tar.bz2) = 584492 diff --git a/accessibility/gail/pkg-plist b/accessibility/gail/pkg-plist index 532efc0325cc..161125f2d4ee 100644 --- a/accessibility/gail/pkg-plist +++ b/accessibility/gail/pkg-plist @@ -80,18 +80,18 @@ share/locale/ta/LC_MESSAGES/gail.mo share/locale/th/LC_MESSAGES/gail.mo share/locale/tk/LC_MESSAGES/gail.mo share/locale/tr/LC_MESSAGES/gail.mo -share/locale/vi/LC_MESSAGES/gail.mo share/locale/uk/LC_MESSAGES/gail.mo +share/locale/vi/LC_MESSAGES/gail.mo share/locale/xh/LC_MESSAGES/gail.mo share/locale/zh_CN/LC_MESSAGES/gail.mo share/locale/zh_HK/LC_MESSAGES/gail.mo share/locale/zh_TW/LC_MESSAGES/gail.mo -@dirrm include/gail-1.0/libgail-util -@dirrm include/gail-1.0 @dirrmtry share/locale/zh_HK/LC_MESSAGES @dirrmtry share/locale/zh_HK @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku @dirrmtry share/locale/as/LC_MESSAGES @dirrmtry share/locale/as -@dirrm share/doc//gail-libgail-util +@dirrm share/doc/gail-libgail-util +@dirrm include/gail-1.0/libgail-util +@dirrm include/gail-1.0 diff --git a/accessibility/gnopernicus/Makefile b/accessibility/gnopernicus/Makefile index 0279ccad564e..9d28d20836fb 100644 --- a/accessibility/gnopernicus/Makefile +++ b/accessibility/gnopernicus/Makefile @@ -3,15 +3,15 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/accessibility/gnopernicus/Makefile,v 1.63 2005/10/12 00:10:26 marcus Exp $ +# $MCom: ports/accessibility/gnopernicus/Makefile,v 1.76 2006/04/14 14:42:45 mezz Exp $ # PORTNAME= gnopernicus -PORTVERSION= 0.12.0 +PORTVERSION= 1.0.4 PORTREVISION= 1 CATEGORIES= accessibility x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.12 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org @@ -20,18 +20,18 @@ COMMENT= Collection of accessibility apps for GNOME 2 LIB_DEPENDS= gnome-mag.2:${PORTSDIR}/accessibility/gnomemag USE_BZIP2= yes +USE_GETTEXT= yes USE_X_PREFIX= yes INSTALLS_OMF= yes USE_GMAKE= yes -USE_REINPLACE= yes USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui atspi gnomespeech -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" MAKE_ENV= SED="${SED}" GCONF_SCHEMAS= brlmonitor.schemas gnopernicus.schemas remote.schemas -SHLIB_VERSION= 0 +SHLIB_VERSION= 4 PLIST_SUB= SHLIB_VERSION=${SHLIB_VERSION} post-patch: diff --git a/accessibility/gnopernicus/distinfo b/accessibility/gnopernicus/distinfo index 68dc60f7ee90..8823f40f7f3b 100644 --- a/accessibility/gnopernicus/distinfo +++ b/accessibility/gnopernicus/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gnopernicus-0.12.0.tar.bz2) = 8228afc6b98306207349df150592b83b -SHA256 (gnome2/gnopernicus-0.12.0.tar.bz2) = 7cf15abeea9255594050f29824c67f4de8776b4d8e7a70ae78107675e9c7367b -SIZE (gnome2/gnopernicus-0.12.0.tar.bz2) = 2202137 +MD5 (gnome2/gnopernicus-1.0.4.tar.bz2) = 4e798c6d08e6096702d316b702801d1d +SHA256 (gnome2/gnopernicus-1.0.4.tar.bz2) = 1a42e8eb8dde345eb155d21e0a3ec8d57d96d13e989e3ae3ce770e797b9098c9 +SIZE (gnome2/gnopernicus-1.0.4.tar.bz2) = 2306812 diff --git a/accessibility/gnopernicus/files/patch-configure b/accessibility/gnopernicus/files/patch-configure new file mode 100644 index 000000000000..79dc7a3c1b07 --- /dev/null +++ b/accessibility/gnopernicus/files/patch-configure @@ -0,0 +1,21 @@ +--- configure.orig Mon Jan 9 15:02:42 2006 ++++ configure Mon Jan 9 15:04:48 2006 +@@ -21635,11 +21635,17 @@ + TTYNAME_2="/dev/cua/c" + TTYNAME_3="/dev/cua/d" + ;; +- FreeBSD-*) ++ FreeBSD-4*|FreeBSD-5*) + TTYNAME_0="/dev/cuaa0" + TTYNAME_1="/dev/cuaa1" + TTYNAME_2="/dev/cuaa2" + TTYNAME_3="/dev/cuaa3" ++ ;; ++ FreeBSD-*) ++ TTYNAME_0="/dev/cuad0" ++ TTYNAME_1="/dev/cuad1" ++ TTYNAME_2="/dev/cuaU0" ++ TTYNAME_3="/dev/cuaU1" + ;; + *) + echo "Can't figure out the name of the serial port on this OS" diff --git a/accessibility/gnopernicus/pkg-plist b/accessibility/gnopernicus/pkg-plist index f991f6425962..6aa58bfddc98 100644 --- a/accessibility/gnopernicus/pkg-plist +++ b/accessibility/gnopernicus/pkg-plist @@ -79,6 +79,9 @@ share/gnome/help/gnopernicus/C/gnopernicus.xml share/gnome/help/gnopernicus/C/legal.xml share/gnome/help/gnopernicus/es/gnopernicus.xml share/gnome/help/gnopernicus/es/legal.xml +share/gnome/help/gnopernicus/pt_BR/figures/gnopernicus.png +share/gnome/help/gnopernicus/pt_BR/gnopernicus.xml +share/gnome/help/gnopernicus/pt_BR/legal.xml share/gnome/omf/gnopernicus/brlmonitor-C.omf share/gnome/omf/gnopernicus/brlmonitor-es.omf share/gnome/omf/gnopernicus/gnopernicus-C.omf @@ -94,10 +97,12 @@ share/locale/cs/LC_MESSAGES/gnopernicus.mo share/locale/cy/LC_MESSAGES/gnopernicus.mo share/locale/da/LC_MESSAGES/gnopernicus.mo share/locale/de/LC_MESSAGES/gnopernicus.mo +share/locale/dz/LC_MESSAGES/gnopernicus.mo share/locale/el/LC_MESSAGES/gnopernicus.mo share/locale/en_CA/LC_MESSAGES/gnopernicus.mo share/locale/en_GB/LC_MESSAGES/gnopernicus.mo share/locale/es/LC_MESSAGES/gnopernicus.mo +share/locale/et/LC_MESSAGES/gnopernicus.mo share/locale/eu/LC_MESSAGES/gnopernicus.mo share/locale/fa/LC_MESSAGES/gnopernicus.mo share/locale/fi/LC_MESSAGES/gnopernicus.mo @@ -132,12 +137,18 @@ share/locale/sr/LC_MESSAGES/gnopernicus.mo share/locale/sr@Latn/LC_MESSAGES/gnopernicus.mo share/locale/sv/LC_MESSAGES/gnopernicus.mo share/locale/ta/LC_MESSAGES/gnopernicus.mo +share/locale/te/LC_MESSAGES/gnopernicus.mo +share/locale/th/LC_MESSAGES/gnopernicus.mo share/locale/tr/LC_MESSAGES/gnopernicus.mo share/locale/uk/LC_MESSAGES/gnopernicus.mo share/locale/vi/LC_MESSAGES/gnopernicus.mo share/locale/zh_CN/LC_MESSAGES/gnopernicus.mo share/locale/zh_TW/LC_MESSAGES/gnopernicus.mo +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz @dirrm share/gnome/omf/gnopernicus +@dirrm share/gnome/help/gnopernicus/pt_BR/figures +@dirrm share/gnome/help/gnopernicus/pt_BR @dirrm share/gnome/help/gnopernicus/es @dirrm share/gnome/help/gnopernicus/C @dirrm share/gnome/help/gnopernicus diff --git a/accessibility/gok/Makefile b/accessibility/gok/Makefile index 6c2a461c4cba..0f436c30cc72 100644 --- a/accessibility/gok/Makefile +++ b/accessibility/gok/Makefile @@ -3,14 +3,14 @@ # Whom: Adam Weinberger <adamw@freebsd.org> # # $FreeBSD$ -# +# $MCom: ports/accessibility/gok/Makefile,v 1.65 2006/04/27 22:59:43 marcus Exp $ PORTNAME= gok -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.8 PORTEPOCH= 1 CATEGORIES= accessibility sysutils gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.0 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org @@ -19,11 +19,12 @@ COMMENT= GNOME On-Screen Keyboard (GOK) LIB_DEPENDS= gnomespeech.7:${PORTSDIR}/accessibility/gnomespeech USE_BZIP2= yes +USE_GETTEXT= yes USE_X_PREFIX= yes INSTALLS_OMF= yes USE_GNOME= gnomehack gnomeprefix intlhack libgnomeui atspi libwnck USE_GMAKE= yes -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" diff --git a/accessibility/gok/distinfo b/accessibility/gok/distinfo index aa8b7dd04a89..f01d7617b1ef 100644 --- a/accessibility/gok/distinfo +++ b/accessibility/gok/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gok-1.0.5.tar.bz2) = a9334a0e1dc11bbba817c128503260b0 -SHA256 (gnome2/gok-1.0.5.tar.bz2) = 0c40f2813d113f10da7ef4e534e56d7d47b71805612c4263a1b14e427ae0fa4c -SIZE (gnome2/gok-1.0.5.tar.bz2) = 1386683 +MD5 (gnome2/gok-1.0.8.tar.bz2) = 48913cafdd9c90067319a619a5f936a3 +SHA256 (gnome2/gok-1.0.8.tar.bz2) = 684cead95f4afd403fed9fdcdfef20adf977119e172c6695f306e68a20631475 +SIZE (gnome2/gok-1.0.8.tar.bz2) = 1151395 diff --git a/accessibility/gok/files/patch-gok_gok-keyboard.c b/accessibility/gok/files/patch-gok_gok-keyboard.c deleted file mode 100644 index c85f8da0fcb0..000000000000 --- a/accessibility/gok/files/patch-gok_gok-keyboard.c +++ /dev/null @@ -1,13 +0,0 @@ ---- gok/gok-keyboard.c.orig Fri Nov 5 16:18:02 2004 -+++ gok/gok-keyboard.c Fri Nov 5 16:18:49 2004 -@@ -2519,8 +2519,9 @@ - else if ((pKeyboard->search_type == GOK_SPY_SEARCH_ACTIONABLE) && !did_actionkeys) - { - gint action_count, i; -+ AccessibleAction *action; - did_actionkeys = TRUE; -- AccessibleAction *action = -+ action = - Accessible_getAction (pNodeAccessible->paccessible); - if (!action) - break; diff --git a/accessibility/gok/pkg-plist b/accessibility/gok/pkg-plist index a460e052dfd2..2eac98f1075a 100644 --- a/accessibility/gok/pkg-plist +++ b/accessibility/gok/pkg-plist @@ -2,6 +2,62 @@ bin/create-branching-keyboard bin/gok libdata/bonobo/servers/GNOME_Gok.server libdata/pkgconfig/gok-1.0.pc +%%DOCSDIR%%/ch01.html +%%DOCSDIR%%/gok-GokButton.html +%%DOCSDIR%%/gok-arraylist.html +%%DOCSDIR%%/gok-callbacks.html +%%DOCSDIR%%/gok-command-common.html +%%DOCSDIR%%/gok-command-edge-data.html +%%DOCSDIR%%/gok-command-edge.html +%%DOCSDIR%%/gok-command-graph.html +%%DOCSDIR%%/gok-command-predictor.html +%%DOCSDIR%%/gok-command-vertex-data.html +%%DOCSDIR%%/gok-command-vertex.html +%%DOCSDIR%%/gok-global.html +%%DOCSDIR%%/gok-gok-action.html +%%DOCSDIR%%/gok-gok-branchback-stack.html +%%DOCSDIR%%/gok-gok-chunker.html +%%DOCSDIR%%/gok-gok-control.html +%%DOCSDIR%%/gok-gok-data.html +%%DOCSDIR%%/gok-gok-editor.html +%%DOCSDIR%%/gok-gok-feedback.html +%%DOCSDIR%%/gok-gok-gconf.html +%%DOCSDIR%%/gok-gok-key.html +%%DOCSDIR%%/gok-gok-keyboard.html +%%DOCSDIR%%/gok-gok-keyslotter.html +%%DOCSDIR%%/gok-gok-log-priv.html +%%DOCSDIR%%/gok-gok-log-reader.html +%%DOCSDIR%%/gok-gok-log.html +%%DOCSDIR%%/gok-gok-modifier.html +%%DOCSDIR%%/gok-gok-output.html +%%DOCSDIR%%/gok-gok-page-accessmethod.html +%%DOCSDIR%%/gok-gok-page-actions.html +%%DOCSDIR%%/gok-gok-page-feedbacks.html +%%DOCSDIR%%/gok-gok-page-keysizespace.html +%%DOCSDIR%%/gok-gok-page-wordcomplete.html +%%DOCSDIR%%/gok-gok-predictor.html +%%DOCSDIR%%/gok-gok-scanner.html +%%DOCSDIR%%/gok-gok-settings-dialog.html +%%DOCSDIR%%/gok-gok-sound.html +%%DOCSDIR%%/gok-gok-spy-priv.html +%%DOCSDIR%%/gok-gok-spy.html +%%DOCSDIR%%/gok-gok-word-complete.html +%%DOCSDIR%%/gok-gok.html +%%DOCSDIR%%/gok-gtkjoyswitch.html +%%DOCSDIR%%/gok-interface.html +%%DOCSDIR%%/gok-main.html +%%DOCSDIR%%/gok-support.html +%%DOCSDIR%%/gok-switchapi.html +%%DOCSDIR%%/gok-word-complete.html +%%DOCSDIR%%/gok.devhelp +%%DOCSDIR%%/gok.devhelp2 +%%DOCSDIR%%/home.png +%%DOCSDIR%%/index.html +%%DOCSDIR%%/index.sgml +%%DOCSDIR%%/left.png +%%DOCSDIR%%/right.png +%%DOCSDIR%%/style.css +%%DOCSDIR%%/up.png share/gnome/applications/gok.desktop share/gnome/gok/East.png share/gnome/gok/Keyboard.kbd @@ -127,6 +183,16 @@ share/gnome/gok/dictionary.txt share/gnome/gok/direct-selection.xam share/gnome/gok/directed.xam share/gnome/gok/dwell-selection.xam +share/gnome/gok/dz/gok-controls.kbd +share/gnome/gok/dz/hide.kbd +share/gnome/gok/dz/launcher.kbd +share/gnome/gok/dz/main.kbd +share/gnome/gok/dz/mouse.kbd +share/gnome/gok/dz/move-resize.kbd +share/gnome/gok/dz/numberpad.kbd +share/gnome/gok/dz/quit.kbd +share/gnome/gok/dz/text-operations.kbd +share/gnome/gok/dz/valuator.kbd share/gnome/gok/el/gok-controls.kbd share/gnome/gok/el/hide.kbd share/gnome/gok/el/launcher.kbd @@ -168,6 +234,16 @@ share/gnome/gok/es/numberpad.kbd share/gnome/gok/es/quit.kbd share/gnome/gok/es/text-operations.kbd share/gnome/gok/es/valuator.kbd +share/gnome/gok/et/gok-controls.kbd +share/gnome/gok/et/hide.kbd +share/gnome/gok/et/launcher.kbd +share/gnome/gok/et/main.kbd +share/gnome/gok/et/mouse.kbd +share/gnome/gok/et/move-resize.kbd +share/gnome/gok/et/numberpad.kbd +share/gnome/gok/et/quit.kbd +share/gnome/gok/et/text-operations.kbd +share/gnome/gok/et/valuator.kbd share/gnome/gok/eu/gok-controls.kbd share/gnome/gok/eu/hide.kbd share/gnome/gok/eu/launcher.kbd @@ -178,6 +254,16 @@ share/gnome/gok/eu/numberpad.kbd share/gnome/gok/eu/quit.kbd share/gnome/gok/eu/text-operations.kbd share/gnome/gok/eu/valuator.kbd +share/gnome/gok/fa/gok-controls.kbd +share/gnome/gok/fa/hide.kbd +share/gnome/gok/fa/launcher.kbd +share/gnome/gok/fa/main.kbd +share/gnome/gok/fa/mouse.kbd +share/gnome/gok/fa/move-resize.kbd +share/gnome/gok/fa/numberpad.kbd +share/gnome/gok/fa/quit.kbd +share/gnome/gok/fa/text-operations.kbd +share/gnome/gok/fa/valuator.kbd share/gnome/gok/fi/gok-controls.kbd share/gnome/gok/fi/hide.kbd share/gnome/gok/fi/launcher.kbd @@ -208,6 +294,16 @@ share/gnome/gok/ga/numberpad.kbd share/gnome/gok/ga/quit.kbd share/gnome/gok/ga/text-operations.kbd share/gnome/gok/ga/valuator.kbd +share/gnome/gok/gl/gok-controls.kbd +share/gnome/gok/gl/hide.kbd +share/gnome/gok/gl/launcher.kbd +share/gnome/gok/gl/main.kbd +share/gnome/gok/gl/mouse.kbd +share/gnome/gok/gl/move-resize.kbd +share/gnome/gok/gl/numberpad.kbd +share/gnome/gok/gl/quit.kbd +share/gnome/gok/gl/text-operations.kbd +share/gnome/gok/gl/valuator.kbd share/gnome/gok/glade/gok.glade2 share/gnome/gok/gok-controls.kbd share/gnome/gok/gok.png @@ -287,6 +383,16 @@ share/gnome/gok/ja/numberpad.kbd share/gnome/gok/ja/quit.kbd share/gnome/gok/ja/text-operations.kbd share/gnome/gok/ja/valuator.kbd +share/gnome/gok/ka/gok-controls.kbd +share/gnome/gok/ka/hide.kbd +share/gnome/gok/ka/launcher.kbd +share/gnome/gok/ka/main.kbd +share/gnome/gok/ka/mouse.kbd +share/gnome/gok/ka/move-resize.kbd +share/gnome/gok/ka/numberpad.kbd +share/gnome/gok/ka/quit.kbd +share/gnome/gok/ka/text-operations.kbd +share/gnome/gok/ka/valuator.kbd share/gnome/gok/ko/gok-controls.kbd share/gnome/gok/ko/hide.kbd share/gnome/gok/ko/launcher.kbd @@ -297,6 +403,16 @@ share/gnome/gok/ko/numberpad.kbd share/gnome/gok/ko/quit.kbd share/gnome/gok/ko/text-operations.kbd share/gnome/gok/ko/valuator.kbd +share/gnome/gok/ku/gok-controls.kbd +share/gnome/gok/ku/hide.kbd +share/gnome/gok/ku/launcher.kbd +share/gnome/gok/ku/main.kbd +share/gnome/gok/ku/mouse.kbd +share/gnome/gok/ku/move-resize.kbd +share/gnome/gok/ku/numberpad.kbd +share/gnome/gok/ku/quit.kbd +share/gnome/gok/ku/text-operations.kbd +share/gnome/gok/ku/valuator.kbd share/gnome/gok/latched.png share/gnome/gok/launcher.kbd share/gnome/gok/locked.png @@ -384,16 +500,6 @@ share/gnome/gok/nl/numberpad.kbd share/gnome/gok/nl/quit.kbd share/gnome/gok/nl/text-operations.kbd share/gnome/gok/nl/valuator.kbd -share/gnome/gok/no/gok-controls.kbd -share/gnome/gok/no/hide.kbd -share/gnome/gok/no/launcher.kbd -share/gnome/gok/no/main.kbd -share/gnome/gok/no/mouse.kbd -share/gnome/gok/no/move-resize.kbd -share/gnome/gok/no/numberpad.kbd -share/gnome/gok/no/quit.kbd -share/gnome/gok/no/text-operations.kbd -share/gnome/gok/no/valuator.kbd share/gnome/gok/numberpad.kbd share/gnome/gok/pa/gok-controls.kbd share/gnome/gok/pa/hide.kbd @@ -447,6 +553,16 @@ share/gnome/gok/ro/numberpad.kbd share/gnome/gok/ro/quit.kbd share/gnome/gok/ro/text-operations.kbd share/gnome/gok/ro/valuator.kbd +share/gnome/gok/ru/gok-controls.kbd +share/gnome/gok/ru/hide.kbd +share/gnome/gok/ru/launcher.kbd +share/gnome/gok/ru/main.kbd +share/gnome/gok/ru/mouse.kbd +share/gnome/gok/ru/move-resize.kbd +share/gnome/gok/ru/numberpad.kbd +share/gnome/gok/ru/quit.kbd +share/gnome/gok/ru/text-operations.kbd +share/gnome/gok/ru/valuator.kbd share/gnome/gok/rw/gok-controls.kbd share/gnome/gok/rw/hide.kbd share/gnome/gok/rw/launcher.kbd @@ -558,6 +674,16 @@ share/gnome/gok/zh_CN/numberpad.kbd share/gnome/gok/zh_CN/quit.kbd share/gnome/gok/zh_CN/text-operations.kbd share/gnome/gok/zh_CN/valuator.kbd +share/gnome/gok/zh_HK/gok-controls.kbd +share/gnome/gok/zh_HK/hide.kbd +share/gnome/gok/zh_HK/launcher.kbd +share/gnome/gok/zh_HK/main.kbd +share/gnome/gok/zh_HK/mouse.kbd +share/gnome/gok/zh_HK/move-resize.kbd +share/gnome/gok/zh_HK/numberpad.kbd +share/gnome/gok/zh_HK/quit.kbd +share/gnome/gok/zh_HK/text-operations.kbd +share/gnome/gok/zh_HK/valuator.kbd share/gnome/gok/zh_TW/gok-controls.kbd share/gnome/gok/zh_TW/hide.kbd share/gnome/gok/zh_TW/launcher.kbd @@ -583,14 +709,18 @@ share/locale/cs/LC_MESSAGES/gok.mo share/locale/cy/LC_MESSAGES/gok.mo share/locale/da/LC_MESSAGES/gok.mo share/locale/de/LC_MESSAGES/gok.mo +share/locale/dz/LC_MESSAGES/gok.mo share/locale/el/LC_MESSAGES/gok.mo share/locale/en_CA/LC_MESSAGES/gok.mo share/locale/en_GB/LC_MESSAGES/gok.mo share/locale/es/LC_MESSAGES/gok.mo +share/locale/et/LC_MESSAGES/gok.mo share/locale/eu/LC_MESSAGES/gok.mo +share/locale/fa/LC_MESSAGES/gok.mo share/locale/fi/LC_MESSAGES/gok.mo share/locale/fr/LC_MESSAGES/gok.mo share/locale/ga/LC_MESSAGES/gok.mo +share/locale/gl/LC_MESSAGES/gok.mo share/locale/gu/LC_MESSAGES/gok.mo share/locale/hi/LC_MESSAGES/gok.mo share/locale/hr/LC_MESSAGES/gok.mo @@ -598,7 +728,9 @@ share/locale/hu/LC_MESSAGES/gok.mo share/locale/id/LC_MESSAGES/gok.mo share/locale/it/LC_MESSAGES/gok.mo share/locale/ja/LC_MESSAGES/gok.mo +share/locale/ka/LC_MESSAGES/gok.mo share/locale/ko/LC_MESSAGES/gok.mo +share/locale/ku/LC_MESSAGES/gok.mo share/locale/lt/LC_MESSAGES/gok.mo share/locale/mk/LC_MESSAGES/gok.mo share/locale/ml/LC_MESSAGES/gok.mo @@ -607,12 +739,12 @@ share/locale/ms/LC_MESSAGES/gok.mo share/locale/nb/LC_MESSAGES/gok.mo share/locale/ne/LC_MESSAGES/gok.mo share/locale/nl/LC_MESSAGES/gok.mo -share/locale/no/LC_MESSAGES/gok.mo share/locale/pa/LC_MESSAGES/gok.mo share/locale/pl/LC_MESSAGES/gok.mo share/locale/pt/LC_MESSAGES/gok.mo share/locale/pt_BR/LC_MESSAGES/gok.mo share/locale/ro/LC_MESSAGES/gok.mo +share/locale/ru/LC_MESSAGES/gok.mo share/locale/rw/LC_MESSAGES/gok.mo share/locale/sl/LC_MESSAGES/gok.mo share/locale/sq/LC_MESSAGES/gok.mo @@ -623,13 +755,21 @@ share/locale/ta/LC_MESSAGES/gok.mo share/locale/uk/LC_MESSAGES/gok.mo share/locale/vi/LC_MESSAGES/gok.mo share/locale/zh_CN/LC_MESSAGES/gok.mo +share/locale/zh_HK/LC_MESSAGES/gok.mo share/locale/zh_TW/LC_MESSAGES/gok.mo +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK @dirrmtry share/locale/rw/LC_MESSAGES @dirrmtry share/locale/rw +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz @dirrm share/gnome/omf/gok @dirrm share/gnome/help/gok/C @dirrm share/gnome/help/gok @dirrm share/gnome/gok/zh_TW +@dirrm share/gnome/gok/zh_HK @dirrm share/gnome/gok/zh_CN @dirrm share/gnome/gok/vi @dirrm share/gnome/gok/uk @@ -640,12 +780,12 @@ share/locale/zh_TW/LC_MESSAGES/gok.mo @dirrm share/gnome/gok/sq @dirrm share/gnome/gok/sl @dirrm share/gnome/gok/rw +@dirrm share/gnome/gok/ru @dirrm share/gnome/gok/ro @dirrm share/gnome/gok/pt_BR @dirrm share/gnome/gok/pt @dirrm share/gnome/gok/pl @dirrm share/gnome/gok/pa -@dirrm share/gnome/gok/no @dirrm share/gnome/gok/nl @dirrm share/gnome/gok/ne @dirrm share/gnome/gok/nb @@ -654,7 +794,9 @@ share/locale/zh_TW/LC_MESSAGES/gok.mo @dirrm share/gnome/gok/ml @dirrm share/gnome/gok/mk @dirrm share/gnome/gok/lt +@dirrm share/gnome/gok/ku @dirrm share/gnome/gok/ko +@dirrm share/gnome/gok/ka @dirrm share/gnome/gok/ja @dirrm share/gnome/gok/it @dirrm share/gnome/gok/id @@ -663,14 +805,18 @@ share/locale/zh_TW/LC_MESSAGES/gok.mo @dirrm share/gnome/gok/hi @dirrm share/gnome/gok/gu @dirrm share/gnome/gok/glade +@dirrm share/gnome/gok/gl @dirrm share/gnome/gok/ga @dirrm share/gnome/gok/fr @dirrm share/gnome/gok/fi +@dirrm share/gnome/gok/fa @dirrm share/gnome/gok/eu +@dirrm share/gnome/gok/et @dirrm share/gnome/gok/es @dirrm share/gnome/gok/en_GB @dirrm share/gnome/gok/en_CA @dirrm share/gnome/gok/el +@dirrm share/gnome/gok/dz @dirrm share/gnome/gok/de @dirrm share/gnome/gok/da @dirrm share/gnome/gok/cy |