summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-06-01 05:38:27 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-06-01 05:38:27 +0800
commit0c1f3e73ac8eb5590a414b6103b477013c6ddc9b (patch)
treea7e8f3a57ee3d72ff6d44137c66e50a056019ac2 /www
parent175b5e440dde0ddd2a693477b78ad41897cfb2a6 (diff)
downloadmarcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.tar
marcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.tar.gz
marcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.tar.bz2
marcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.tar.lz
marcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.tar.xz
marcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.tar.zst
marcuscom-ports-0c1f3e73ac8eb5590a414b6103b477013c6ddc9b.zip
Update to 2.3.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@829 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www')
-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 dd5efedf2..b8d17cc1b 100644
--- a/www/libgtkhtml/Makefile
+++ b/www/libgtkhtml/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= libgtkhtml
-PORTVERSION= 2.3.2
-PORTREVISION= 1
+PORTVERSION= 2.3.3
CATEGORIES= www gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.3
@@ -24,7 +23,7 @@ USE_GNOME= gnomeprefix gnomehack libxslt gnomevfs2 gail
INSTALLS_SHLIB= yes
USE_LIBTOOL= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LIBS="-L${LOCALBASE}/lib"
+ LDFLAGS="-L${LOCALBASE}/lib"
post-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
diff --git a/www/libgtkhtml/distinfo b/www/libgtkhtml/distinfo
index 82226db09..b35755f63 100644
--- a/www/libgtkhtml/distinfo
+++ b/www/libgtkhtml/distinfo
@@ -1 +1 @@
-MD5 (gnome2/libgtkhtml-2.3.2.tar.bz2) = b9cc00d8aa4ec01d0ac67e468ba3c7fd
+MD5 (gnome2/libgtkhtml-2.3.3.tar.bz2) = 0a4a7700e345a6097b23d0875d802e1b
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 5eec5f729..000000000
--- 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);