diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-30 02:50:27 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-30 02:50:27 +0000 |
commit | 520bec1f56b59e6f799cb8d16ae618cda06384a1 (patch) | |
tree | d6f3d35c80e52d7987e6598f667ba08fe60f38fb /games/gnomebreakout | |
parent | 3dd7df2bffece28c084c9d7b7b7fb32fd9cf8f96 (diff) |
Notes
Diffstat (limited to 'games/gnomebreakout')
-rw-r--r-- | games/gnomebreakout/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/gnomebreakout/Makefile b/games/gnomebreakout/Makefile index 1ef71cdca6d7..74556a3c7429 100644 --- a/games/gnomebreakout/Makefile +++ b/games/gnomebreakout/Makefile @@ -13,6 +13,7 @@ DISTNAME= gnome-breakout-${PORTVERSION} MAINTAINER= ports@FreeBSD.org +USE_REINPLACE= yes USE_X_PREFIX= yes USE_GNOME= yes GNU_CONFIGURE= yes @@ -20,10 +21,10 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|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' + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|\$$(datadir)/gnome/|\$$(datadir)/|g ; \ + s|\$$(datadir)/locale|\$$(prefix)/share/locale|g' .include <bsd.port.mk> |