From 37df402e6c7f70386fb757fb420ba8806da7d8c2 Mon Sep 17 00:00:00 2001 From: jasper Date: Mon, 19 Nov 2007 20:43:54 +0000 Subject: [PATCH] import dasher 4.6.1 Dasher is an information-efficient text-entry interface, driven by natural continuous pointing gestures. Dasher is a competitive text-entry system wherever a full-size keyboard cannot be used. --- x11/gnome/dasher/Makefile | 49 ++ x11/gnome/dasher/distinfo | 5 + .../patch-Src_DasherCore_DasherViewSquare_cpp | 20 + .../patches/patch-Src_Gtk2_DasherControl_cpp | 11 + .../patches/patch-Src_Gtk2_dasher_main_cpp | 11 + x11/gnome/dasher/pkg/DESCR | 3 + x11/gnome/dasher/pkg/PLIST | 456 ++++++++++++++++++ 7 files changed, 555 insertions(+) create mode 100644 x11/gnome/dasher/Makefile create mode 100644 x11/gnome/dasher/distinfo create mode 100644 x11/gnome/dasher/patches/patch-Src_DasherCore_DasherViewSquare_cpp create mode 100644 x11/gnome/dasher/patches/patch-Src_Gtk2_DasherControl_cpp create mode 100644 x11/gnome/dasher/patches/patch-Src_Gtk2_dasher_main_cpp create mode 100644 x11/gnome/dasher/pkg/DESCR create mode 100644 x11/gnome/dasher/pkg/PLIST diff --git a/x11/gnome/dasher/Makefile b/x11/gnome/dasher/Makefile new file mode 100644 index 00000000000..7f2adf35b0b --- /dev/null +++ b/x11/gnome/dasher/Makefile @@ -0,0 +1,49 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2007/11/19 20:43:54 jasper Exp $ + +COMMENT= graphical predictive text input system + +GNOME_PROJECT= dasher +GNOME_VERSION= 4.6.1 + +CATEGORIES= x11 + +# GPL +PERMIT_PACKAGE_CDROM= Yes +PERMIT_PACKAGE_FTP= Yes +PERMIT_DISTFILES_CDROM= Yes +PERMIT_DISTFILES_FTP= Yes + +MODULES= devel/gettext \ + x11/gnome + +WANTLIB= ICE ORBit-2 ORBitCosNaming-2 SM X11 Xau Xcomposite \ + Xcursor Xdamage Xdmcp Xext Xfixes Xi Xinerama Xrandr \ + Xrender Xtst art_lgpl_2 atk-1.0 audiofile bonobo-2 \ + bonobo-activation bonoboui-2 c cairo crypto dbus-1 \ + dbus-glib-1 esd expat fontconfig freetype gailutil \ + gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 glade-2.0 glib-2.0 \ + glitz gmodule-2.0 gnome-2 gnome-keyring gnomecanvas-2 \ + gnomevfs-2 gobject-2.0 gthread-2.0 gtk-x11-2.0 jpeg \ + m pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre png popt \ + pthread ssl stdc++ util xml2 z + +LIB_DEPENDS= gnomeui-2::x11/gnome/libgnomeui \ + cspi,spi::x11/gnome/at-spi + +USE_X11= Yes +DESKTOP_FILES= Yes +CONFIGURE_ARGS+= --with-gconf-schema-file-dir=${LOCALBASE}/share/schemas/dasher/ \ + --disable-schema-install \ + --disable-scrollkeeper \ + --with-cairo \ + --with-gnome \ + --enable-a11y \ + --disable-speech \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include " \ + LDFLAGS="-L${LOCALBASE}/lib " \ + CFLAGS="${CFLAGS} -I${LOCALBASE}/include " + +post-patch: + @ln -s /usr/bin/true ${WRKDIR}/bin/scrollkeeper-update + +.include diff --git a/x11/gnome/dasher/distinfo b/x11/gnome/dasher/distinfo new file mode 100644 index 00000000000..7085b8e5ce6 --- /dev/null +++ b/x11/gnome/dasher/distinfo @@ -0,0 +1,5 @@ +MD5 (gnome/dasher-4.6.1.tar.bz2) = FFffUHVHfXV/ffVpOUdGTQ== +RMD160 (gnome/dasher-4.6.1.tar.bz2) = d6dl3cYjiVoqEhcyhI8AxagmUtA= +SHA1 (gnome/dasher-4.6.1.tar.bz2) = bv6z/dFg4gO2Dl0rn6yg0kOmjtM= +SHA256 (gnome/dasher-4.6.1.tar.bz2) = Pw7go3Rl9SYpN+jSdGv3cQzGUF5wToDDGNw+AYBq68g= +SIZE (gnome/dasher-4.6.1.tar.bz2) = 6473483 diff --git a/x11/gnome/dasher/patches/patch-Src_DasherCore_DasherViewSquare_cpp b/x11/gnome/dasher/patches/patch-Src_DasherCore_DasherViewSquare_cpp new file mode 100644 index 00000000000..b59bde21025 --- /dev/null +++ b/x11/gnome/dasher/patches/patch-Src_DasherCore_DasherViewSquare_cpp @@ -0,0 +1,20 @@ +$OpenBSD: patch-Src_DasherCore_DasherViewSquare_cpp,v 1.1.1.1 2007/11/19 20:43:55 jasper Exp $ +--- Src/DasherCore/DasherViewSquare.cpp.orig Mon Oct 15 15:55:00 2007 ++++ Src/DasherCore/DasherViewSquare.cpp Mon Nov 19 21:11:05 2007 +@@ -21,6 +21,7 @@ + #include + + #include ++#include + + using namespace Dasher; + +@@ -802,7 +803,7 @@ inline myint CDasherViewSquare::CustomIDiv(myint iNume + else + return quot; + #else +- lldiv_t res = __gnu_cxx::lldiv(iNumerator, iDenominator); ++ lldiv_t res = lldiv(iNumerator, iDenominator); + + if(res.rem < 0) + return res.quot - 1; diff --git a/x11/gnome/dasher/patches/patch-Src_Gtk2_DasherControl_cpp b/x11/gnome/dasher/patches/patch-Src_Gtk2_DasherControl_cpp new file mode 100644 index 00000000000..3c3bb262d17 --- /dev/null +++ b/x11/gnome/dasher/patches/patch-Src_Gtk2_DasherControl_cpp @@ -0,0 +1,11 @@ +$OpenBSD: patch-Src_Gtk2_DasherControl_cpp,v 1.1.1.1 2007/11/19 20:43:55 jasper Exp $ +--- Src/Gtk2/DasherControl.cpp.orig Mon Oct 15 15:55:05 2007 ++++ Src/Gtk2/DasherControl.cpp Mon Nov 19 21:11:05 2007 +@@ -8,6 +8,7 @@ + #include "../DasherCore/WrapperFactory.h" + + #include ++#include + + #include + #include diff --git a/x11/gnome/dasher/patches/patch-Src_Gtk2_dasher_main_cpp b/x11/gnome/dasher/patches/patch-Src_Gtk2_dasher_main_cpp new file mode 100644 index 00000000000..eb72e517909 --- /dev/null +++ b/x11/gnome/dasher/patches/patch-Src_Gtk2_dasher_main_cpp @@ -0,0 +1,11 @@ +$OpenBSD: patch-Src_Gtk2_dasher_main_cpp,v 1.1.1.1 2007/11/19 20:43:55 jasper Exp $ +--- Src/Gtk2/dasher_main.cpp.orig Mon Oct 15 15:55:06 2007 ++++ Src/Gtk2/dasher_main.cpp Mon Nov 19 21:11:05 2007 +@@ -1,5 +1,7 @@ + #include "config.h" + ++#include ++ + #include + #include + #include diff --git a/x11/gnome/dasher/pkg/DESCR b/x11/gnome/dasher/pkg/DESCR new file mode 100644 index 00000000000..a15e441f34b --- /dev/null +++ b/x11/gnome/dasher/pkg/DESCR @@ -0,0 +1,3 @@ +Dasher is an information-efficient text-entry interface, driven by +natural continuous pointing gestures. Dasher is a competitive text-entry +system wherever a full-size keyboard cannot be used. diff --git a/x11/gnome/dasher/pkg/PLIST b/x11/gnome/dasher/pkg/PLIST new file mode 100644 index 00000000000..a9f44e3254e --- /dev/null +++ b/x11/gnome/dasher/pkg/PLIST @@ -0,0 +1,456 @@ +@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/19 20:43:55 jasper Exp $ +bin/dasher +@man man/man1/dasher.1 +share/applications/ +share/applications/dasher.desktop +share/dasher/ +share/dasher/alphabet.AfaanOromo.xml +share/dasher/alphabet.Armenian.xml +share/dasher/alphabet.Assamese.xml +share/dasher/alphabet.Austen.xml +share/dasher/alphabet.Azerbaijani.xml +share/dasher/alphabet.Belarusian.xml +share/dasher/alphabet.Bulgarian.xml +share/dasher/alphabet.Esperanto.xml +share/dasher/alphabet.Estonian.xml +share/dasher/alphabet.Filipino.xml +share/dasher/alphabet.Greek.xml +share/dasher/alphabet.Gujarati.xml +share/dasher/alphabet.Hawaiian.xml +share/dasher/alphabet.Hebrew.xml +share/dasher/alphabet.Hindi.xml +share/dasher/alphabet.Icelandic.xml +share/dasher/alphabet.Igbo.xml +share/dasher/alphabet.Indonesian.xml +share/dasher/alphabet.IrishGaelic.xml +share/dasher/alphabet.Kannada.xml +share/dasher/alphabet.Katakana.xml +share/dasher/alphabet.Malay.xml +share/dasher/alphabet.Malayalam.xml +share/dasher/alphabet.Marathi.xml +share/dasher/alphabet.Moldavian.xml +share/dasher/alphabet.Ndebele.xml +share/dasher/alphabet.Oriya.xml +share/dasher/alphabet.Punjabi.xml +share/dasher/alphabet.Romanian.xml +share/dasher/alphabet.Sami.xml +share/dasher/alphabet.ScotsGaelic.xml +share/dasher/alphabet.Sepedi.xml +share/dasher/alphabet.Sesotho.xml +share/dasher/alphabet.Sinhala.xml +share/dasher/alphabet.Slovak.xml +share/dasher/alphabet.Slovenian.xml +share/dasher/alphabet.Swati.xml +share/dasher/alphabet.Tajik.xml +share/dasher/alphabet.Tamil.xml +share/dasher/alphabet.Telugu.xml +share/dasher/alphabet.Thai.xml +share/dasher/alphabet.Thai2.xml +share/dasher/alphabet.Tsonga.xml +share/dasher/alphabet.Tswana.xml +share/dasher/alphabet.Turkish.xml +share/dasher/alphabet.Urdu.xml +share/dasher/alphabet.Vietnamese.xml +share/dasher/alphabet.Xhosa.xml +share/dasher/alphabet.Yoruba.xml +share/dasher/alphabet.Zulu.xml +share/dasher/alphabet.abc.xml +share/dasher/alphabet.adangbe.xml +share/dasher/alphabet.afrikaans.xml +share/dasher/alphabet.akan.xml +share/dasher/alphabet.albanian.xml +share/dasher/alphabet.amharic.xml +share/dasher/alphabet.arabic.xml +share/dasher/alphabet.basque.xml +share/dasher/alphabet.bengali.xml +share/dasher/alphabet.bopomofo.xml +share/dasher/alphabet.bosnian.xml +share/dasher/alphabet.breton.xml +share/dasher/alphabet.catalan.xml +share/dasher/alphabet.cherokee.xml +share/dasher/alphabet.chinese.xml +share/dasher/alphabet.chineseRuby.xml +share/dasher/alphabet.corsican.xml +share/dasher/alphabet.croatian.xml +share/dasher/alphabet.czech.xml +share/dasher/alphabet.danish.xml +share/dasher/alphabet.dtd +share/dasher/alphabet.dutch.xml +share/dasher/alphabet.english.xml +share/dasher/alphabet.englishC.xml +share/dasher/alphabet.ethiopic.xml +share/dasher/alphabet.ewe.xml +share/dasher/alphabet.faroese.xml +share/dasher/alphabet.finnish.xml +share/dasher/alphabet.finnish2.xml +share/dasher/alphabet.french.xml +share/dasher/alphabet.ga.xml +share/dasher/alphabet.galician.xml +share/dasher/alphabet.georgian.xml +share/dasher/alphabet.german.xml +share/dasher/alphabet.hausa.xml +share/dasher/alphabet.hiragana.xml +share/dasher/alphabet.hiragana2.xml +share/dasher/alphabet.hungarian.xml +share/dasher/alphabet.ipa.xml +share/dasher/alphabet.italian.xml +share/dasher/alphabet.japanese.canna.xml +share/dasher/alphabet.kazakh.xml +share/dasher/alphabet.kirghiz.xml +share/dasher/alphabet.kirundi.xml +share/dasher/alphabet.klingon.xml +share/dasher/alphabet.korean.xml +share/dasher/alphabet.koreanNested.xml +share/dasher/alphabet.kurdish.xml +share/dasher/alphabet.lao.xml +share/dasher/alphabet.latex.xml +share/dasher/alphabet.latin.xml +share/dasher/alphabet.latvian.xml +share/dasher/alphabet.lithuanian.xml +share/dasher/alphabet.luxembourgish.xml +share/dasher/alphabet.macedonian.xml +share/dasher/alphabet.maltese.xml +share/dasher/alphabet.mongolian.xml +share/dasher/alphabet.myanmar.xml +share/dasher/alphabet.nepali.xml +share/dasher/alphabet.norwegian.xml +share/dasher/alphabet.occitan.xml +share/dasher/alphabet.ogham.xml +share/dasher/alphabet.pashto.xml +share/dasher/alphabet.perl.xml +share/dasher/alphabet.persian.xml +share/dasher/alphabet.pinyin.xml +share/dasher/alphabet.pinyin2.xml +share/dasher/alphabet.polish.xml +share/dasher/alphabet.portuguese.xml +share/dasher/alphabet.romansch.xml +share/dasher/alphabet.runic.xml +share/dasher/alphabet.russian.xml +share/dasher/alphabet.sanskrit.xml +share/dasher/alphabet.serbian.xml +share/dasher/alphabet.somali.xml +share/dasher/alphabet.spanish.xml +share/dasher/alphabet.swahili.xml +share/dasher/alphabet.swedish.xml +share/dasher/alphabet.thaana.xml +share/dasher/alphabet.tigrinya.xml +share/dasher/alphabet.turkmen.xml +share/dasher/alphabet.ukrainian.xml +share/dasher/alphabet.uzbek.xml +share/dasher/alphabet.venda.xml +share/dasher/alphabet.welsh.xml +share/dasher/alphabet.xsl +share/dasher/colour.blue.xml +share/dasher/colour.dtd +share/dasher/colour.euroasian.xml +share/dasher/colour.euroasian2.xml +share/dasher/colour.euroasian3.xml +share/dasher/colour.jamie.xml +share/dasher/colour.rainbow.xml +share/dasher/colour.thai.xml +share/dasher/colour.vowels.xml +share/dasher/colour.vowels2.xml +share/dasher/colour.xml +share/dasher/controllabels.dtd +share/dasher/controllabels.xml +share/dasher/dasher.compose.glade +share/dasher/dasher.direct.glade +share/dasher/dasher.fullscreen.glade +share/dasher/dasher.traditional.glade +share/dasher/dashermaemo.glade +share/dasher/dashermaemofullscreen.glade +share/dasher/training_albanian_SQ.txt +share/dasher/training_basque_EU.txt +share/dasher/training_bengali_BD.txt +share/dasher/training_bengali_bn.txt +share/dasher/training_canna_JP.txt +share/dasher/training_czech_CS.txt +share/dasher/training_danish_DK.txt +share/dasher/training_dutch_NL.txt +share/dasher/training_english_GB.txt +share/dasher/training_finnish_FI.txt +share/dasher/training_french_FR.txt +share/dasher/training_german_DE.txt +share/dasher/training_greek_GR.txt +share/dasher/training_hebrew_IL.txt +share/dasher/training_hiragana60_JP.txt +share/dasher/training_hiragana83_JP.txt +share/dasher/training_hungarian_HU.txt +share/dasher/training_italian_IT.txt +share/dasher/training_mongolian_MN.txt +share/dasher/training_persian_IR.txt +share/dasher/training_polish_PL.txt +share/dasher/training_portuguese_BR.txt +share/dasher/training_russian_RU.txt +share/dasher/training_spanish_ES.txt +share/dasher/training_swahili_KE.txt +share/dasher/training_swedish_SE.txt +share/dasher/training_turkish_TR.txt +share/dasher/training_welsh_GB.txt +share/gnome/ +share/gnome/help/ +share/gnome/help/dasher/ +share/gnome/help/dasher/C/ +share/gnome/help/dasher/C/dasher.xml +share/gnome/help/dasher/C/figures/ +share/gnome/help/dasher/C/figures/a-z.gif +share/gnome/help/dasher/C/figures/aa-az.gif +share/gnome/help/dasher/C/figures/ala-alz.gif +share/gnome/help/dasher/C/figures/exampleHad2.png +share/gnome/help/dasher/C/figures/exampleHad2a.png +share/gnome/help/dasher/C/figures/exampleHad3a.png +share/gnome/help/dasher/C/figures/exampleHad4.png +share/gnome/help/dasher/C/figures/figure2.png +share/gnome/help/dasher/C/figures/main.png +share/gnome/help/dasher/C/figures/object.gif +share/gnome/help/dasher/C/figures/prefs1.png +share/gnome/help/dasher/C/figures/prefs2.png +share/gnome/help/dasher/C/figures/prefs3.png +share/gnome/help/dasher/C/figures/prefs4.png +share/gnome/help/dasher/C/figures/prefs5.png +share/gnome/help/dasher/es/ +share/gnome/help/dasher/es/dasher.xml +share/gnome/help/dasher/es/figures/ +share/gnome/help/dasher/es/figures/a-z.gif +share/gnome/help/dasher/es/figures/aa-az.gif +share/gnome/help/dasher/es/figures/ala-alz.gif +share/gnome/help/dasher/es/figures/exampleHad2.png +share/gnome/help/dasher/es/figures/exampleHad2a.png +share/gnome/help/dasher/es/figures/exampleHad3a.png +share/gnome/help/dasher/es/figures/exampleHad4.png +share/gnome/help/dasher/es/figures/figure2.png +share/gnome/help/dasher/es/figures/main.png +share/gnome/help/dasher/es/figures/object.gif +share/gnome/help/dasher/es/figures/prefs1.png +share/gnome/help/dasher/es/figures/prefs2.png +share/gnome/help/dasher/es/figures/prefs3.png +share/gnome/help/dasher/es/figures/prefs4.png +share/gnome/help/dasher/es/figures/prefs5.png +share/gnome/help/dasher/fr/ +share/gnome/help/dasher/fr/dasher.xml +share/gnome/help/dasher/fr/figures/ +share/gnome/help/dasher/fr/figures/a-z.gif +share/gnome/help/dasher/fr/figures/aa-az.gif +share/gnome/help/dasher/fr/figures/ala-alz.gif +share/gnome/help/dasher/fr/figures/exampleHad2.png +share/gnome/help/dasher/fr/figures/exampleHad2a.png +share/gnome/help/dasher/fr/figures/exampleHad3a.png +share/gnome/help/dasher/fr/figures/exampleHad4.png +share/gnome/help/dasher/fr/figures/figure2.png +share/gnome/help/dasher/fr/figures/main.png +share/gnome/help/dasher/fr/figures/object.gif +share/gnome/help/dasher/fr/figures/prefs1.png +share/gnome/help/dasher/fr/figures/prefs2.png +share/gnome/help/dasher/fr/figures/prefs3.png +share/gnome/help/dasher/fr/figures/prefs4.png +share/gnome/help/dasher/fr/figures/prefs5.png +share/gnome/help/dasher/ru/ +share/gnome/help/dasher/ru/dasher.xml +share/gnome/help/dasher/ru/figures/ +share/gnome/help/dasher/ru/figures/a-z.gif +share/gnome/help/dasher/ru/figures/aa-az.gif +share/gnome/help/dasher/ru/figures/ala-alz.gif +share/gnome/help/dasher/ru/figures/exampleHad2.png +share/gnome/help/dasher/ru/figures/exampleHad2a.png +share/gnome/help/dasher/ru/figures/exampleHad3a.png +share/gnome/help/dasher/ru/figures/exampleHad4.png +share/gnome/help/dasher/ru/figures/figure2.png +share/gnome/help/dasher/ru/figures/main.png +share/gnome/help/dasher/ru/figures/object.gif +share/gnome/help/dasher/ru/figures/prefs1.png +share/gnome/help/dasher/ru/figures/prefs2.png +share/gnome/help/dasher/ru/figures/prefs3.png +share/gnome/help/dasher/ru/figures/prefs4.png +share/gnome/help/dasher/ru/figures/prefs5.png +share/gnome/help/dasher/sv/ +share/gnome/help/dasher/sv/dasher.xml +share/gnome/help/dasher/sv/figures/ +share/gnome/help/dasher/sv/figures/a-z.gif +share/gnome/help/dasher/sv/figures/aa-az.gif +share/gnome/help/dasher/sv/figures/ala-alz.gif +share/gnome/help/dasher/sv/figures/exampleHad2.png +share/gnome/help/dasher/sv/figures/exampleHad2a.png +share/gnome/help/dasher/sv/figures/exampleHad3a.png +share/gnome/help/dasher/sv/figures/exampleHad4.png +share/gnome/help/dasher/sv/figures/figure2.png +share/gnome/help/dasher/sv/figures/main.png +share/gnome/help/dasher/sv/figures/object.gif +share/gnome/help/dasher/sv/figures/prefs1.png +share/gnome/help/dasher/sv/figures/prefs2.png +share/gnome/help/dasher/sv/figures/prefs3.png +share/gnome/help/dasher/sv/figures/prefs4.png +share/gnome/help/dasher/sv/figures/prefs5.png +share/icons/ +share/icons/hicolor/ +share/icons/hicolor/48x48/ +share/icons/hicolor/48x48/apps/ +share/icons/hicolor/48x48/apps/dasher.png +share/icons/hicolor/scalable/ +share/icons/hicolor/scalable/apps/ +share/icons/hicolor/scalable/apps/dasher.svg +share/locale/ar/ +share/locale/ar/LC_MESSAGES/ +share/locale/ar/LC_MESSAGES/dasher.mo +share/locale/az/ +share/locale/az/LC_MESSAGES/ +share/locale/az/LC_MESSAGES/dasher.mo +share/locale/be/LC_MESSAGES/dasher.mo +share/locale/be@latin/ +share/locale/be@latin/LC_MESSAGES/ +share/locale/be@latin/LC_MESSAGES/dasher.mo +share/locale/bg/LC_MESSAGES/dasher.mo +share/locale/bn/ +share/locale/bn/LC_MESSAGES/ +share/locale/bn/LC_MESSAGES/dasher.mo +share/locale/bn_IN/ +share/locale/bn_IN/LC_MESSAGES/ +share/locale/bn_IN/LC_MESSAGES/dasher.mo +share/locale/bs/ +share/locale/bs/LC_MESSAGES/ +share/locale/bs/LC_MESSAGES/dasher.mo +share/locale/ca/LC_MESSAGES/dasher.mo +share/locale/cs/LC_MESSAGES/dasher.mo +share/locale/cy/ +share/locale/cy/LC_MESSAGES/ +share/locale/cy/LC_MESSAGES/dasher.mo +share/locale/da/LC_MESSAGES/dasher.mo +share/locale/de/LC_MESSAGES/dasher.mo +share/locale/dz/ +share/locale/dz/LC_MESSAGES/ +share/locale/dz/LC_MESSAGES/dasher.mo +share/locale/el/LC_MESSAGES/dasher.mo +share/locale/en_CA/ +share/locale/en_CA/LC_MESSAGES/ +share/locale/en_CA/LC_MESSAGES/dasher.mo +share/locale/en_GB/ +share/locale/en_GB/LC_MESSAGES/ +share/locale/en_GB/LC_MESSAGES/dasher.mo +share/locale/es/LC_MESSAGES/dasher.mo +share/locale/et/LC_MESSAGES/dasher.mo +share/locale/eu/ +share/locale/eu/LC_MESSAGES/ +share/locale/eu/LC_MESSAGES/dasher.mo +share/locale/fa/ +share/locale/fa/LC_MESSAGES/ +share/locale/fa/LC_MESSAGES/dasher.mo +share/locale/fi/LC_MESSAGES/dasher.mo +share/locale/fr/LC_MESSAGES/dasher.mo +share/locale/ga/LC_MESSAGES/dasher.mo +share/locale/gl/LC_MESSAGES/dasher.mo +share/locale/gu/ +share/locale/gu/LC_MESSAGES/ +share/locale/gu/LC_MESSAGES/dasher.mo +share/locale/he/LC_MESSAGES/dasher.mo +share/locale/hi/ +share/locale/hi/LC_MESSAGES/ +share/locale/hi/LC_MESSAGES/dasher.mo +share/locale/hr/LC_MESSAGES/dasher.mo +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/ +share/locale/ka/LC_MESSAGES/ +share/locale/ka/LC_MESSAGES/dasher.mo +share/locale/ko/LC_MESSAGES/dasher.mo +share/locale/ku/ +share/locale/ku/LC_MESSAGES/ +share/locale/ku/LC_MESSAGES/dasher.mo +share/locale/ky/ +share/locale/ky/LC_MESSAGES/ +share/locale/ky/LC_MESSAGES/dasher.mo +share/locale/lt/ +share/locale/lt/LC_MESSAGES/ +share/locale/lt/LC_MESSAGES/dasher.mo +share/locale/lv/LC_MESSAGES/dasher.mo +share/locale/mg/ +share/locale/mg/LC_MESSAGES/ +share/locale/mg/LC_MESSAGES/dasher.mo +share/locale/mk/ +share/locale/mk/LC_MESSAGES/ +share/locale/mk/LC_MESSAGES/dasher.mo +share/locale/ml/ +share/locale/ml/LC_MESSAGES/ +share/locale/ml/LC_MESSAGES/dasher.mo +share/locale/mn/ +share/locale/mn/LC_MESSAGES/ +share/locale/mn/LC_MESSAGES/dasher.mo +share/locale/mr/ +share/locale/mr/LC_MESSAGES/ +share/locale/mr/LC_MESSAGES/dasher.mo +share/locale/ms/ +share/locale/ms/LC_MESSAGES/ +share/locale/ms/LC_MESSAGES/dasher.mo +share/locale/nb/LC_MESSAGES/dasher.mo +share/locale/ne/ +share/locale/ne/LC_MESSAGES/ +share/locale/ne/LC_MESSAGES/dasher.mo +share/locale/nl/LC_MESSAGES/dasher.mo +share/locale/nn/LC_MESSAGES/dasher.mo +share/locale/oc/ +share/locale/oc/LC_MESSAGES/ +share/locale/oc/LC_MESSAGES/dasher.mo +share/locale/or/ +share/locale/or/LC_MESSAGES/ +share/locale/or/LC_MESSAGES/dasher.mo +share/locale/pa/ +share/locale/pa/LC_MESSAGES/ +share/locale/pa/LC_MESSAGES/dasher.mo +share/locale/pl/LC_MESSAGES/dasher.mo +share/locale/pt/LC_MESSAGES/dasher.mo +share/locale/pt_BR/LC_MESSAGES/dasher.mo +share/locale/ro/LC_MESSAGES/dasher.mo +share/locale/ru/LC_MESSAGES/dasher.mo +share/locale/rw/ +share/locale/rw/LC_MESSAGES/ +share/locale/rw/LC_MESSAGES/dasher.mo +share/locale/si/ +share/locale/si/LC_MESSAGES/ +share/locale/si/LC_MESSAGES/dasher.mo +share/locale/sk/LC_MESSAGES/dasher.mo +share/locale/sl/LC_MESSAGES/dasher.mo +share/locale/sq/ +share/locale/sq/LC_MESSAGES/ +share/locale/sq/LC_MESSAGES/dasher.mo +share/locale/sr/LC_MESSAGES/dasher.mo +share/locale/sr@Latn/ +share/locale/sr@Latn/LC_MESSAGES/ +share/locale/sr@Latn/LC_MESSAGES/dasher.mo +share/locale/sv/LC_MESSAGES/dasher.mo +share/locale/ta/ +share/locale/ta/LC_MESSAGES/ +share/locale/ta/LC_MESSAGES/dasher.mo +share/locale/th/ +share/locale/th/LC_MESSAGES/ +share/locale/th/LC_MESSAGES/dasher.mo +share/locale/tk/ +share/locale/tk/LC_MESSAGES/ +share/locale/tk/LC_MESSAGES/dasher.mo +share/locale/tr/LC_MESSAGES/dasher.mo +share/locale/ug/ +share/locale/ug/LC_MESSAGES/ +share/locale/ug/LC_MESSAGES/dasher.mo +share/locale/uk/LC_MESSAGES/dasher.mo +share/locale/uz@cyrillic/ +share/locale/uz@cyrillic/LC_MESSAGES/ +share/locale/uz@cyrillic/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 +share/omf/ +share/omf/dasher/ +share/omf/dasher/dasher-C.omf +share/omf/dasher/dasher-es.omf +share/omf/dasher/dasher-fr.omf +share/omf/dasher/dasher-ru.omf +share/omf/dasher/dasher-sv.omf +@unexec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-uninstall-rule %D/share/schemas/dasher/*.schemas > /dev/null +share/schemas/ +share/schemas/dasher/ +share/schemas/dasher/dasher.schemas +@exec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-install-rule %D/share/schemas/dasher/*.schemas > /dev/null +@exec %D/bin/scrollkeeper-update -q +@unexec %D/bin/scrollkeeper-update -q +@exec %D/bin/update-desktop-database +@unexec %D/bin/update-desktop-database