diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-08-04 01:19:21 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-08-04 01:19:21 +0000 |
commit | 38ae599271006aa4aa581f0b03a8a5014fcf143d (patch) | |
tree | 1a1f5120bedb0bac581913ebf46122f0c3c9a656 /print/libgnomeprint | |
parent | c75a39648143baed64ef95c3314123a70205e5f6 (diff) | |
download | ports-38ae599271006aa4aa581f0b03a8a5014fcf143d.tar.gz ports-38ae599271006aa4aa581f0b03a8a5014fcf143d.zip |
Notes
Diffstat (limited to 'print/libgnomeprint')
-rw-r--r-- | print/libgnomeprint/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/print/libgnomeprint/Makefile b/print/libgnomeprint/Makefile index 463d35f314ea..ea3eae7f3a1f 100644 --- a/print/libgnomeprint/Makefile +++ b/print/libgnomeprint/Makefile @@ -26,10 +26,16 @@ USE_PERL5= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --with-gnome=${PREFIX} + --datadir=${PREFIX}/share/gnome 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> |