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 /editors/ghex | |
parent | 5035c4b32a83e9b13642c8ca8569d6ba2b001420 (diff) | |
download | ports-9594f3f8939f5178057c6a588135f0bab6d52511.tar.gz ports-9594f3f8939f5178057c6a588135f0bab6d52511.zip |
Extensive patchfile cleanups using sobomax's wonderful
post-extract rule
Notes
Notes:
svn path=/head/; revision=31296
Diffstat (limited to 'editors/ghex')
-rw-r--r-- | editors/ghex/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/editors/ghex/Makefile b/editors/ghex/Makefile index faaf6a50149a..c399504f634f 100644 --- a/editors/ghex/Makefile +++ b/editors/ghex/Makefile @@ -29,4 +29,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> |