Index: head/www/libgtkhtml/Makefile
===================================================================
--- head/www/libgtkhtml/Makefile (revision 81785)
+++ head/www/libgtkhtml/Makefile (revision 81786)
@@ -1,32 +1,33 @@
# New ports collection makefile for: libgtkhtml
# Date created: 2nd June 2000
# Whom: Ade Lovett
#
# $FreeBSD$
#
PORTNAME= libgtkhtml
PORTVERSION= 2.2.4
+PORTREVISION= 1
CATEGORIES= www gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.2
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= Lightweight HTML rendering/printing/editing engine
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_REINPLACE= yes
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 ; \
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
.include
Property changes on: head/www/libgtkhtml/Makefile
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.61
\ No newline at end of property
+1.62
\ No newline at end of property
Index: head/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c
===================================================================
--- head/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c (nonexistent)
+++ head/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c (revision 81786)
@@ -0,0 +1,25 @@
+--- 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);
Property changes on: head/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.1
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property