diff options
-rw-r--r-- | x11/gnome-terminal3/Makefile | 38 | ||||
-rw-r--r-- | x11/gnome-terminal3/distinfo | 2 | ||||
-rw-r--r-- | x11/gnome-terminal3/files/patch-config.h.in | 12 | ||||
-rw-r--r-- | x11/gnome-terminal3/files/patch-configure | 55 | ||||
-rw-r--r-- | x11/gnome-terminal3/files/patch-configure.ac | 13 | ||||
-rw-r--r-- | x11/gnome-terminal3/files/patch-src_terminal-screen.c | 97 | ||||
-rw-r--r-- | x11/gnome-terminal3/pkg-descr | 3 | ||||
-rw-r--r-- | x11/gnome-terminal3/pkg-plist | 289 |
8 files changed, 509 insertions, 0 deletions
diff --git a/x11/gnome-terminal3/Makefile b/x11/gnome-terminal3/Makefile new file mode 100644 index 000000000..865074f1a --- /dev/null +++ b/x11/gnome-terminal3/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: gnometerminal +# Date created: 1 May 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= gnome-terminal +PORTVERSION= 2.33.4 +CATEGORIES= x11 gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome3 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Terminal component for the GNOME 3 Desktop + +LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification + +USE_GETTEXT= yes +USE_BZIP2= yes +INSTALLS_OMF= yes +USE_GMAKE= yes +USE_XORG= sm +USE_GNOME= gnomeprefix gnomehack intlhack gconf2 vte3 gnomedocutils +GNU_CONFIGURE= yes +GNOME_DESKTOP_VERSION=3 +CONFIGURE_ARGS= --with-gtk=3.0 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +GCONF_SCHEMAS= gnome-terminal.schemas + +post-patch: + @${TOUCH} ${WRKSRC}/aclocal.m4 ${WRKSRC}/Makefile.in \ + ${WRKSRC}/configure ${WRKSRC}/config.h.in + +.include <bsd.port.mk> diff --git a/x11/gnome-terminal3/distinfo b/x11/gnome-terminal3/distinfo new file mode 100644 index 000000000..fe0154ea4 --- /dev/null +++ b/x11/gnome-terminal3/distinfo @@ -0,0 +1,2 @@ +SHA256 (gnome3/gnome-terminal-2.33.4.tar.bz2) = 7d99eafe7877978ebf41fc3ae589d1ba81c6ee49cbd6bad11f7431e52c385612 +SIZE (gnome3/gnome-terminal-2.33.4.tar.bz2) = 2346375 diff --git a/x11/gnome-terminal3/files/patch-config.h.in b/x11/gnome-terminal3/files/patch-config.h.in new file mode 100644 index 000000000..a752d5eff --- /dev/null +++ b/x11/gnome-terminal3/files/patch-config.h.in @@ -0,0 +1,12 @@ +--- config.h.in.orig 2011-01-13 04:05:18.243479000 +0000 ++++ config.h.in 2011-01-13 04:05:35.000000000 +0000 +@@ -27,6 +27,9 @@ + /* Define to 1 if you have the <inttypes.h> header file. */ + #undef HAVE_INTTYPES_H + ++/* Define if you have the kinfo_getfile function */ ++#undef HAVE_KINFO_GETFILE ++ + /* Define if your <locale.h> file defines LC_MESSAGES. */ + #undef HAVE_LC_MESSAGES + diff --git a/x11/gnome-terminal3/files/patch-configure b/x11/gnome-terminal3/files/patch-configure new file mode 100644 index 000000000..54434bd97 --- /dev/null +++ b/x11/gnome-terminal3/files/patch-configure @@ -0,0 +1,55 @@ +--- configure.orig 2011-01-13 04:08:02.000000000 +0000 ++++ configure 2011-01-13 04:08:30.000000000 +0000 +@@ -14510,6 +13851,52 @@ + ;; + esac + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for kinfo_getfile in -lutil" >&5 ++$as_echo_n "checking for kinfo_getfile in -lutil... " >&6; } ++if ${ac_cv_lib_util_kinfo_getfile+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lutil $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char kinfo_getfile (); ++int ++main () ++{ ++return kinfo_getfile (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_util_kinfo_getfile=yes ++else ++ ac_cv_lib_util_kinfo_getfile=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_kinfo_getfile" >&5 ++$as_echo "$ac_cv_lib_util_kinfo_getfile" >&6; } ++if test "x$ac_cv_lib_util_kinfo_getfile" = xyes; then : ++ LIBS="${LIBS} -lutil" ++ ++$as_echo "#define HAVE_KINFO_GETFILE 1" >>confdefs.h ++ ++else ++ : ++fi ++ ++ + if test "$GTK_BUILDER_CONVERT" = "false"; then + as_fn_error $? "gtk-builder-convert not found" "$LINENO" 5 + fi diff --git a/x11/gnome-terminal3/files/patch-configure.ac b/x11/gnome-terminal3/files/patch-configure.ac new file mode 100644 index 000000000..5e3a59f60 --- /dev/null +++ b/x11/gnome-terminal3/files/patch-configure.ac @@ -0,0 +1,13 @@ +--- configure.ac.orig 2011-01-11 19:41:06.000000000 +0000 ++++ configure.ac 2011-01-13 04:07:54.000000000 +0000 +@@ -136,6 +136,10 @@ + 3.0) AC_PATH_PROGS([GTK_BUILDER_CONVERT],[gtk-builder-convert gtk-builder-convert-3.0],[false]) ;; + esac + ++AC_CHECK_LIB(util, kinfo_getfile, ++ [LIBS="${LIBS} -lutil" ++ AC_DEFINE(HAVE_KINFO_GETFILE, 1, [Define if you have the kinfo_getfile function])], [:]) ++ + if test "$GTK_BUILDER_CONVERT" = "false"; then + AC_MSG_ERROR([gtk-builder-convert not found]) + fi diff --git a/x11/gnome-terminal3/files/patch-src_terminal-screen.c b/x11/gnome-terminal3/files/patch-src_terminal-screen.c new file mode 100644 index 000000000..096a53103 --- /dev/null +++ b/x11/gnome-terminal3/files/patch-src_terminal-screen.c @@ -0,0 +1,97 @@ +--- src/terminal-screen.c.orig 2010-12-03 01:12:50.000000000 +0000 ++++ src/terminal-screen.c 2011-01-13 04:06:12.000000000 +0000 +@@ -18,6 +18,15 @@ + + #include <config.h> + ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#include <sys/sysctl.h> ++#include <sys/param.h> ++#include <sys/user.h> ++#ifdef HAVE_KINFO_GETFILE ++#include <libutil.h> ++#endif ++#endif + #include <string.h> + #include <stdlib.h> + #include <unistd.h> +@@ -179,15 +188,28 @@ G_DEFINE_TYPE (TerminalScreen, terminal_ + static char * + cwd_of_pid (int pid) + { ++#ifndef __FreeBSD__ + static const char patterns[][18] = { + "/proc/%d/cwd", /* Linux */ + "/proc/%d/path/cwd", /* Solaris >= 10 */ + }; ++#else ++#if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) ++ struct kinfo_file *freep, *kif; ++#ifndef HAVE_KINFO_GETFILE ++ size_t len; ++ int name[4]; ++#else ++ int cnt; ++#endif /* HAVE_KINFO_GETFILE */ ++#endif /* __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) */ ++#endif /* __FreeBSD__ */ + guint i; + + if (pid == -1) + return NULL; + ++#ifndef __FreeBSD__ + /* Try to get the working directory using various OS-specific mechanisms */ + for (i = 0; i < G_N_ELEMENTS (patterns); ++i) + { +@@ -225,6 +247,49 @@ cwd_of_pid (int pid) + return working_dir; + } + } ++#else ++ int fgpid = pid; ++#if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) ++#ifndef HAVE_KINFO_GETFILE ++ name[0] = CTL_KERN; ++ name[1] = KERN_PROC; ++ name[2] = KERN_PROC_FILEDESC; ++ name[3] = fgpid; ++ ++ if (sysctl (name, 4, NULL, &len, NULL, 0) < 0) ++ return NULL; ++ freep = kif = g_malloc (len); ++ if (sysctl (name, 4, kif, &len, NULL, 0) < 0) ++ { ++ g_free (freep); ++ return NULL; ++ } ++#else ++ freep = kinfo_getfile (fgpid, &cnt); ++#endif /* HAVE_KINFO_GETFILE */ ++ ++#ifndef HAVE_KINFO_GETFILE ++ for (i = 0; i < len / sizeof (*kif); i++, kif++) ++ { ++ if (kif->kf_structsize != sizeof (*kif)) ++ continue; ++#else ++ for (i = 0; i < cnt; i++) ++ { ++ kif = &freep[i]; ++#endif /* HAVE_KINFO_GETFILE */ ++ if (kif->kf_fd == KF_FD_TYPE_CWD) ++ { ++ char *working_dir; ++ ++ working_dir = g_strdup (kif->kf_path); ++ g_free (freep); ++ return working_dir; ++ } ++ } ++ g_free (freep); ++#endif /* __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) */ ++#endif /* __FreeBSD__ */ + + return NULL; + } diff --git a/x11/gnome-terminal3/pkg-descr b/x11/gnome-terminal3/pkg-descr new file mode 100644 index 000000000..1193c30f7 --- /dev/null +++ b/x11/gnome-terminal3/pkg-descr @@ -0,0 +1,3 @@ +Default terminal emulator for the GNOME 2.0 Desktop. + +WWW: http://www.gnome.org/ diff --git a/x11/gnome-terminal3/pkg-plist b/x11/gnome-terminal3/pkg-plist new file mode 100644 index 000000000..9f9d4b32d --- /dev/null +++ b/x11/gnome-terminal3/pkg-plist @@ -0,0 +1,289 @@ +bin/gnome-terminal +share/applications/gnome-terminal.desktop +%%DATADIR%%/encodings-dialog.ui +%%DATADIR%%/find-dialog.ui +%%DATADIR%%/keybinding-editor.ui +%%DATADIR%%/profile-manager.ui +%%DATADIR%%/profile-new-dialog.ui +%%DATADIR%%/profile-preferences.ui +%%DATADIR%%/terminal.about +%%DATADIR%%/terminal.xml +share/gnome/help/gnome-terminal/C/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/C/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/C/gnome-terminal.xml +share/gnome/help/gnome-terminal/C/legal.xml +share/gnome/help/gnome-terminal/bg/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/bg/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/bg/gnome-terminal.xml +share/gnome/help/gnome-terminal/bg/legal.xml +share/gnome/help/gnome-terminal/ca/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/ca/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/ca/gnome-terminal.xml +share/gnome/help/gnome-terminal/cs/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/cs/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/cs/gnome-terminal.xml +share/gnome/help/gnome-terminal/da/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/da/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/da/gnome-terminal.xml +share/gnome/help/gnome-terminal/de/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/de/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/de/gnome-terminal.xml +share/gnome/help/gnome-terminal/el/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/el/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/el/gnome-terminal.xml +share/gnome/help/gnome-terminal/en_GB/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/en_GB/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/en_GB/gnome-terminal.xml +share/gnome/help/gnome-terminal/es/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/es/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/es/gnome-terminal.xml +share/gnome/help/gnome-terminal/fr/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/fr/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/fr/gnome-terminal.xml +share/gnome/help/gnome-terminal/it/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/it/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/it/gnome-terminal.xml +share/gnome/help/gnome-terminal/ja/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/ja/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/ja/gnome-terminal.xml +share/gnome/help/gnome-terminal/ja/legal.xml +share/gnome/help/gnome-terminal/ko/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/ko/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/ko/gnome-terminal.xml +share/gnome/help/gnome-terminal/oc/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/oc/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/oc/gnome-terminal.xml +share/gnome/help/gnome-terminal/pt_BR/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/pt_BR/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/pt_BR/gnome-terminal.xml +share/gnome/help/gnome-terminal/ro/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/ro/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/ro/gnome-terminal.xml +share/gnome/help/gnome-terminal/ro/legal.xml +share/gnome/help/gnome-terminal/ru/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/ru/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/ru/gnome-terminal.xml +share/gnome/help/gnome-terminal/sl/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/sl/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/sl/gnome-terminal.xml +share/gnome/help/gnome-terminal/sv/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/sv/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/sv/gnome-terminal.xml +share/gnome/help/gnome-terminal/uk/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/uk/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/uk/gnome-terminal.xml +share/gnome/help/gnome-terminal/zh_CN/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/zh_CN/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/zh_CN/gnome-terminal.xml +share/gnome/help/gnome-terminal/zh_TW/figures/gnome-terminal-default.png +share/gnome/help/gnome-terminal/zh_TW/figures/gnome-terminal-tabbed.png +share/gnome/help/gnome-terminal/zh_TW/gnome-terminal.xml +share/gnome/help/gnome-terminal/zh_TW/legal.xml +share/locale/am/LC_MESSAGES/gnome-terminal.mo +share/locale/ar/LC_MESSAGES/gnome-terminal.mo +share/locale/as/LC_MESSAGES/gnome-terminal.mo +share/locale/ast/LC_MESSAGES/gnome-terminal.mo +share/locale/az/LC_MESSAGES/gnome-terminal.mo +share/locale/be/LC_MESSAGES/gnome-terminal.mo +share/locale/be@latin/LC_MESSAGES/gnome-terminal.mo +share/locale/bg/LC_MESSAGES/gnome-terminal.mo +share/locale/bn/LC_MESSAGES/gnome-terminal.mo +share/locale/bn_IN/LC_MESSAGES/gnome-terminal.mo +share/locale/br/LC_MESSAGES/gnome-terminal.mo +share/locale/bs/LC_MESSAGES/gnome-terminal.mo +share/locale/ca/LC_MESSAGES/gnome-terminal.mo +share/locale/ca@valencia/LC_MESSAGES/gnome-terminal.mo +share/locale/cs/LC_MESSAGES/gnome-terminal.mo +share/locale/cy/LC_MESSAGES/gnome-terminal.mo +share/locale/da/LC_MESSAGES/gnome-terminal.mo +share/locale/de/LC_MESSAGES/gnome-terminal.mo +share/locale/dz/LC_MESSAGES/gnome-terminal.mo +share/locale/el/LC_MESSAGES/gnome-terminal.mo +share/locale/en_CA/LC_MESSAGES/gnome-terminal.mo +share/locale/en_GB/LC_MESSAGES/gnome-terminal.mo +share/locale/eo/LC_MESSAGES/gnome-terminal.mo +share/locale/es/LC_MESSAGES/gnome-terminal.mo +share/locale/et/LC_MESSAGES/gnome-terminal.mo +share/locale/en@shaw/LC_MESSAGES/gnome-terminal.mo +share/locale/eu/LC_MESSAGES/gnome-terminal.mo +share/locale/fa/LC_MESSAGES/gnome-terminal.mo +share/locale/fi/LC_MESSAGES/gnome-terminal.mo +share/locale/fr/LC_MESSAGES/gnome-terminal.mo +share/locale/fur/LC_MESSAGES/gnome-terminal.mo +share/locale/ga/LC_MESSAGES/gnome-terminal.mo +share/locale/gl/LC_MESSAGES/gnome-terminal.mo +share/locale/gu/LC_MESSAGES/gnome-terminal.mo +share/locale/he/LC_MESSAGES/gnome-terminal.mo +share/locale/hi/LC_MESSAGES/gnome-terminal.mo +share/locale/hr/LC_MESSAGES/gnome-terminal.mo +share/locale/hu/LC_MESSAGES/gnome-terminal.mo +share/locale/hy/LC_MESSAGES/gnome-terminal.mo +share/locale/id/LC_MESSAGES/gnome-terminal.mo +share/locale/it/LC_MESSAGES/gnome-terminal.mo +share/locale/ja/LC_MESSAGES/gnome-terminal.mo +share/locale/ka/LC_MESSAGES/gnome-terminal.mo +share/locale/kk/LC_MESSAGES/gnome-terminal.mo +share/locale/kn/LC_MESSAGES/gnome-terminal.mo +share/locale/ko/LC_MESSAGES/gnome-terminal.mo +share/locale/ku/LC_MESSAGES/gnome-terminal.mo +share/locale/lt/LC_MESSAGES/gnome-terminal.mo +share/locale/lv/LC_MESSAGES/gnome-terminal.mo +share/locale/mai/LC_MESSAGES/gnome-terminal.mo +share/locale/mg/LC_MESSAGES/gnome-terminal.mo +share/locale/mk/LC_MESSAGES/gnome-terminal.mo +share/locale/ml/LC_MESSAGES/gnome-terminal.mo +share/locale/mn/LC_MESSAGES/gnome-terminal.mo +share/locale/mr/LC_MESSAGES/gnome-terminal.mo +share/locale/ms/LC_MESSAGES/gnome-terminal.mo +share/locale/nb/LC_MESSAGES/gnome-terminal.mo +share/locale/nds/LC_MESSAGES/gnome-terminal.mo +share/locale/ne/LC_MESSAGES/gnome-terminal.mo +share/locale/nl/LC_MESSAGES/gnome-terminal.mo +share/locale/nn/LC_MESSAGES/gnome-terminal.mo +share/locale/oc/LC_MESSAGES/gnome-terminal.mo +share/locale/or/LC_MESSAGES/gnome-terminal.mo +share/locale/pa/LC_MESSAGES/gnome-terminal.mo +share/locale/pl/LC_MESSAGES/gnome-terminal.mo +share/locale/ps/LC_MESSAGES/gnome-terminal.mo +share/locale/pt/LC_MESSAGES/gnome-terminal.mo +share/locale/pt_BR/LC_MESSAGES/gnome-terminal.mo +share/locale/ro/LC_MESSAGES/gnome-terminal.mo +share/locale/ru/LC_MESSAGES/gnome-terminal.mo +share/locale/rw/LC_MESSAGES/gnome-terminal.mo +share/locale/si/LC_MESSAGES/gnome-terminal.mo +share/locale/sk/LC_MESSAGES/gnome-terminal.mo +share/locale/sl/LC_MESSAGES/gnome-terminal.mo +share/locale/sq/LC_MESSAGES/gnome-terminal.mo +share/locale/sr/LC_MESSAGES/gnome-terminal.mo +share/locale/sr@latin/LC_MESSAGES/gnome-terminal.mo +share/locale/sv/LC_MESSAGES/gnome-terminal.mo +share/locale/ta/LC_MESSAGES/gnome-terminal.mo +share/locale/te/LC_MESSAGES/gnome-terminal.mo +share/locale/th/LC_MESSAGES/gnome-terminal.mo +share/locale/tr/LC_MESSAGES/gnome-terminal.mo +share/locale/ug/LC_MESSAGES/gnome-terminal.mo +share/locale/uk/LC_MESSAGES/gnome-terminal.mo +share/locale/vi/LC_MESSAGES/gnome-terminal.mo +share/locale/wa/LC_MESSAGES/gnome-terminal.mo +share/locale/xh/LC_MESSAGES/gnome-terminal.mo +share/locale/zh_CN/LC_MESSAGES/gnome-terminal.mo +share/locale/zh_HK/LC_MESSAGES/gnome-terminal.mo +share/locale/zh_TW/LC_MESSAGES/gnome-terminal.mo +share/omf/gnome-terminal/gnome-terminal-C.omf +share/omf/gnome-terminal/gnome-terminal-bg.omf +share/omf/gnome-terminal/gnome-terminal-ca.omf +share/omf/gnome-terminal/gnome-terminal-cs.omf +share/omf/gnome-terminal/gnome-terminal-da.omf +share/omf/gnome-terminal/gnome-terminal-de.omf +share/omf/gnome-terminal/gnome-terminal-el.omf +share/omf/gnome-terminal/gnome-terminal-en_GB.omf +share/omf/gnome-terminal/gnome-terminal-es.omf +share/omf/gnome-terminal/gnome-terminal-fr.omf +share/omf/gnome-terminal/gnome-terminal-it.omf +share/omf/gnome-terminal/gnome-terminal-ja.omf +share/omf/gnome-terminal/gnome-terminal-ko.omf +share/omf/gnome-terminal/gnome-terminal-oc.omf +share/omf/gnome-terminal/gnome-terminal-pt_BR.omf +share/omf/gnome-terminal/gnome-terminal-ro.omf +share/omf/gnome-terminal/gnome-terminal-ru.omf +share/omf/gnome-terminal/gnome-terminal-sl.omf +share/omf/gnome-terminal/gnome-terminal-sv.omf +share/omf/gnome-terminal/gnome-terminal-uk.omf +share/omf/gnome-terminal/gnome-terminal-zh_CN.omf +share/omf/gnome-terminal/gnome-terminal-zh_TW.omf +@dirrm share/omf/gnome-terminal +@dirrm share/gnome/help/gnome-terminal/zh_TW/figures +@dirrm share/gnome/help/gnome-terminal/zh_TW +@dirrm share/gnome/help/gnome-terminal/zh_CN/figures +@dirrm share/gnome/help/gnome-terminal/zh_CN +@dirrm share/gnome/help/gnome-terminal/uk/figures +@dirrm share/gnome/help/gnome-terminal/uk +@dirrm share/gnome/help/gnome-terminal/sv/figures +@dirrm share/gnome/help/gnome-terminal/sv +@dirrm share/gnome/help/gnome-terminal/sl/figures +@dirrm share/gnome/help/gnome-terminal/sl +@dirrm share/gnome/help/gnome-terminal/ru/figures +@dirrm share/gnome/help/gnome-terminal/ru +@dirrm share/gnome/help/gnome-terminal/ro/figures +@dirrm share/gnome/help/gnome-terminal/ro +@dirrm share/gnome/help/gnome-terminal/pt_BR/figures +@dirrm share/gnome/help/gnome-terminal/pt_BR +@dirrm share/gnome/help/gnome-terminal/oc/figures +@dirrm share/gnome/help/gnome-terminal/oc +@dirrm share/gnome/help/gnome-terminal/ko/figures +@dirrm share/gnome/help/gnome-terminal/ko +@dirrm share/gnome/help/gnome-terminal/ja/figures +@dirrm share/gnome/help/gnome-terminal/ja +@dirrm share/gnome/help/gnome-terminal/it/figures +@dirrm share/gnome/help/gnome-terminal/it +@dirrm share/gnome/help/gnome-terminal/fr/figures +@dirrm share/gnome/help/gnome-terminal/fr +@dirrm share/gnome/help/gnome-terminal/es/figures +@dirrm share/gnome/help/gnome-terminal/es +@dirrm share/gnome/help/gnome-terminal/en_GB/figures +@dirrm share/gnome/help/gnome-terminal/en_GB +@dirrm share/gnome/help/gnome-terminal/el/figures +@dirrm share/gnome/help/gnome-terminal/el +@dirrm share/gnome/help/gnome-terminal/de/figures +@dirrm share/gnome/help/gnome-terminal/de +@dirrm share/gnome/help/gnome-terminal/da/figures +@dirrm share/gnome/help/gnome-terminal/da +@dirrm share/gnome/help/gnome-terminal/cs/figures +@dirrm share/gnome/help/gnome-terminal/cs +@dirrm share/gnome/help/gnome-terminal/ca/figures +@dirrm share/gnome/help/gnome-terminal/ca +@dirrm share/gnome/help/gnome-terminal/bg/figures +@dirrm share/gnome/help/gnome-terminal/bg +@dirrm share/gnome/help/gnome-terminal/C/figures +@dirrm share/gnome/help/gnome-terminal/C +@dirrm share/gnome/help/gnome-terminal +@dirrm %%DATADIR%% +@dirrmtry share/applications +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/si/LC_MESSAGES +@dirrmtry share/locale/si +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ps/LC_MESSAGES +@dirrmtry share/locale/ps +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/nds/LC_MESSAGES +@dirrmtry share/locale/nds +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/mg/LC_MESSAGES +@dirrmtry share/locale/mg +@dirrmtry share/locale/mai/LC_MESSAGES +@dirrmtry share/locale/mai +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/kk/LC_MESSAGES +@dirrmtry share/locale/kk +@dirrmtry share/locale/hy/LC_MESSAGES +@dirrmtry share/locale/hy +@dirrmtry share/locale/fur/LC_MESSAGES +@dirrmtry share/locale/fur +@dirrmtry share/locale/en@shaw/LC_MESSAGES +@dirrmtry share/locale/en@shaw +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN +@dirrmtry share/locale/be@latin/LC_MESSAGES +@dirrmtry share/locale/be@latin +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as |