diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-08-04 01:34:38 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-08-04 01:34:38 +0000 |
commit | 9594f3f8939f5178057c6a588135f0bab6d52511 (patch) | |
tree | 923d26a5ec2be934317cf261a38183917c93fe7a /www/gtkhtml3 | |
parent | 5035c4b32a83e9b13642c8ca8569d6ba2b001420 (diff) | |
download | ports-9594f3f8939f5178057c6a588135f0bab6d52511.tar.gz ports-9594f3f8939f5178057c6a588135f0bab6d52511.zip |
Notes
Diffstat (limited to 'www/gtkhtml3')
-rw-r--r-- | www/gtkhtml3/Makefile | 9 | ||||
-rw-r--r-- | www/gtkhtml3/files/patch-ad | 14 |
2 files changed, 22 insertions, 1 deletions
diff --git a/www/gtkhtml3/Makefile b/www/gtkhtml3/Makefile index d68c87b622f5..8344b03c9b03 100644 --- a/www/gtkhtml3/Makefile +++ b/www/gtkhtml3/Makefile @@ -15,7 +15,7 @@ MAINTAINER= ade@FreeBSD.org LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \ wwwzip.1:${PORTSDIR}/www/libwww \ - gconf.8:${PORTSDIR}/devel/gconf + gconf-1.0:${PORTSDIR}/devel/gconf GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config GTK_CONFIG?= ${X11BASE}/bin/gtk12-config @@ -31,4 +31,11 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ GTK_CONFIG="${GTK_CONFIG}" \ LIBS="-L${LOCALBASE}/lib" +post-extract: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ + s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' + .include <bsd.port.mk> diff --git a/www/gtkhtml3/files/patch-ad b/www/gtkhtml3/files/patch-ad new file mode 100644 index 000000000000..4ce5c2dc4b59 --- /dev/null +++ b/www/gtkhtml3/files/patch-ad @@ -0,0 +1,14 @@ +--- src/gtkhtml.c.orig Mon Jul 10 17:52:30 2000 ++++ src/gtkhtml.c Wed Aug 2 15:38:46 2000 +@@ -1130,3 +1130,3 @@ + if (gconf_is_initialized ()) { +- gconf_client = gconf_client_new (); ++ gconf_client = gconf_client_get_default (); + if (!gconf_client) +--- capplet/main.c.orig Mon Jun 19 16:33:41 2000 ++++ capplet/main.c Wed Aug 2 15:40:19 2000 +@@ -197,3 +197,3 @@ + +- client = gconf_client_new (); ++ client = gconf_client_get_default (); + gconf_client_add_dir(client, GTK_HTML_GCONF_DIR, GCONF_CLIENT_PRELOAD_NONE, NULL); |