diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-10-04 09:25:29 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-10-04 09:25:29 +0800 |
commit | 7b56c71c6f138686c45045838839c2946c54f6c6 (patch) | |
tree | de240dca4b3690d66651129f18dfd06a98a88483 /www | |
parent | 1cc16071a8c3d923d7c88d9be40341f0930dec85 (diff) | |
download | marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.tar marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.tar.gz marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.tar.bz2 marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.tar.lz marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.tar.xz marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.tar.zst marcuscom-ports-7b56c71c6f138686c45045838839c2946c54f6c6.zip |
Add galeon2, and fix build with mozilla-1.7.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2925 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www')
-rw-r--r-- | www/galeon2/Makefile | 103 | ||||
-rw-r--r-- | www/galeon2/distinfo | 2 | ||||
-rw-r--r-- | www/galeon2/files/galeon | 27 | ||||
-rw-r--r-- | www/galeon2/files/patch-bookmarks_bookmarks-import-druid-konqueror.c | 10 | ||||
-rw-r--r-- | www/galeon2/files/patch-configure | 16 | ||||
-rw-r--r-- | www/galeon2/files/patch-libegg_egg-toolbar-editor.c | 18 | ||||
-rw-r--r-- | www/galeon2/files/patch-mozilla_mozilla-embed.cpp | 32 | ||||
-rw-r--r-- | www/galeon2/files/patch-src_Makefile.in | 10 | ||||
-rw-r--r-- | www/galeon2/files/patch-src_galeon-encoding-dialog.c | 15 | ||||
-rw-r--r-- | www/galeon2/files/patch-src_galeon-main.c | 11 | ||||
-rw-r--r-- | www/galeon2/files/patch-src_popup-commands.c | 15 | ||||
-rw-r--r-- | www/galeon2/files/patch-ui_Makefile.in | 12 | ||||
-rw-r--r-- | www/galeon2/pkg-descr | 4 | ||||
-rw-r--r-- | www/galeon2/pkg-plist | 232 |
14 files changed, 507 insertions, 0 deletions
diff --git a/www/galeon2/Makefile b/www/galeon2/Makefile new file mode 100644 index 000000000..1e878d719 --- /dev/null +++ b/www/galeon2/Makefile @@ -0,0 +1,103 @@ +# Ports collection Makefile for: galeon2 +# Date created: 16 November 2002 +# Whom: Maxime Romano <verbophobe@jewcrew.org> +# +# $FreeBSD: ports/www/galeon2/Makefile,v 1.151 2004/08/14 18:56:20 marcus Exp $ +# + +PORTNAME= galeon2 +PORTVERSION= 1.3.17 +PORTREVISION= 2 +CATEGORIES= www gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://osdn.dl.sourceforge.net/sourceforge/galeon/ +MASTER_SITE_SUBDIR= ${PORTNAME:S/2$//} +DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION} + +MAINTAINER= gnome@freebsd.org +COMMENT= A GNOME 2 Web browser based on gecko (the Mozilla rendering engine) + +BUILD_DEPENDS= ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA} +RUN_DEPENDS= ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA} + +MOZILLA= mozilla +HEADERS_SUFX= + +.if !defined(WITH_MOZILLA) +MOZILLA= mozilla +HEADERS_SUFX= +.else +.if ${WITH_MOZILLA}=="mozilla-devel" || ${WITH_MOZILLA}=="mozilla-devel-gtk2" +MOZILLA= mozilla-devel +HEADERS_SUFX= -devel +.else +MOZILLA= mozilla +HEADERS_SUFX= +.endif +.endif + +WRKSRC= ${WRKDIR}/${PORTNAME:S/2$//}-${PORTVERSION:S/a$//} +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_GNOME= gnomeprefix intlhack gnomehack libgnomeui desktopfileutils +USE_LIBTOOL_VER=15 +USE_GMAKE= yes +USE_REINPLACE= yes +CONFIGURE_ARGS= --with-mozilla-includes="${X11BASE}/include/mozilla${HEADERS_SUFX}" \ + --with-mozilla-libs="${X11BASE}/lib/${MOZILLA}" \ + --enable-nautilus-view=no +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + +MAN1= galeon.1 + +FLASHPLAYER= ${LOCALBASE}/lib/libflashplayer.so.1 + +CONFLICTS= galeon-* + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 500000 +# Galeon does not build correctly in -CURRENT if -Werror is passed +# to the compiler. +NO_WERROR= yes +.endif +# allow build with more warnings enabled +.if defined(NO_WERROR) +CONFIGURE_ARGS+= --disable-werror +.endif + +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} " By default the port uses www/mozilla for html rendering, but you can" + @${ECHO_MSG} " change this by defining WITH_MOZILLA to one of the following values:" + @${ECHO_MSG} + @${ECHO_MSG} " mozilla-devel " + @${ECHO_MSG} "" + +post-patch: + @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|mozilla-gtkmozembed${HEADERS_SUFX}|g' \ + ${WRKSRC}/configure + @${FIND} ${WRKSRC} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-lpthread|${PTHREAD_LIBS}|g' + @${FIND} ${WRKSRC} -name "*.cpp" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|malloc\.h|stdlib.h|g' + @${REINPLACE_CMD} -e 's|@prefix@/@DATADIRNAME@|@datadir@|g' \ + ${WRKSRC}/ui/galeon-bookmarks-editor-ui.xml.in + +post-configure: + @${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; \ + s|%%LOCALBASE%%|${LOCALBASE}|g ; \ + s|%%X11BASE%%|${X11BASE}|g ; \ + s|%%MOZILLA%%|${MOZILLA}|g ; \ + s|%%FLASHPLAYER%%|${FLASHPLAYER}|g' < ${FILESDIR}/galeon \ + > ${WRKDIR}/galeon + +pre-install: + @-${X11BASE}/bin/gconftool-2 --shutdown + +post-install: + @${MV} -f ${PREFIX}/bin/galeon ${PREFIX}/bin/galeon-bin + ${INSTALL_SCRIPT} ${WRKDIR}/galeon ${PREFIX}/bin + +.include <bsd.port.post.mk> diff --git a/www/galeon2/distinfo b/www/galeon2/distinfo new file mode 100644 index 000000000..f563b8b23 --- /dev/null +++ b/www/galeon2/distinfo @@ -0,0 +1,2 @@ +MD5 (galeon-1.3.17.tar.bz2) = 781ac1c9e15fa4c2b367b195e78d1ab2 +SIZE (galeon-1.3.17.tar.bz2) = 3635524 diff --git a/www/galeon2/files/galeon b/www/galeon2/files/galeon new file mode 100644 index 000000000..4b824adf0 --- /dev/null +++ b/www/galeon2/files/galeon @@ -0,0 +1,27 @@ +#!/bin/sh + +dist_bin=`dirname $0` + +MOZILLA_HOME=%%X11BASE%%/lib/%%MOZILLA%% + +if [ -z "$MOZ_PLUGIN_PATH" ]; then + MOZ_PLUGIN_PATH=%%PREFIX%%/lib/browser_plugins + export MOZ_PLUGIN_PATH +fi + +if [ -n "$LD_LIBRARY_PATH" ]; then + LD_LIBRARY_PATH=$MOZILLA_HOME:$LD_LIBRARY_PATH +else + LD_LIBRARY_PATH=$MOZILLA_HOME +fi +export LD_LIBRARY_PATH + +MOZILLA_FIVE_HOME=$MOZILLA_HOME +export MOZILLA_FIVE_HOME + +if [ -f %%LOCALBASE%%/lib/libflashplayer.so.1 ]; then + LD_PRELOAD=%%LOCALBASE%%/lib/libflashplayer.so.1 + export LD_PRELOAD +fi + +exec "%%PREFIX%%/bin/galeon-bin" "$@" diff --git a/www/galeon2/files/patch-bookmarks_bookmarks-import-druid-konqueror.c b/www/galeon2/files/patch-bookmarks_bookmarks-import-druid-konqueror.c new file mode 100644 index 000000000..0400ebcf4 --- /dev/null +++ b/www/galeon2/files/patch-bookmarks_bookmarks-import-druid-konqueror.c @@ -0,0 +1,10 @@ +--- bookmarks/bookmarks-import-druid-konqueror.c.orig Tue Mar 30 16:33:05 2004 ++++ bookmarks/bookmarks-import-druid-konqueror.c Mon May 31 23:35:26 2004 +@@ -20,6 +20,7 @@ + #include "config.h" + #endif + ++#include <sys/types.h> + #include <glib/gi18n.h> + #include "bookmarks-import-druid-konqueror.h" + #include "gul-gobject-misc.h" diff --git a/www/galeon2/files/patch-configure b/www/galeon2/files/patch-configure new file mode 100644 index 000000000..c9c3f468c --- /dev/null +++ b/www/galeon2/files/patch-configure @@ -0,0 +1,16 @@ +--- configure.orig Mon Aug 9 23:57:15 2004 ++++ configure Mon Aug 9 23:57:15 2004 +@@ -22744,11 +22744,11 @@ + echo "$as_me:$LINENO: result: $MOZILLA_VERSION$autodetect" >&5 + echo "${ECHO_T}$MOZILLA_VERSION$autodetect" >&6 + +-if test $MOZILLA_VERSION == "trunk"; then ++if test $MOZILLA_VERSION = "trunk"; then + MOZILLA_VERSION=99.0 # use a high number + fi + +-version=$(echo $MOZILLA_VERSION | sed -e 's/\([0-9]\+\|[a-z]\+\)/\1 /g' -e 's/\.//g') ++version=$(echo $MOZILLA_VERSION | sed -E -e 's/([0-9]+|[a-z]+)/\1 /g' -e 's/\.//g') + + set -- $version; + diff --git a/www/galeon2/files/patch-libegg_egg-toolbar-editor.c b/www/galeon2/files/patch-libegg_egg-toolbar-editor.c new file mode 100644 index 000000000..e0a4fa1e3 --- /dev/null +++ b/www/galeon2/files/patch-libegg_egg-toolbar-editor.c @@ -0,0 +1,18 @@ +--- libegg/egg-toolbar-editor.c.orig Sat Jul 3 16:37:44 2004 ++++ libegg/egg-toolbar-editor.c Sat Jul 3 16:38:00 2004 +@@ -102,12 +102,12 @@ + static gint + compare_actions (gconstpointer a, gconstpointer b) + { +- g_return_val_if_fail (GTK_IS_ACTION (a), 0); +- g_return_val_if_fail (GTK_IS_ACTION (b), 0); +- + GValue value_a = { 0, }, value_b = { 0, }; + const char *short_label_a, *short_label_b; + int ret; ++ ++ g_return_val_if_fail (GTK_IS_ACTION (a), 0); ++ g_return_val_if_fail (GTK_IS_ACTION (b), 0); + + g_value_init (&value_a, G_TYPE_STRING); + g_object_get_property (G_OBJECT (a), "short_label", &value_a); diff --git a/www/galeon2/files/patch-mozilla_mozilla-embed.cpp b/www/galeon2/files/patch-mozilla_mozilla-embed.cpp new file mode 100644 index 000000000..39d7c1a09 --- /dev/null +++ b/www/galeon2/files/patch-mozilla_mozilla-embed.cpp @@ -0,0 +1,32 @@ +--- mozilla/mozilla-embed.cpp.orig Sun Oct 3 20:39:54 2004 ++++ mozilla/mozilla-embed.cpp Sun Oct 3 20:45:47 2004 +@@ -961,7 +961,7 @@ + + + #if MOZILLA_CHECK_VERSION4 (1,8,MOZILLA_ALPHA,3) || \ +- (MOZILLA_IS_BRANCH (1,7) && MOZILLA_CHECK_VERSION3(1,7,3)) ++ (MOZILLA_IS_BRANCH (1,7) && MOZILLA_CHECK_VERSION3(1,7,3)) + gtk_moz_embed_reload (GTK_MOZ_EMBED(embed), reloadFlags); + return G_OK; + #else +@@ -1388,7 +1388,8 @@ + rv = wrapper->ForceEncoding (charset); + if (NS_FAILED (rv)) return G_FAILED; + +-#if MOZILLA_CHECK_VERSION4 (1,8,MOZILLA_ALPHA,3) ++#if MOZILLA_CHECK_VERSION4 (1,8,MOZILLA_ALPHA,3) || \ ++ (MOZILLA_IS_BRANCH (1,7) && MOZILLA_CHECK_VERSION3(1,7,3)) + gtk_moz_embed_reload (GTK_MOZ_EMBED (embed), + GTK_MOZ_EMBED_FLAG_RELOADCHARSETCHANGE); + #else +@@ -1700,10 +1701,8 @@ + if (NS_SUCCEEDED(rv) && + ((info->keycode == nsIDOMKeyEvent::DOM_VK_F10 && + info->modifier == GDK_SHIFT_MASK) +-#if MOZILLA_CHECK_VERSION4(1,7,MOZILLA_BETA,0) + || (info->keycode == nsIDOMKeyEvent::DOM_VK_CONTEXT_MENU && + !info->modifier) +-#endif + )) + { + // Translate relative coordinates to absolute values, and try diff --git a/www/galeon2/files/patch-src_Makefile.in b/www/galeon2/files/patch-src_Makefile.in new file mode 100644 index 000000000..3c75398d9 --- /dev/null +++ b/www/galeon2/files/patch-src_Makefile.in @@ -0,0 +1,10 @@ +--- src/Makefile.in.orig Thu Dec 18 15:12:38 2003 ++++ src/Makefile.in Thu Dec 18 15:13:13 2003 +@@ -206,6 +206,7 @@ + -I$(top_srcdir)/bookmarks \ + $(GALEON_DEPENDENCY_CFLAGS) \ + -DSHARE_DIR=\"$(pkgdatadir)\" \ ++ -DGNOMELOCALEDIR=\""$(prefix)/share/locale"\" \ + -DDATADIR=\""$(datadir)"\" + + diff --git a/www/galeon2/files/patch-src_galeon-encoding-dialog.c b/www/galeon2/files/patch-src_galeon-encoding-dialog.c new file mode 100644 index 000000000..674069940 --- /dev/null +++ b/www/galeon2/files/patch-src_galeon-encoding-dialog.c @@ -0,0 +1,15 @@ +--- src/galeon-encoding-dialog.c.orig Sat Jul 3 16:45:02 2004 ++++ src/galeon-encoding-dialog.c Sat Jul 3 16:45:11 2004 +@@ -282,10 +282,10 @@ + tree_view_selection_changed_cb (GtkTreeSelection *selection, + GaleonEncodingDialog *dialog) + { +- if (dialog->priv->update_tag == TRUE) return; +- + GtkTreeModel *model; + GtkTreeIter iter; ++ ++ if (dialog->priv->update_tag == TRUE) return; + + if (gtk_tree_selection_get_selected (selection, &model, &iter)) + { diff --git a/www/galeon2/files/patch-src_galeon-main.c b/www/galeon2/files/patch-src_galeon-main.c new file mode 100644 index 000000000..777907e0e --- /dev/null +++ b/www/galeon2/files/patch-src_galeon-main.c @@ -0,0 +1,11 @@ +--- src/galeon-main.c.orig Thu Sep 11 01:11:30 2003 ++++ src/galeon-main.c Thu Sep 11 01:12:31 2003 +@@ -130,7 +130,7 @@ + #ifdef ENABLE_NLS + /* Initialize the i18n stuff */ + setlocale(LC_ALL, ""); +- bindtextdomain(GETTEXT_PACKAGE, DATADIR "/locale"); ++ bindtextdomain(GETTEXT_PACKAGE, GNOMELOCALEDIR); + textdomain(GETTEXT_PACKAGE); + #endif + /* set the application name manually until gnome handles the diff --git a/www/galeon2/files/patch-src_popup-commands.c b/www/galeon2/files/patch-src_popup-commands.c new file mode 100644 index 000000000..510f87bc6 --- /dev/null +++ b/www/galeon2/files/patch-src_popup-commands.c @@ -0,0 +1,15 @@ +--- src/popup-commands.c.orig Tue Aug 10 00:31:14 2004 ++++ src/popup-commands.c Tue Aug 10 00:31:21 2004 +@@ -333,11 +333,11 @@ + GaleonPopup *popup) + { + GaleonEmbed *embed; ++ char *location; + + embed = galeon_popup_get_embed (popup); + g_return_if_fail (GALEON_IS_EMBED (embed)); + +- char *location; + galeon_embed_get_location (embed, FALSE, FALSE, &location); + popup_copy_to_clipboard (popup, location); + g_free (location); diff --git a/www/galeon2/files/patch-ui_Makefile.in b/www/galeon2/files/patch-ui_Makefile.in new file mode 100644 index 000000000..9e87b8029 --- /dev/null +++ b/www/galeon2/files/patch-ui_Makefile.in @@ -0,0 +1,12 @@ +--- ui/Makefile.in.orig Fri Jan 23 01:48:25 2004 ++++ ui/Makefile.in Fri Jan 23 01:48:55 2004 +@@ -265,8 +265,7 @@ + uidir = $(pkgdatadir) + + uixmldir = $(datadir)/gnome-2.0/ui +-uixml_in_files = galeon-bookmarks-editor-ui.xml.in \ +- nautilus-galeon-view-ui.xml.in ++uixml_in_files = galeon-bookmarks-editor-ui.xml.in + + + uixml_DATA = $(uixml_in_files:.xml.in=.xml) diff --git a/www/galeon2/pkg-descr b/www/galeon2/pkg-descr new file mode 100644 index 000000000..9a4205386 --- /dev/null +++ b/www/galeon2/pkg-descr @@ -0,0 +1,4 @@ +Galeon is a GNOME 2 Web browser based on Gecko (the mozilla rendering engine). +It's fast, it has a light interface, and it is fully standards-compliant. + +WWW: http://galeon.sourceforge.net/ diff --git a/www/galeon2/pkg-plist b/www/galeon2/pkg-plist new file mode 100644 index 000000000..ccc5012ea --- /dev/null +++ b/www/galeon2/pkg-plist @@ -0,0 +1,232 @@ +bin/galeon +bin/galeon-bin +bin/galeon-config-tool +@unexec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-uninstall-rule %D/etc/gconf/schemas/galeon.schemas > /dev/null || /usr/bin/true +etc/gconf/schemas/galeon.schemas +@exec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-install-rule %D/etc/gconf/schemas/galeon.schemas > /dev/null || /usr/bin/true +etc/sound/events/galeon.soundlist +lib/galeon/components/libgaleon-xpcom.a +lib/galeon/components/libgaleon-xpcom.so +libdata/bonobo/servers/GNOME_Galeon_Automation.server +libdata/bonobo/servers/GNOME_Galeon_NautilusView.server +share/gnome/applications/galeon.desktop +@exec update-desktop-database > /dev/null || /usr/bin/true +share/gnome/galeon/FAQ.html +share/gnome/galeon/about_logo.png +share/gnome/galeon/autoscroll.xpm +share/gnome/galeon/bookmarks-editor-small.glade +share/gnome/galeon/bookmarks-editor.glade +share/gnome/galeon/bookmarks.glade +share/gnome/galeon/bug.png +share/gnome/galeon/certificate-dialogs.glade +share/gnome/galeon/debian.png +share/gnome/galeon/default-bookmarks.xbel +share/gnome/galeon/default-prefs.js +share/gnome/galeon/fetch_favicon.xpm +share/gnome/galeon/freshmeat.png +share/gnome/galeon/galeon-bookmark-alias-mark.png +share/gnome/galeon/galeon-bookmark.png +share/gnome/galeon/galeon-default.png +share/gnome/galeon/galeon-download.png +share/gnome/galeon/galeon-egg-ui-toolbar.xml +share/gnome/galeon/galeon-egg-ui.xml +share/gnome/galeon/galeon-folder.png +share/gnome/galeon/galeon-history.png +share/gnome/galeon/galeon-insecure.png +share/gnome/galeon/galeon-popup-blocked.png +share/gnome/galeon/galeon-prefs-fonts.png +share/gnome/galeon/galeon-prefs-general.png +share/gnome/galeon/galeon-prefs-language.png +share/gnome/galeon/galeon-prefs-mouse.png +share/gnome/galeon/galeon-prefs-network.png +share/gnome/galeon/galeon-prefs-privacy.png +share/gnome/galeon/galeon-prefs-tabs.png +share/gnome/galeon/galeon-prefs-web-content.png +share/gnome/galeon/galeon-secure.png +share/gnome/galeon/galeon-separator.png +share/gnome/galeon/galeon-tab-loading.gif +share/gnome/galeon/galeon.glade +share/gnome/galeon/galeon.png +share/gnome/galeon/gnu.png +share/gnome/galeon/google.png +share/gnome/galeon/google_groups.png +share/gnome/galeon/google_images.png +share/gnome/galeon/hand-open.png +share/gnome/galeon/imdb_movies.png +share/gnome/galeon/logo.png +share/gnome/galeon/myportal.css +share/gnome/galeon/new_alias.xpm +share/gnome/galeon/new_alias_small.xpm +share/gnome/galeon/new_folder.xpm +share/gnome/galeon/new_folder_small.xpm +share/gnome/galeon/new_item.xpm +share/gnome/galeon/new_item_small.xpm +share/gnome/galeon/new_separator.xpm +share/gnome/galeon/new_separator_small.xpm +share/gnome/galeon/prefs-dialog.glade +share/gnome/galeon/print.glade +share/gnome/galeon/rpm.png +share/gnome/galeon/slack.png +share/gnome/galeon/smart-bm-fold.png +share/gnome/galeon/smart-bm-unfold.png +share/gnome/galeon/stocks.png +share/gnome/gnome-2.0/ui/galeon-bookmarks-editor-ui.xml +share/gnome/help/galeon/C/apx-authors.xml +share/gnome/help/galeon/C/apx-bugs.xml +share/gnome/help/galeon/C/apx-command-line.xml +share/gnome/help/galeon/C/apx-compiling.xml +share/gnome/help/galeon/C/apx-keyboard-shortcuts.xml +share/gnome/help/galeon/C/apx-mouse-gestures.xml +share/gnome/help/galeon/C/apx-troubleshooting.xml +share/gnome/help/galeon/C/bookmarks.xml +share/gnome/help/galeon/C/browser-window.xml +share/gnome/help/galeon/C/figures/bookmarks-editor.png +share/gnome/help/galeon/C/figures/browser-window.png +share/gnome/help/galeon/C/figures/find-dialog.png +share/gnome/help/galeon/C/figures/gesture-back.png +share/gnome/help/galeon/C/figures/gesture-clone-tab.png +share/gnome/help/galeon/C/figures/gesture-clone-window.png +share/gnome/help/galeon/C/figures/gesture-close-2.png +share/gnome/help/galeon/C/figures/gesture-close.png +share/gnome/help/galeon/C/figures/gesture-contents.png +share/gnome/help/galeon/C/figures/gesture-forward.png +share/gnome/help/galeon/C/figures/gesture-fullscreen.png +share/gnome/help/galeon/C/figures/gesture-homepage.png +share/gnome/help/galeon/C/figures/gesture-new-tab.png +share/gnome/help/galeon/C/figures/gesture-new-window.png +share/gnome/help/galeon/C/figures/gesture-next-link.png +share/gnome/help/galeon/C/figures/gesture-next-tab.png +share/gnome/help/galeon/C/figures/gesture-prev-link.png +share/gnome/help/galeon/C/figures/gesture-prev-tab.png +share/gnome/help/galeon/C/figures/gesture-reload-bypass.png +share/gnome/help/galeon/C/figures/gesture-reload.png +share/gnome/help/galeon/C/figures/gesture-stop.png +share/gnome/help/galeon/C/figures/gesture-up.png +share/gnome/help/galeon/C/figures/gesture-view-source.png +share/gnome/help/galeon/C/figures/othertools-history.png +share/gnome/help/galeon/C/figures/othertools-pdm.png +share/gnome/help/galeon/C/figures/othertools-toolbar-editor.png +share/gnome/help/galeon/C/figures/statusbar.png +share/gnome/help/galeon/C/figures/tabbed-browsing.png +share/gnome/help/galeon/C/figures/toolbars-bookmarks.png +share/gnome/help/galeon/C/figures/toolbars-main.png +share/gnome/help/galeon/C/galeon.xml +share/gnome/help/galeon/C/getting-started.xml +share/gnome/help/galeon/C/other-tools.xml +share/gnome/help/galeon/C/plugins.xml +share/gnome/help/galeon/C/preface.xml +share/gnome/help/galeon/C/preferences.xml +share/gnome/help/galeon/es/apx-authors.xml +share/gnome/help/galeon/es/apx-bugs.xml +share/gnome/help/galeon/es/apx-command-line.xml +share/gnome/help/galeon/es/apx-compiling.xml +share/gnome/help/galeon/es/apx-keyboard-shortcuts.xml +share/gnome/help/galeon/es/apx-mouse-gestures.xml +share/gnome/help/galeon/es/apx-troubleshooting.xml +share/gnome/help/galeon/es/bookmarks.xml +share/gnome/help/galeon/es/browser-window.xml +share/gnome/help/galeon/es/figures/bookmarks-editor.png +share/gnome/help/galeon/es/figures/browser-window.png +share/gnome/help/galeon/es/figures/find-dialog.png +share/gnome/help/galeon/es/figures/gesture-back.png +share/gnome/help/galeon/es/figures/gesture-clone-tab.png +share/gnome/help/galeon/es/figures/gesture-clone-window.png +share/gnome/help/galeon/es/figures/gesture-close-2.png +share/gnome/help/galeon/es/figures/gesture-close.png +share/gnome/help/galeon/es/figures/gesture-contents.png +share/gnome/help/galeon/es/figures/gesture-forward.png +share/gnome/help/galeon/es/figures/gesture-fullscreen.png +share/gnome/help/galeon/es/figures/gesture-homepage.png +share/gnome/help/galeon/es/figures/gesture-new-tab.png +share/gnome/help/galeon/es/figures/gesture-new-window.png +share/gnome/help/galeon/es/figures/gesture-next-link.png +share/gnome/help/galeon/es/figures/gesture-next-tab.png +share/gnome/help/galeon/es/figures/gesture-prev-link.png +share/gnome/help/galeon/es/figures/gesture-prev-tab.png +share/gnome/help/galeon/es/figures/gesture-reload-bypass.png +share/gnome/help/galeon/es/figures/gesture-reload.png +share/gnome/help/galeon/es/figures/gesture-stop.png +share/gnome/help/galeon/es/figures/gesture-up.png +share/gnome/help/galeon/es/figures/gesture-view-source.png +share/gnome/help/galeon/es/figures/othertools-history.png +share/gnome/help/galeon/es/figures/othertools-pdm.png +share/gnome/help/galeon/es/figures/othertools-toolbar-editor.png +share/gnome/help/galeon/es/figures/statusbar.png +share/gnome/help/galeon/es/figures/tabbed-browsing.png +share/gnome/help/galeon/es/figures/toolbars-bookmarks.png +share/gnome/help/galeon/es/figures/toolbars-main.png +share/gnome/help/galeon/es/galeon.xml +share/gnome/help/galeon/es/getting-started.xml +share/gnome/help/galeon/es/other-tools.xml +share/gnome/help/galeon/es/plugins.xml +share/gnome/help/galeon/es/preface.xml +share/gnome/help/galeon/es/preferences.xml +share/gnome/omf/galeon/galeon-C.omf +@exec scrollkeeper-install -q %D/share/gnome/omf/galeon/galeon-C.omf 2>/dev/null || /usr/bin/true +share/gnome/omf/galeon/galeon-es.omf +@exec scrollkeeper-install -q %D/share/gnome/omf/galeon/galeon-es.omf 2>/dev/null || /usr/bin/true +share/gnome/pixmaps/galeon.png +share/gnome/sounds/galeon/clicked.wav +share/locale/am/LC_MESSAGES/galeon-2.0.mo +share/locale/az/LC_MESSAGES/galeon-2.0.mo +share/locale/be/LC_MESSAGES/galeon-2.0.mo +share/locale/bg/LC_MESSAGES/galeon-2.0.mo +share/locale/ca/LC_MESSAGES/galeon-2.0.mo +share/locale/cs/LC_MESSAGES/galeon-2.0.mo +share/locale/da/LC_MESSAGES/galeon-2.0.mo +share/locale/de/LC_MESSAGES/galeon-2.0.mo +share/locale/el/LC_MESSAGES/galeon-2.0.mo +share/locale/en_CA/LC_MESSAGES/galeon-2.0.mo +share/locale/en_GB/LC_MESSAGES/galeon-2.0.mo +share/locale/es/LC_MESSAGES/galeon-2.0.mo +share/locale/et/LC_MESSAGES/galeon-2.0.mo +share/locale/eu/LC_MESSAGES/galeon-2.0.mo +share/locale/fi/LC_MESSAGES/galeon-2.0.mo +share/locale/fr/LC_MESSAGES/galeon-2.0.mo +share/locale/ga/LC_MESSAGES/galeon-2.0.mo +share/locale/gl/LC_MESSAGES/galeon-2.0.mo +share/locale/hr/LC_MESSAGES/galeon-2.0.mo +share/locale/hu/LC_MESSAGES/galeon-2.0.mo +share/locale/it/LC_MESSAGES/galeon-2.0.mo +share/locale/ja/LC_MESSAGES/galeon-2.0.mo +share/locale/ko/LC_MESSAGES/galeon-2.0.mo +share/locale/lt/LC_MESSAGES/galeon-2.0.mo +share/locale/lv/LC_MESSAGES/galeon-2.0.mo +share/locale/mk/LC_MESSAGES/galeon-2.0.mo +share/locale/ml/LC_MESSAGES/galeon-2.0.mo +share/locale/mn/LC_MESSAGES/galeon-2.0.mo +share/locale/ms/LC_MESSAGES/galeon-2.0.mo +share/locale/nl/LC_MESSAGES/galeon-2.0.mo +share/locale/nn/LC_MESSAGES/galeon-2.0.mo +share/locale/no/LC_MESSAGES/galeon-2.0.mo +share/locale/pl/LC_MESSAGES/galeon-2.0.mo +share/locale/pt/LC_MESSAGES/galeon-2.0.mo +share/locale/pt_BR/LC_MESSAGES/galeon-2.0.mo +share/locale/ro/LC_MESSAGES/galeon-2.0.mo +share/locale/ru/LC_MESSAGES/galeon-2.0.mo +share/locale/sk/LC_MESSAGES/galeon-2.0.mo +share/locale/sl/LC_MESSAGES/galeon-2.0.mo +share/locale/sq/LC_MESSAGES/galeon-2.0.mo +share/locale/sr/LC_MESSAGES/galeon-2.0.mo +share/locale/sr@Latn/LC_MESSAGES/galeon-2.0.mo +share/locale/sv/LC_MESSAGES/galeon-2.0.mo +share/locale/ta/LC_MESSAGES/galeon-2.0.mo +share/locale/tr/LC_MESSAGES/galeon-2.0.mo +share/locale/uk/LC_MESSAGES/galeon-2.0.mo +share/locale/vi/LC_MESSAGES/galeon-2.0.mo +share/locale/wa/LC_MESSAGES/galeon-2.0.mo +share/locale/zh_CN/LC_MESSAGES/galeon-2.0.mo +share/locale/zh_TW/LC_MESSAGES/galeon-2.0.mo +@dirrm share/gnome/sounds/galeon +@dirrm share/gnome/omf/galeon +@dirrm share/gnome/help/galeon/C/figures +@dirrm share/gnome/help/galeon/C +@dirrm share/gnome/help/galeon/es/figures +@dirrm share/gnome/help/galeon/es +@dirrm share/gnome/help/galeon +@dirrm share/gnome/galeon +@dirrm lib/galeon/components +@dirrm lib/galeon +@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/galeon/galeon-C.omf 2>/dev/null || /usr/bin/true +@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/galeon/galeon-es.omf 2>/dev/null || /usr/bin/true +@unexec update-desktop-database > /dev/null || /usr/bin/true |