diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-09-05 01:20:05 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-09-05 01:20:05 +0800 |
commit | 983d772825622c830c3a50e2cf31e109c5db8934 (patch) | |
tree | 176b7c6c9e96f5eef2d565a4b45226e646391734 | |
parent | 33f72cd6a64e3cd586937707e5bc5a31d7c76a4a (diff) | |
download | marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.tar marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.tar.gz marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.tar.bz2 marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.tar.lz marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.tar.xz marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.tar.zst marcuscom-ports-983d772825622c830c3a50e2cf31e109c5db8934.zip |
Update to 1.8.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4689 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | www/epiphany/Makefile | 6 | ||||
-rw-r--r-- | www/epiphany/distinfo | 4 | ||||
-rw-r--r-- | www/epiphany/files/patch-lib_ephy-debug.c | 28 |
3 files changed, 5 insertions, 33 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile index 2e9a82e35..8a436c947 100644 --- a/www/epiphany/Makefile +++ b/www/epiphany/Makefile @@ -3,14 +3,14 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/epiphany/Makefile,v 1.81 2005/08/21 05:09:39 marcus Exp $ +# $MCom: ports/www/epiphany/Makefile,v 1.82 2005/08/28 18:20:33 mezz Exp $ # PORTNAME= epiphany -PORTVERSION= 1.7.6 +PORTVERSION= 1.8.0 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.7 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.8 DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org diff --git a/www/epiphany/distinfo b/www/epiphany/distinfo index 981d17179..bb8b673e9 100644 --- a/www/epiphany/distinfo +++ b/www/epiphany/distinfo @@ -1,2 +1,2 @@ -MD5 (gnome2/epiphany-1.7.6.tar.bz2) = f03624c24f021b058136b46fbf54bc31 -SIZE (gnome2/epiphany-1.7.6.tar.bz2) = 3345557 +MD5 (gnome2/epiphany-1.8.0.tar.bz2) = 297ca64ce700e90db596a50d58b68a80 +SIZE (gnome2/epiphany-1.8.0.tar.bz2) = 3348813 diff --git a/www/epiphany/files/patch-lib_ephy-debug.c b/www/epiphany/files/patch-lib_ephy-debug.c deleted file mode 100644 index c877c6e0b..000000000 --- a/www/epiphany/files/patch-lib_ephy-debug.c +++ /dev/null @@ -1,28 +0,0 @@ ---- lib/ephy-debug.c.orig Tue Aug 9 13:28:12 2005 -+++ lib/ephy-debug.c Tue Aug 9 13:34:23 2005 -@@ -23,7 +23,9 @@ - #include "ephy-debug.h" - - #include <string.h> -+#ifdef __linux__ - #include <execinfo.h> -+#endif - #include <signal.h> - #include <stdio.h> - #include <stdlib.h> -@@ -107,6 +109,7 @@ trap_handler (const char *log_domain, - - raise (SIGSTOP); - } -+#ifdef __linux__ - else if (strcmp (ephy_debug_break, "stack") == 0) - { - void *array[MAX_DEPTH]; -@@ -115,6 +118,7 @@ trap_handler (const char *log_domain, - size = backtrace (array, MAX_DEPTH); - backtrace_symbols_fd (array, size, 2); - } -+#endif - else if (strcmp (ephy_debug_break, "trap") == 0) - { - /* FIXME: disable the handler for a moment so we |