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/Makefile | |
parent | gaspell needs textproc/aspell to build, as well as run (diff) |
Extensive patchfile cleanups using sobomax's wonderful
post-extract rule
Notes
Notes:
svn path=/head/; revision=31296
Diffstat (limited to 'www/gtkhtml3/Makefile')
-rw-r--r-- | www/gtkhtml3/Makefile | 9 |
1 files changed, 8 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> |