From 1b3327761c8bcb98d89b529daeae9600844b4361 Mon Sep 17 00:00:00 2001 From: marcus Date: Sat, 14 Oct 2006 10:33:48 +0000 Subject: Clean out MarcusCom after the big import into ports. Next stop, GNOME 2.17. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7799 df743ca5-7f9a-e211-a948-0013205c9059 --- accessibility/dasher/Makefile | 51 ---- accessibility/dasher/distinfo | 3 - .../files/patch-Src_DasherCore_FileLogger.cpp | 20 -- .../files/patch-Src_DasherCore_SimpleTimer.cpp | 24 -- .../dasher/files/patch-Src_DasherCore_TimeSpan.cpp | 29 -- .../dasher/files/patch-Src_DasherCore_UserLog.cpp | 20 -- accessibility/dasher/files/patch-configure | 11 - accessibility/dasher/pkg-descr | 14 - accessibility/dasher/pkg-plist | 330 --------------------- 9 files changed, 502 deletions(-) delete mode 100644 accessibility/dasher/Makefile delete mode 100644 accessibility/dasher/distinfo delete mode 100644 accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp delete mode 100644 accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp delete mode 100644 accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp delete mode 100644 accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp delete mode 100644 accessibility/dasher/files/patch-configure delete mode 100644 accessibility/dasher/pkg-descr delete mode 100644 accessibility/dasher/pkg-plist (limited to 'accessibility/dasher') diff --git a/accessibility/dasher/Makefile b/accessibility/dasher/Makefile deleted file mode 100644 index 91c830a4f..000000000 --- a/accessibility/dasher/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# Ports collection Makefile for: dasher -# Date created: 5 July 2003 -# Whom: lewiz -# -# $FreeBSD$ -# $MCom: ports/accessibility/dasher/Makefile,v 1.43 2006/08/22 04:45:58 marcus Exp $ -# - -PORTNAME= dasher -PORTVERSION= 4.2.0 -PORTEPOCH= 1 -CATEGORIES= accessibility editors x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -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 -RUN_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomehier libgnomeui atspi \ - libwnck gnomedocutils -WANT_GNOME= yes -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -INSTALLS_OMF= yes -USE_GCC= 3.4+ -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= dasher.1 - -.include - -.if ${HAVE_GNOME:Mgnomespeech}!="" -USE_GNOME+= gnomespeech -CONFIGURE_ARGS+=--enable-speech -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|-O2||g' - -.include diff --git a/accessibility/dasher/distinfo b/accessibility/dasher/distinfo deleted file mode 100644 index 86d91ceee..000000000 --- a/accessibility/dasher/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/dasher-4.2.0.tar.bz2) = 9db6f0ac46041300e7126a073a40530e -SHA256 (gnome2/dasher-4.2.0.tar.bz2) = 1664de06b3090b762ae5292a6ccf01681e857a8f8e320fb552aad810256e76ca -SIZE (gnome2/dasher-4.2.0.tar.bz2) = 5632602 diff --git a/accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp b/accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp deleted file mode 100644 index 6b5fdba4a..000000000 --- a/accessibility/dasher/files/patch-Src_DasherCore_FileLogger.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- Src/DasherCore/FileLogger.cpp.orig Fri Apr 21 17:41:01 2006 -+++ Src/DasherCore/FileLogger.cpp Sun Jun 11 07:33:19 2006 -@@ -511,7 +511,7 @@ - szTimeLine = ctime(&(sTimeBuffer.time)); - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- szTimeLine = ctime(&(sTimeBuffer.tv_sec)); -+ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); - #endif - - // Format is: -@@ -538,7 +538,7 @@ - #ifdef _WIN32 - sprintf(strMs, "%d", sTimeBuffer.millitm); - #else -- sprintf(strMs, "%d", sTimeBuffer.tv_usec / 1000); -+ sprintf(strMs, "%d", (int) (sTimeBuffer.tv_usec / 1000)); - #endif - if (strlen(strMs) == 1) - strTimeStamp += "00"; diff --git a/accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp b/accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp deleted file mode 100644 index 745c41f85..000000000 --- a/accessibility/dasher/files/patch-Src_DasherCore_SimpleTimer.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- Src/DasherCore/SimpleTimer.cpp.orig Wed May 31 00:14:12 2006 -+++ Src/DasherCore/SimpleTimer.cpp Wed May 31 00:14:23 2006 -@@ -34,8 +34,8 @@ CSimpleTimer::CSimpleTimer() - m_iStartSecond = sTimeBuffer.time; - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- m_iStartMs = sTimeBuffer.tv_usec / 1000; -- m_iStartSecond = sTimeBuffer.tv_sec; -+ m_iStartMs = (int) sTimeBuffer.tv_usec / 1000; -+ m_iStartSecond = (int) sTimeBuffer.tv_sec; - #endif - - } -@@ -59,8 +59,8 @@ double CSimpleTimer::GetElapsed() - int iEndSecond = sTimeBuffer.time; - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- int iEndMs = sTimeBuffer.tv_usec / 1000; -- int iEndSecond = sTimeBuffer.tv_sec; -+ int iEndMs = (int) sTimeBuffer.tv_usec / 1000; -+ int iEndSecond = (int) sTimeBuffer.tv_sec; - #endif - - diff --git a/accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp b/accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp deleted file mode 100644 index d41cf9bed..000000000 --- a/accessibility/dasher/files/patch-Src_DasherCore_TimeSpan.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- Src/DasherCore/TimeSpan.cpp.orig Fri Apr 21 17:41:02 2006 -+++ Src/DasherCore/TimeSpan.cpp Sun Jun 11 09:21:30 2006 -@@ -122,7 +122,7 @@ - szTimeLine = ctime(&(sTimeBuffer.time)); - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- szTimeLine = ctime(&(sTimeBuffer.tv_sec)); -+ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); - #endif - - if ((szTimeLine != NULL) && (strlen(szTimeLine) > 18)) -@@ -134,7 +134,7 @@ - #ifdef _WIN32 - sprintf(szMs, "%d", sTimeBuffer.millitm); - #else -- sprintf(szMs, "%d", sTimeBuffer.tv_usec / 1000); -+ sprintf(szMs, "%d", (int) (sTimeBuffer.tv_usec / 1000)); - #endif - if (strlen(szMs) == 1) - strTimeStamp += "00"; -@@ -196,7 +196,7 @@ - szTimeLine = ctime(&(sTimeBuffer.time)); - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- szTimeLine = ctime(&(sTimeBuffer.tv_sec)); -+ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); - #endif - - diff --git a/accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp b/accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp deleted file mode 100644 index 663e5426e..000000000 --- a/accessibility/dasher/files/patch-Src_DasherCore_UserLog.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- Src/DasherCore/UserLog.cpp.orig Fri Apr 21 17:41:02 2006 -+++ Src/DasherCore/UserLog.cpp Sun Jun 11 10:43:33 2006 -@@ -668,7 +668,7 @@ - szTimeLine = ctime(&(sTimeBuffer.time)); - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- szTimeLine = ctime(&(sTimeBuffer.tv_sec)); -+ szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); - #endif - - if ((szTimeLine != NULL) && (strlen(szTimeLine) > 18)) -@@ -881,7 +881,7 @@ - double dTime = (sTimeBuffer.time * 1000.0) + sTimeBuffer.millitm; - #else - gettimeofday(&sTimeBuffer, &sTimezoneBuffer); -- double dTime = (sTimeBuffer.tv_sec * 1000.0) + sTimeBuffer.tv_usec / 1000; -+ double dTime = (sTimeBuffer.tv_sec * 1000.0) + (int) (sTimeBuffer.tv_usec / 1000); - #endif - - diff --git a/accessibility/dasher/files/patch-configure b/accessibility/dasher/files/patch-configure deleted file mode 100644 index 7ade63c80..000000000 --- a/accessibility/dasher/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed May 17 00:00:16 2006 -+++ configure Wed May 17 00:01:21 2006 -@@ -24000,7 +24000,7 @@ GTK2BUILD_CFLAGS="$GTK2_CFLAGS $SETTINGS - if [ x"$WITHDARWIN" = xtrue ]; then - GTK2BUILD_LIBS="$X_LIBS $GTK2_LIBS $SETTINGS_LIBS $gthread_LIBS $gnome_speech_LIBS $gnome_a11y_LIBS $glade_LIBS $gnome_LIBS $wnck_LIBS $hildon_LIBS" - else -- 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" - fi - - diff --git a/accessibility/dasher/pkg-descr b/accessibility/dasher/pkg-descr deleted file mode 100644 index 7ef3255f0..000000000 --- a/accessibility/dasher/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -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 - for example, - - * on a palmtop computer; - * on a wearable computer; - * when operating a computer one-handed, by joystick, touchscreen, - * trackball, or mouse; - * when operating a computer with zero hands (i.e., by head-mouse or - * by eyetracker). - -Dasher is fast, efficient, and easy to learn. - -WWW: http://www.inference.phy.cam.ac.uk/dasher/ diff --git a/accessibility/dasher/pkg-plist b/accessibility/dasher/pkg-plist deleted file mode 100644 index 27fbfaa61..000000000 --- a/accessibility/dasher/pkg-plist +++ /dev/null @@ -1,330 +0,0 @@ -bin/dasher -share/gnome/applications/dasher.desktop -share/gnome/dasher/alphabet.AfaanOromo.xml -share/gnome/dasher/alphabet.Armenian.xml -share/gnome/dasher/alphabet.Assamese.xml -share/gnome/dasher/alphabet.Austen.xml -share/gnome/dasher/alphabet.Azerbaijani.xml -share/gnome/dasher/alphabet.Belarusian.xml -share/gnome/dasher/alphabet.Bulgarian.xml -share/gnome/dasher/alphabet.Esperanto.xml -share/gnome/dasher/alphabet.Estonian.xml -share/gnome/dasher/alphabet.Filipino.xml -share/gnome/dasher/alphabet.Greek.xml -share/gnome/dasher/alphabet.Gujarati.xml -share/gnome/dasher/alphabet.Hawaiian.xml -share/gnome/dasher/alphabet.Hebrew.xml -share/gnome/dasher/alphabet.Hindi.xml -share/gnome/dasher/alphabet.Icelandic.xml -share/gnome/dasher/alphabet.Igbo.xml -share/gnome/dasher/alphabet.Indonesian.xml -share/gnome/dasher/alphabet.IrishGaelic.xml -share/gnome/dasher/alphabet.Kannada.xml -share/gnome/dasher/alphabet.Katakana.xml -share/gnome/dasher/alphabet.Malay.xml -share/gnome/dasher/alphabet.Malayalam.xml -share/gnome/dasher/alphabet.Marathi.xml -share/gnome/dasher/alphabet.Moldavian.xml -share/gnome/dasher/alphabet.Ndebele.xml -share/gnome/dasher/alphabet.Oriya.xml -share/gnome/dasher/alphabet.Punjabi.xml -share/gnome/dasher/alphabet.Romanian.xml -share/gnome/dasher/alphabet.Sami.xml -share/gnome/dasher/alphabet.ScotsGaelic.xml -share/gnome/dasher/alphabet.Sepedi.xml -share/gnome/dasher/alphabet.Sesotho.xml -share/gnome/dasher/alphabet.Sinhala.xml -share/gnome/dasher/alphabet.Slovak.xml -share/gnome/dasher/alphabet.Slovenian.xml -share/gnome/dasher/alphabet.Swati.xml -share/gnome/dasher/alphabet.Tajik.xml -share/gnome/dasher/alphabet.Tamil.xml -share/gnome/dasher/alphabet.Telugu.xml -share/gnome/dasher/alphabet.Thai.xml -share/gnome/dasher/alphabet.Thai2.xml -share/gnome/dasher/alphabet.Tsonga.xml -share/gnome/dasher/alphabet.Tswana.xml -share/gnome/dasher/alphabet.Turkish.xml -share/gnome/dasher/alphabet.Urdu.xml -share/gnome/dasher/alphabet.Vietnamese.xml -share/gnome/dasher/alphabet.Xhosa.xml -share/gnome/dasher/alphabet.Yoruba.xml -share/gnome/dasher/alphabet.Zulu.xml -share/gnome/dasher/alphabet.abc.xml -share/gnome/dasher/alphabet.adangbe.xml -share/gnome/dasher/alphabet.afrikaans.xml -share/gnome/dasher/alphabet.akan.xml -share/gnome/dasher/alphabet.albanian.xml -share/gnome/dasher/alphabet.amharic.xml -share/gnome/dasher/alphabet.arabic.xml -share/gnome/dasher/alphabet.basque.xml -share/gnome/dasher/alphabet.bengali.xml -share/gnome/dasher/alphabet.bopomofo.xml -share/gnome/dasher/alphabet.bosnian.xml -share/gnome/dasher/alphabet.breton.xml -share/gnome/dasher/alphabet.catalan.xml -share/gnome/dasher/alphabet.cherokee.xml -share/gnome/dasher/alphabet.chinese.xml -share/gnome/dasher/alphabet.chineseRuby.xml -share/gnome/dasher/alphabet.corsican.xml -share/gnome/dasher/alphabet.croatian.xml -share/gnome/dasher/alphabet.czech.xml -share/gnome/dasher/alphabet.danish.xml -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.ethiopic.xml -share/gnome/dasher/alphabet.ewe.xml -share/gnome/dasher/alphabet.faroese.xml -share/gnome/dasher/alphabet.finnish.xml -share/gnome/dasher/alphabet.finnish2.xml -share/gnome/dasher/alphabet.french.xml -share/gnome/dasher/alphabet.ga.xml -share/gnome/dasher/alphabet.galician.xml -share/gnome/dasher/alphabet.georgian.xml -share/gnome/dasher/alphabet.german.xml -share/gnome/dasher/alphabet.hausa.xml -share/gnome/dasher/alphabet.hiragana.xml -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 -share/gnome/dasher/alphabet.klingon.xml -share/gnome/dasher/alphabet.korean.xml -share/gnome/dasher/alphabet.koreanNested.xml -share/gnome/dasher/alphabet.kurdish.xml -share/gnome/dasher/alphabet.lao.xml -share/gnome/dasher/alphabet.latex.xml -share/gnome/dasher/alphabet.latin.xml -share/gnome/dasher/alphabet.latvian.xml -share/gnome/dasher/alphabet.lithuanian.xml -share/gnome/dasher/alphabet.luxembourgish.xml -share/gnome/dasher/alphabet.macedonian.xml -share/gnome/dasher/alphabet.maltese.xml -share/gnome/dasher/alphabet.mongolian.xml -share/gnome/dasher/alphabet.myanmar.xml -share/gnome/dasher/alphabet.nepali.xml -share/gnome/dasher/alphabet.norwegian.xml -share/gnome/dasher/alphabet.occitan.xml -share/gnome/dasher/alphabet.ogham.xml -share/gnome/dasher/alphabet.pashto.xml -share/gnome/dasher/alphabet.perl.xml -share/gnome/dasher/alphabet.persian.xml -share/gnome/dasher/alphabet.pinyin.xml -share/gnome/dasher/alphabet.polish.xml -share/gnome/dasher/alphabet.portuguese.xml -share/gnome/dasher/alphabet.romansch.xml -share/gnome/dasher/alphabet.runic.xml -share/gnome/dasher/alphabet.russian.xml -share/gnome/dasher/alphabet.sanskrit.xml -share/gnome/dasher/alphabet.serbian.xml -share/gnome/dasher/alphabet.somali.xml -share/gnome/dasher/alphabet.spanish.xml -share/gnome/dasher/alphabet.swahili.xml -share/gnome/dasher/alphabet.swedish.xml -share/gnome/dasher/alphabet.thaana.xml -share/gnome/dasher/alphabet.tigrinya.xml -share/gnome/dasher/alphabet.turkmen.xml -share/gnome/dasher/alphabet.ukrainian.xml -share/gnome/dasher/alphabet.uzbek.xml -share/gnome/dasher/alphabet.venda.xml -share/gnome/dasher/alphabet.welsh.xml -share/gnome/dasher/alphabet.xsl -share/gnome/dasher/colour.blue.xml -share/gnome/dasher/colour.dtd -share/gnome/dasher/colour.euroasian.xml -share/gnome/dasher/colour.euroasian2.xml -share/gnome/dasher/colour.jamie.xml -share/gnome/dasher/colour.rainbow.xml -share/gnome/dasher/colour.thai.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/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 -share/gnome/dasher/training_english_GB.txt -share/gnome/dasher/training_finnish_FI.txt -share/gnome/dasher/training_french_FR.txt -share/gnome/dasher/training_german_DE.txt -share/gnome/dasher/training_greek_GR.txt -share/gnome/dasher/training_hebrew_IL.txt -share/gnome/dasher/training_hiragana60_JP.txt -share/gnome/dasher/training_hiragana83_JP.txt -share/gnome/dasher/training_hungarian_HU.txt -share/gnome/dasher/training_italian_IT.txt -share/gnome/dasher/training_mongolian_MN.txt -share/gnome/dasher/training_persian_IR.txt -share/gnome/dasher/training_polish_PL.txt -share/gnome/dasher/training_portuguese_BR.txt -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/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/omf/dasher/dasher-C.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/bn_IN/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 -share/locale/es/LC_MESSAGES/dasher.mo -share/locale/et/LC_MESSAGES/dasher.mo -share/locale/eu/LC_MESSAGES/dasher.mo -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/LC_MESSAGES/dasher.mo -share/locale/he/LC_MESSAGES/dasher.mo -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/LC_MESSAGES/dasher.mo -share/locale/ko/LC_MESSAGES/dasher.mo -share/locale/ku/LC_MESSAGES/dasher.mo -share/locale/ky/LC_MESSAGES/dasher.mo -share/locale/lt/LC_MESSAGES/dasher.mo -share/locale/lv/LC_MESSAGES/dasher.mo -share/locale/mg/LC_MESSAGES/dasher.mo -share/locale/mk/LC_MESSAGES/dasher.mo -share/locale/ml/LC_MESSAGES/dasher.mo -share/locale/mn/LC_MESSAGES/dasher.mo -share/locale/mr/LC_MESSAGES/dasher.mo -share/locale/ms/LC_MESSAGES/dasher.mo -share/locale/nb/LC_MESSAGES/dasher.mo -share/locale/ne/LC_MESSAGES/dasher.mo -share/locale/nl/LC_MESSAGES/dasher.mo -share/locale/nn/LC_MESSAGES/dasher.mo -share/locale/or/LC_MESSAGES/dasher.mo -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/LC_MESSAGES/dasher.mo -share/locale/sk/LC_MESSAGES/dasher.mo -share/locale/sl/LC_MESSAGES/dasher.mo -share/locale/sq/LC_MESSAGES/dasher.mo -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 -@dirrm share/gnome/omf/dasher -@dirrm share/gnome/help/dasher/C/figures -@dirrm share/gnome/help/dasher/C -@dirrm share/gnome/help/dasher -@dirrm share/gnome/dasher -@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/uk/LC_MESSAGES -@dirrmtry share/locale/uk -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/tk/LC_MESSAGES -@dirrmtry share/locale/tk -@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/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/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@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/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/cs/LC_MESSAGES -@dirrmtry share/locale/cs -@dirrmtry share/locale/ca/LC_MESSAGES -@dirrmtry share/locale/ca -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be/LC_MESSAGES -@dirrmtry share/locale/be -- cgit v1.2.3