aboutsummaryrefslogtreecommitdiffstats
path: root/www/libgtkhtml
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2003-09-18 14:49:37 +0800
committermarcus <marcus@FreeBSD.org>2003-09-18 14:49:37 +0800
commit5797d600f46f09de6f7e9f89bd9546544d3f93e6 (patch)
treef29aa772e064572f168522a552ce158c9147a8a2 /www/libgtkhtml
parentf8ccc20f69f18bf5f775fc1a7f7a5098f7173ac1 (diff)
downloadfreebsd-ports-gnome-5797d600f46f09de6f7e9f89bd9546544d3f93e6.tar.gz
freebsd-ports-gnome-5797d600f46f09de6f7e9f89bd9546544d3f93e6.tar.zst
freebsd-ports-gnome-5797d600f46f09de6f7e9f89bd9546544d3f93e6.zip
Update to GNOME 2.4.0. For all the goodies on what's changed, known issues,
future plans, etc., please see http://www.gnome.org/start/2.4/. This commit represents work done by adamw, bland, and myself as well as many other contributers: Koop Mast <einekoai@chello.nl> Akifyev Sergey <asa@gascom.ru> Franz Klammer <klammer@webonaut.com> Øyvind Kolbu <oyvind@kebab.gaffel.nu> Thomas E. Zander <riggs@rrr.de> Jeremy Messenger <mezz7@cox.net> Without these contirbuters, and our faithful users, GNOME 2.4.0 would not be possible. Please check the FreeBSD GNOME site for any FreeBSD gotchas, as well as general FAQs and documentation (GNOME 2.4 updates to be posted soon). The best way to upgrade so that you get all shared library dependencies is: portupgrade -rf -m BATCH=yes atk portupgrade -R -m BATCH=yes gnome2 Approved by: portmgr (kris, will, myself implicitly) Requested by: re as well as many other users
Diffstat (limited to 'www/libgtkhtml')
-rw-r--r--www/libgtkhtml/Makefile5
-rw-r--r--www/libgtkhtml/distinfo2
-rw-r--r--www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c25
3 files changed, 3 insertions, 29 deletions
diff --git a/www/libgtkhtml/Makefile b/www/libgtkhtml/Makefile
index 7473e02b1560..5c1d961c378b 100644
--- a/www/libgtkhtml/Makefile
+++ b/www/libgtkhtml/Makefile
@@ -6,11 +6,10 @@
#
PORTNAME= libgtkhtml
-PORTVERSION= 2.2.4
-PORTREVISION= 1
+PORTVERSION= 2.4.0
CATEGORIES= www gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.2
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.4
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
diff --git a/www/libgtkhtml/distinfo b/www/libgtkhtml/distinfo
index 2781a6057391..f4d626ca6d06 100644
--- a/www/libgtkhtml/distinfo
+++ b/www/libgtkhtml/distinfo
@@ -1 +1 @@
-MD5 (gnome2/libgtkhtml-2.2.4.tar.bz2) = 26443c4027470c4510d221af30a2c3f6
+MD5 (gnome2/libgtkhtml-2.4.0.tar.bz2) = ee2aba8198ebde0c33fe43bc61c20834
diff --git a/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c b/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c
deleted file mode 100644
index 5eec5f729744..000000000000
--- a/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c
+++ /dev/null
@@ -1,25 +0,0 @@
---- libgtkhtml/util/htmlatomlist.c.orig Mon May 26 14:13:28 2003
-+++ libgtkhtml/util/htmlatomlist.c Mon May 26 15:29:00 2003
-@@ -68,10 +68,11 @@
- HtmlAtom atom;
- gchar *ptr;
- gboolean found;
-+ gpointer old_atom;
-
- ptr = g_strdown (g_strdup (str));
-
-- found = g_hash_table_lookup_extended (al->table, ptr, NULL, (gpointer) &atom);
-+ found = g_hash_table_lookup_extended (al->table, ptr, NULL, &old_atom);
-
- if (!found) {
- if (al->len % 512 == 0)
-@@ -81,6 +82,9 @@
- atom = al->len;
- g_hash_table_insert (al->table, al->data[al->len], GUINT_TO_POINTER (atom));
- al->len++;
-+ }
-+ else {
-+ atom = GPOINTER_TO_UINT (old_atom);
- }
-
- g_free (ptr);