diff options
author | ade <ade@FreeBSD.org> | 2000-08-04 01:34:38 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-08-04 01:34:38 +0000 |
commit | 3e67804d709e34d749caa36729ea54b374435d71 (patch) | |
tree | c94a783d14521476b590ec94cfa766b5f0c161fa /www/libgtkhtml/Makefile | |
parent | 78d864a22bfe1d46d818657e84f7e312bc38f4ec (diff) | |
download | FreeBSD-ports-3e67804d709e34d749caa36729ea54b374435d71.zip FreeBSD-ports-3e67804d709e34d749caa36729ea54b374435d71.tar.gz |
Extensive patchfile cleanups using sobomax's wonderful
post-extract rule
Diffstat (limited to 'www/libgtkhtml/Makefile')
-rw-r--r-- | www/libgtkhtml/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/www/libgtkhtml/Makefile b/www/libgtkhtml/Makefile index d68c87b..8344b03 100644 --- a/www/libgtkhtml/Makefile +++ b/www/libgtkhtml/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> |