summaryrefslogtreecommitdiffstats
path: root/www/epiphany
diff options
context:
space:
mode:
Diffstat (limited to 'www/epiphany')
-rw-r--r--www/epiphany/Makefile108
-rw-r--r--www/epiphany/distinfo1
-rw-r--r--www/epiphany/files/patch-configure10
-rw-r--r--www/epiphany/files/patch-embed_mozilla_EphyEventListener.cpp29
-rw-r--r--www/epiphany/files/patch-embed_mozilla_EphyWrapper.cpp30
-rw-r--r--www/epiphany/files/patch-embed_mozilla_EventContext.cpp40
-rw-r--r--www/epiphany/files/patch-src_epiphany.in25
-rw-r--r--www/epiphany/pkg-descr7
-rw-r--r--www/epiphany/pkg-plist143
9 files changed, 393 insertions, 0 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile
new file mode 100644
index 000000000..b59bac3c4
--- /dev/null
+++ b/www/epiphany/Makefile
@@ -0,0 +1,108 @@
+# Ports collection Makefile for: epiphany
+# Date created: 24 April 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/www/epiphany/Makefile,v 1.30 2003/11/05 23:24:59 adamw Exp $
+#
+
+PORTNAME= epiphany
+PORTVERSION= 1.1.0
+CATEGORIES= www gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.1
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= An extremely lightweight and simple web browser for GNOME 2
+
+BUILD_DEPENDS= ${X11BASE}/include/mozilla${HEADERS_SUFX}/gtkembedmoz/gtkmozembed.h:${PORTSDIR}/www/mozilla-headers${HEADERS_SUFX} \
+ ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA}
+RUN_DEPENDS= ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA}
+
+MOZ_CONFIGURE_ARGS= --with-mozilla-snapshot="1.5"
+
+MOZILLA= mozilla-gtk2
+HEADERS_SUFX=
+
+.if !defined(WITH_MOZILLA)
+MOZILLA= mozilla-gtk2
+HEADERS_SUFX=
+.else
+.if ${WITH_MOZILLA}=="mozilla-devel-gtk2"
+MOZILLA= ${WITH_MOZILLA}
+HEADERS_SUFX= -devel
+MOZ_CONFIGURE_ARGS= --with-mozilla-snapshot="1.6a"
+.else
+MOZILLA= mozilla-gtk2
+HEADERS_SUFX=
+.endif
+.endif
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix gnomehack libgnomeui
+WANT_GNOME= yes
+USE_LIBTOOL= yes
+USE_GMAKE= yes
+USE_REINPLACE= yes
+CONFIGURE_ARGS= --with-mozilla-includes="${X11BASE}/include/mozilla${HEADERS_SUFX}" \
+ --with-mozilla-libs="${X11BASE}/lib/${MOZILLA}" \
+ ${MOZ_CONFIGURE_ARGS}
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \
+ LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+
+FLASHPLAYER= ${LOCALBASE}/lib/libflashplayer.so.1
+XXX_FILES= EphyAutomation-common.c EphyAutomation-stubs.c \
+ EphyAutomation-skels.c EphyAutomation.h
+PLIST_SUB+= EPHY_VERSION="${PORTVERSION:C/\.[0-9]+$//}"
+
+.include <bsd.port.pre.mk>
+
+.if ${HAVE_GNOME:Mnautilus2}!=""
+USE_GNOME+= nautilus2
+CONFIGURE_ARGS+= --enable-nautilus-view
+.else
+CONFIGURE_ARGS+= --enable-nautilus-view=no
+.endif
+
+.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 epiphany uses www/mozilla-gtk2 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-gtk2 "
+ @${ECHO_MSG} ""
+
+post-extract:
+.for i in ${XXX_FILES}
+ @${RM} -f ${WRKSRC}/src/${i}
+.endfor
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|mozilla-gtkmozembed${HEADERS_SUFX}-gtk2|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'
+
+post-configure:
+ @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
+ s|%%LOCALBASE%%|${LOCALBASE}|g ; \
+ s|%%X11BASE%%|${X11BASE}|g ; \
+ s|%%MOZILLA%%|${MOZILLA}|g ; \
+ s|%%FLASHPLAYER%%|${FLASHPLAYER}|g' ${WRKSRC}/src/epiphany
+
+pre-install:
+ @-${X11BASE}/bin/gconftool-2 --shutdown
+
+.include <bsd.port.post.mk>
diff --git a/www/epiphany/distinfo b/www/epiphany/distinfo
new file mode 100644
index 000000000..cabe847c7
--- /dev/null
+++ b/www/epiphany/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/epiphany-1.1.0.tar.bz2) = a47728c84c3d3906756beb3c359de481
diff --git a/www/epiphany/files/patch-configure b/www/epiphany/files/patch-configure
new file mode 100644
index 000000000..0f5ae010c
--- /dev/null
+++ b/www/epiphany/files/patch-configure
@@ -0,0 +1,10 @@
+--- configure.orig Tue Jul 15 14:31:11 2003
++++ configure Tue Jul 15 14:31:11 2003
+@@ -18205,6 +18205,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff --git a/www/epiphany/files/patch-embed_mozilla_EphyEventListener.cpp b/www/epiphany/files/patch-embed_mozilla_EphyEventListener.cpp
new file mode 100644
index 000000000..48f6e973a
--- /dev/null
+++ b/www/epiphany/files/patch-embed_mozilla_EphyEventListener.cpp
@@ -0,0 +1,29 @@
+--- embed/mozilla/EphyEventListener.cpp.orig Sat Nov 1 22:39:59 2003
++++ embed/mozilla/EphyEventListener.cpp Sat Nov 1 22:41:44 2003
+@@ -16,6 +16,10 @@
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
++#ifdef HAVE_CONFIG_H
++#include <config.h>
++#endif
++
+ #include <nsCOMPtr.h>
+
+ #include "EphyEventListener.h"
+@@ -80,9 +84,15 @@
+ nsCOMPtr<nsIDocument> doc = do_QueryInterface (domDoc);
+ if(!doc) return NS_ERROR_FAILURE;
+
++#if MOZILLA_SNAPSHOT > 11
++ nsIURI *uri;
++ uri = doc->GetDocumentURL ();
++ if (uri == NULL) return NS_ERROR_FAILURE;
++#else
+ nsCOMPtr<nsIURI> uri;
+ result = doc->GetDocumentURL(getter_AddRefs(uri));
+ if (NS_FAILED (result)) return NS_ERROR_FAILURE;
++#endif
+
+ const nsACString &link = NS_ConvertUCS2toUTF8(value);
+ nsCAutoString favicon_url;
diff --git a/www/epiphany/files/patch-embed_mozilla_EphyWrapper.cpp b/www/epiphany/files/patch-embed_mozilla_EphyWrapper.cpp
new file mode 100644
index 000000000..f3575e0ab
--- /dev/null
+++ b/www/epiphany/files/patch-embed_mozilla_EphyWrapper.cpp
@@ -0,0 +1,30 @@
+--- embed/mozilla/EphyWrapper.cpp.orig Sat Nov 1 22:42:25 2003
++++ embed/mozilla/EphyWrapper.cpp Sat Nov 1 22:53:59 2003
+@@ -582,8 +582,13 @@
+ nsCOMPtr<nsIDocument> doc = do_QueryInterface(DOMDocument);
+ if(!doc) return NS_ERROR_FAILURE;
+
++#if MOZILLA_SNAPSHOT > 11
++ nsIURI *uri;
++ uri = doc->GetDocumentURL ();
++#else
+ nsCOMPtr<nsIURI> uri;
+ doc->GetDocumentURL(getter_AddRefs(uri));
++#endif
+
+ return uri->GetSpec (url);
+ }
+@@ -600,8 +605,13 @@
+ nsCOMPtr<nsIDocument> doc = do_QueryInterface(DOMDocument);
+ if(!doc) return NS_ERROR_FAILURE;
+
++#if MOZILLA_SNAPSHOT > 11
++ nsIURI *uri;
++ uri = doc->GetDocumentURL ();
++#else
+ nsCOMPtr<nsIURI> uri;
+ doc->GetDocumentURL(getter_AddRefs(uri));
++#endif
+
+ uri->GetSpec (url);
+
diff --git a/www/epiphany/files/patch-embed_mozilla_EventContext.cpp b/www/epiphany/files/patch-embed_mozilla_EventContext.cpp
new file mode 100644
index 000000000..f40825763
--- /dev/null
+++ b/www/epiphany/files/patch-embed_mozilla_EventContext.cpp
@@ -0,0 +1,40 @@
+--- embed/mozilla/EventContext.cpp.orig Thu Oct 16 19:08:54 2003
++++ embed/mozilla/EventContext.cpp Thu Nov 13 19:05:29 2003
+@@ -145,13 +145,19 @@
+ nsresult EventContext::ResolveBaseURL (nsIDocument *doc, const nsAString &relurl, nsACString &url)
+ {
+ nsresult rv;
++#if MOZILLA_SNAPSHOT > 11
++ nsIURI *base;
++ base = doc->GetBaseURL ();
++ if (base == NULL) return NS_ERROR_FAILURE;
++#elif MOZILLA_SNAPSHOT > 9
+ nsCOMPtr<nsIURI> base;
+-#if MOZILLA_SNAPSHOT > 9
+ rv = doc->GetBaseURL (getter_AddRefs(base));
++ if (NS_FAILED(rv)) return rv;
+ #else
++ nsCOMPtr<nsIURI> base;
+ rv = doc->GetBaseURL (*getter_AddRefs(base));
+-#endif
+ if (NS_FAILED(rv)) return rv;
++#endif
+
+ return base->Resolve (NS_ConvertUCS2toUTF8(relurl), url);
+ }
+@@ -159,9 +165,15 @@
+ nsresult EventContext::ResolveDocumentURL (nsIDocument *doc, const nsAString &relurl, nsACString &url)
+ {
+ nsresult rv;
++#if MOZILLA_SNAPSHOT > 11
++ nsIURI *uri;
++ uri = doc->GetDocumentURL ();
++ if (uri == NULL) return NS_ERROR_FAILURE;
++#else
+ nsCOMPtr<nsIURI> uri;
+ rv = doc->GetDocumentURL(getter_AddRefs(uri));
+ if (NS_FAILED(rv)) return rv;
++#endif
+
+ return uri->Resolve (NS_ConvertUCS2toUTF8(relurl), url);
+ }
diff --git a/www/epiphany/files/patch-src_epiphany.in b/www/epiphany/files/patch-src_epiphany.in
new file mode 100644
index 000000000..8a060f95b
--- /dev/null
+++ b/www/epiphany/files/patch-src_epiphany.in
@@ -0,0 +1,25 @@
+--- src/epiphany.in.orig Sat May 3 21:56:42 2003
++++ src/epiphany.in Sat May 3 21:59:12 2003
+@@ -4,7 +4,7 @@
+
+ if test -n "$MOZILLA_FIVE_HOME"; then
+ MOZILLA_HOME=$MOZILLA_FIVE_HOME
+-elif [ -f @MOZILLA_HOME@/chrome/comm.jar ]; then
++elif [ -f @MOZILLA_HOME@/libgtkembedmoz.so ]; then
+ MOZILLA_HOME=@MOZILLA_HOME@
+ else
+ echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory"
+@@ -17,4 +17,12 @@
+ MOZILLA_FIVE_HOME=$MOZILLA_HOME
+ export MOZILLA_FIVE_HOME
+
+-exec "$dist_bin/epiphany-bin" "$@"
++MOZ_PLUGIN_PATH=%%X11BASE%%/lib/browser_plugins
++export MOZ_PLUGIN_PATH
++
++if [ -f %%FLASHPLAYER%% ]; then
++ LD_PRELOAD=%%FLASHPLAYER%%
++ export LD_PRELOAD
++fi
++
++exec "%%PREFIX%%/bin/epiphany-bin" "$@"
diff --git a/www/epiphany/pkg-descr b/www/epiphany/pkg-descr
new file mode 100644
index 000000000..f24cd9a2e
--- /dev/null
+++ b/www/epiphany/pkg-descr
@@ -0,0 +1,7 @@
+Epiphany, as it's manifesto states, is a web browser designed for the layman,
+by being consistent, lightweight and fast throughout all its operations.
+
+Originally forked from Galeon's (www/galeon2) source code, Epiphany looks to
+be a very promising browser indeed.
+
+WWW: http://epiphany.mozdev.org/
diff --git a/www/epiphany/pkg-plist b/www/epiphany/pkg-plist
new file mode 100644
index 000000000..b26d30479
--- /dev/null
+++ b/www/epiphany/pkg-plist
@@ -0,0 +1,143 @@
+bin/epiphany
+bin/epiphany-bin
+etc/gconf/gconf.xml.defaults/apps/epiphany/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/epiphany/dialogs/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/epiphany/directories/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/epiphany/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/epiphany/web/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/dialogs/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/directories/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/web/%gconf.xml
+etc/gconf/schemas/epiphany.schemas
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-bookmarks.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-dialog.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed-event.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed-persist.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed-prefs.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed-shell.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed-single.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed-types.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-embed.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-encodings.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-history.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-langs.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-node-db.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-node.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-notebook.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-shell.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-tab.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-types.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/ephy-window.h
+include/epiphany-%%EPHY_VERSION%%/epiphany/session.h
+libdata/bonobo/servers/GNOME_Epiphany_Automation.server
+libdata/bonobo/servers/GNOME_Epiphany_NautilusView.server
+libdata/pkgconfig/epiphany-1.0.pc
+share/gnome/application-registry/epiphany.applications
+share/gnome/applications/bme.desktop
+share/gnome/applications/epiphany.desktop
+share/gnome/epiphany/art/epiphany-bookmark-page.png
+share/gnome/epiphany/art/epiphany-bookmarks.png
+share/gnome/epiphany/art/epiphany-download.png
+share/gnome/epiphany/art/epiphany-entry.png
+share/gnome/epiphany/art/epiphany-fullscreen.png
+share/gnome/epiphany/art/epiphany-history.png
+share/gnome/epiphany/art/epiphany-new-tab.png
+share/gnome/epiphany/art/epiphany-secure.png
+share/gnome/epiphany/art/epiphany-send-link.png
+share/gnome/epiphany/art/epiphany-tab-loading.gif
+share/gnome/epiphany/art/epiphany-unsecure.png
+share/gnome/epiphany/art/epiphany-viewsource.png
+share/gnome/epiphany/art/hand-open.png
+share/gnome/epiphany/conspiracy.xhtml
+share/gnome/epiphany/default-prefs.js
+share/gnome/epiphany/epiphany-bookmark-editor-ui.xml
+share/gnome/epiphany/epiphany-fs-toolbar.xml
+share/gnome/epiphany/epiphany-history-window-ui.xml
+share/gnome/epiphany/epiphany-toolbar.xml
+share/gnome/epiphany/epiphany-ui.xml
+share/gnome/epiphany/epiphany.xhtml
+share/gnome/epiphany/glade/epiphany.glade
+share/gnome/epiphany/glade/prefs-dialog.glade
+share/gnome/epiphany/glade/print.glade
+share/gnome/epiphany/nautilus-epiphany-view.xml
+share/gnome/help/epiphany/C/epiphany.xml
+share/gnome/help/epiphany/C/figures/ephy-history-window-screenshot.png
+share/gnome/help/epiphany/C/figures/ephy-screenshot.png
+share/gnome/help/epiphany/C/legal.xml
+share/gnome/help/epiphany/nl/epiphany.xml
+share/gnome/help/epiphany/nl/figures/ephy-screenshot.png
+share/gnome/help/epiphany/nl/legal.xml
+share/gnome/omf/epiphany/epiphany-C.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/epiphany/epiphany-C.omf 2>/dev/null || /usr/bin/true
+share/gnome/omf/epiphany/epiphany-nl.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/epiphany/epiphany-nl.omf 2>/dev/null || /usr/bin/true
+share/gnome/pixmaps/epiphany-bookmarks.png
+share/locale/am/LC_MESSAGES/epiphany.mo
+share/locale/az/LC_MESSAGES/epiphany.mo
+share/locale/ar/LC_MESSAGES/epiphany.mo
+share/locale/be/LC_MESSAGES/epiphany.mo
+share/locale/ca/LC_MESSAGES/epiphany.mo
+share/locale/cs/LC_MESSAGES/epiphany.mo
+share/locale/cy/LC_MESSAGES/epiphany.mo
+share/locale/da/LC_MESSAGES/epiphany.mo
+share/locale/de/LC_MESSAGES/epiphany.mo
+share/locale/el/LC_MESSAGES/epiphany.mo
+share/locale/en_GB/LC_MESSAGES/epiphany.mo
+share/locale/es/LC_MESSAGES/epiphany.mo
+share/locale/et/LC_MESSAGES/epiphany.mo
+share/locale/fi/LC_MESSAGES/epiphany.mo
+share/locale/fr/LC_MESSAGES/epiphany.mo
+share/locale/ga/LC_MESSAGES/epiphany.mo
+share/locale/hi/LC_MESSAGES/epiphany.mo
+share/locale/hu/LC_MESSAGES/epiphany.mo
+share/locale/is/LC_MESSAGES/epiphany.mo
+share/locale/it/LC_MESSAGES/epiphany.mo
+share/locale/ja/LC_MESSAGES/epiphany.mo
+share/locale/ko/LC_MESSAGES/epiphany.mo
+share/locale/li/LC_MESSAGES/epiphany.mo
+share/locale/lt/LC_MESSAGES/epiphany.mo
+share/locale/mk/LC_MESSAGES/epiphany.mo
+share/locale/mn/LC_MESSAGES/epiphany.mo
+share/locale/ms/LC_MESSAGES/epiphany.mo
+share/locale/nl/LC_MESSAGES/epiphany.mo
+share/locale/no/LC_MESSAGES/epiphany.mo
+share/locale/pl/LC_MESSAGES/epiphany.mo
+share/locale/pt/LC_MESSAGES/epiphany.mo
+share/locale/pt_BR/LC_MESSAGES/epiphany.mo
+share/locale/ro/LC_MESSAGES/epiphany.mo
+share/locale/ru/LC_MESSAGES/epiphany.mo
+share/locale/sk/LC_MESSAGES/epiphany.mo
+share/locale/sl/LC_MESSAGES/epiphany.mo
+share/locale/sq/LC_MESSAGES/epiphany.mo
+share/locale/sr/LC_MESSAGES/epiphany.mo
+share/locale/sr@Latn/LC_MESSAGES/epiphany.mo
+share/locale/sv/LC_MESSAGES/epiphany.mo
+share/locale/ta/LC_MESSAGES/epiphany.mo
+share/locale/tr/LC_MESSAGES/epiphany.mo
+share/locale/vi/LC_MESSAGES/epiphany.mo
+share/locale/wa/LC_MESSAGES/epiphany.mo
+share/locale/zh_CN/LC_MESSAGES/epiphany.mo
+share/locale/zh_TW/LC_MESSAGES/epiphany.mo
+@dirrm share/gnome/omf/epiphany
+@dirrm share/gnome/help/epiphany/nl/figures
+@dirrm share/gnome/help/epiphany/nl
+@dirrm share/gnome/help/epiphany/C/figures
+@dirrm share/gnome/help/epiphany/C
+@dirrm share/gnome/help/epiphany
+@dirrm share/gnome/epiphany/glade
+@dirrm share/gnome/epiphany/art
+@dirrm share/gnome/epiphany
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/web
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/general
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/directories
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/epiphany/dialogs
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/epiphany
+@dirrm etc/gconf/gconf.xml.defaults/apps/epiphany/web
+@dirrm etc/gconf/gconf.xml.defaults/apps/epiphany/general
+@dirrm etc/gconf/gconf.xml.defaults/apps/epiphany/directories
+@dirrm etc/gconf/gconf.xml.defaults/apps/epiphany/dialogs
+@dirrm etc/gconf/gconf.xml.defaults/apps/epiphany
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/epiphany/epiphany-C.omf 2>/dev/null || /usr/bin/true
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/epiphany/epiphany-nl.omf 2>/dev/null || /usr/bin/true