diff options
Diffstat (limited to 'extra/epiphany')
-rw-r--r-- | extra/epiphany/PKGBUILD | 41 | ||||
-rw-r--r-- | extra/epiphany/add-dbus-glib.patch | 20 | ||||
-rw-r--r-- | extra/epiphany/epiphany-2.30.6-libnotify-0.7.patch | 38 | ||||
-rw-r--r-- | extra/epiphany/epiphany.install | 25 | ||||
-rw-r--r-- | extra/epiphany/fix-introspection.patch | 21 |
5 files changed, 145 insertions, 0 deletions
diff --git a/extra/epiphany/PKGBUILD b/extra/epiphany/PKGBUILD new file mode 100644 index 000000000..e0d1cc62b --- /dev/null +++ b/extra/epiphany/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 112785 2011-03-06 19:17:28Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=epiphany +pkgver=2.30.6 +pkgrel=3 +install=epiphany.install +pkgdesc="A GNOME2 web browser based on the WebKit rendering engine." +arch=('i686' 'x86_64') +license=('GPL') +depends=('libwebkit>=1.2.4' 'iso-codes>=3.10.1' 'desktop-file-utils' 'libxslt>=1.1.24' 'libnotify>=0.7.1' 'avahi>=0.6.27' 'libsoup-gnome>=2.32.0' 'nss>=3.12.8' 'ca-certificates' 'gconf>=2.32.0' 'gobject-introspection>=0.9.8' 'dbus-glib') +makedepends=('gnome-doc-utils>=0.20.1' 'pkgconfig' 'networkmanager' 'intltool' 'startup-notification' 'gnome-common' 'gtk-doc') +options=('!libtool' '!emptydirs') +groups=('gnome') +url="http://www.gnome.org/projects/epiphany/" +source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2 + fix-introspection.patch + epiphany-2.30.6-libnotify-0.7.patch + add-dbus-glib.patch) +sha256sums=('278a5c00ce07e6a3ea440d289de22dbec3ebec4ded4ff3b4c48b580f469c2dcc' + 'fed862407db7d971aa759168f889e68e914c4e6d80d7768f3db549bc36bd8dbf' + 'c1a59a9df78db07c2cf23d47d881d8d4edf6e55af3d655f8ec9870adf9255390' + '6a0d826767eeed02300b612e16af99a8f3840ce1f754d437a1ddd8da9d254e95') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/fix-introspection.patch" + patch -Np1 -i "${srcdir}/add-dbus-glib.patch" + patch -Np0 -i "${srcdir}/epiphany-2.30.6-libnotify-0.7.patch" + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-scrollkeeper \ + --enable-network-manager + make + make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/gconf/schemas" + gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain epiphany ${pkgdir}/etc/gconf/schemas/*.schemas + rm -f ${pkgdir}/etc/gconf/schemas/*.schemas +} diff --git a/extra/epiphany/add-dbus-glib.patch b/extra/epiphany/add-dbus-glib.patch new file mode 100644 index 000000000..c50be67a2 --- /dev/null +++ b/extra/epiphany/add-dbus-glib.patch @@ -0,0 +1,20 @@ +From 174a51819570a975cc61e642f7f26cb4bc2f9c57 Mon Sep 17 00:00:00 2001 +From: Diego Escalante Urrelo <descalante@igalia.com> +Date: Mon, 01 Nov 2010 05:56:51 +0000 +Subject: tests: DBUS_LIBS is needed for libephymain.la + +--- +diff --git a/tests/Makefile.am b/tests/Makefile.am +index bd2c378..b973214 100644 +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -23,6 +23,7 @@ LDADD = \ + $(top_builddir)/lib/widgets/libephywidgets.la \ + $(top_builddir)/lib/libephymisc.la \ + $(top_builddir)/lib/egg/libegg.la \ ++ $(DBUS_LIBS) \ + $(DEPENDENCIES_LIBS) + + if ENABLE_NSS +-- +cgit v0.8.3.4 diff --git a/extra/epiphany/epiphany-2.30.6-libnotify-0.7.patch b/extra/epiphany/epiphany-2.30.6-libnotify-0.7.patch new file mode 100644 index 000000000..a0c5f8ee1 --- /dev/null +++ b/extra/epiphany/epiphany-2.30.6-libnotify-0.7.patch @@ -0,0 +1,38 @@ +--- embed/downloader-view.c ++++ embed/downloader-view.c +@@ -36,6 +36,9 @@ + + #ifdef HAVE_LIBNOTIFY + #include <libnotify/notify.h> ++#ifndef NOTIFY_CHECK_VERSION ++#define NOTIFY_CHECK_VERSION(x,y,z) 0 ++#endif + #endif + + enum +@@ -337,7 +340,12 @@ + g_object_ref (dv); + + notification = notify_notification_new (title, msg, +- GTK_STOCK_INFO, NULL); ++ GTK_STOCK_INFO ++#if NOTIFY_CHECK_VERSION (0, 7, 0) ++ ); ++#else ++ , NULL); ++#endif + + g_signal_connect_after (notification, "closed", + G_CALLBACK (notification_closed_cb), dv); +@@ -346,7 +354,11 @@ + notify_notification_set_timeout (notification, NOTIFY_EXPIRES_DEFAULT); + notify_notification_set_urgency (notification, NOTIFY_URGENCY_LOW); + ++#if NOTIFY_CHECK_VERSION (0, 7, 0) ++ /* notify_notification_attach_to_status_icon was removed */ ++#else + notify_notification_attach_to_status_icon (notification, status_icon); ++#endif + + /* There are some visual glitches when the notification is shown and + * the GtkStatusIcon is still not visible. To avoid that, we delay the diff --git a/extra/epiphany/epiphany.install b/extra/epiphany/epiphany.install new file mode 100644 index 000000000..bd9d774a6 --- /dev/null +++ b/extra/epiphany/epiphany.install @@ -0,0 +1,25 @@ +pkgname=epiphany + +post_install() { + usr/sbin/gconfpkg --install ${pkgname} + + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + usr/sbin/gconfpkg --uninstall ${pkgname} +} + +post_remove() { + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} diff --git a/extra/epiphany/fix-introspection.patch b/extra/epiphany/fix-introspection.patch new file mode 100644 index 000000000..4d8dca923 --- /dev/null +++ b/extra/epiphany/fix-introspection.patch @@ -0,0 +1,21 @@ +From 78b9eac0fca36e27c83c7678b18962ba286f041b Mon Sep 17 00:00:00 2001 +From: Vincent Untz <vuntz@gnome.org> +Date: Fri, 01 Oct 2010 16:36:23 +0000 +Subject: introspection: Fix build by telling g-ir-scanner what the prefix is + +https://bugzilla.gnome.org/show_bug.cgi?id=631119 +--- +diff --git a/src/Makefile.am b/src/Makefile.am +index e9d3715..acbf8ff 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -350,6 +350,7 @@ Epiphany-$(EPIPHANY_API_VERSION).gir: $(INTROSPECTION_SCANNER) $(EPHY_GIR_H_FILE + --include=WebKit-1.0 \ + --program=./epiphany \ + --output $@ \ ++ --strip-prefix=Ephy \ + --pkg epiphany-$(EPIPHANY_API_VERSION) \ + -DEPIPHANY_COMPILATION \ + -I$(top_srcdir)/embed \ +-- +cgit v0.8.3.1 |