diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-07-11 15:31:46 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-07-11 15:31:46 +0000 |
commit | 548387be8002521e3aa9b0c8ae2b343d9d3520eb (patch) | |
tree | ec7ba00fd2a8b535baa75d1a42a0f7d7096519e9 /games/atomix | |
parent | bcbf81722c6ee8e04ddbb164394bf1905b2a3fa4 (diff) | |
download | freebsd-ports-548387be8002521e3aa9b0c8ae2b343d9d3520eb.zip |
Use USE_REINPLACE.
Diffstat (limited to 'games/atomix')
-rw-r--r-- | games/atomix/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/atomix/Makefile b/games/atomix/Makefile index 2b72b4855221..72176a1441eb 100644 --- a/games/atomix/Makefile +++ b/games/atomix/Makefile @@ -14,15 +14,16 @@ MAINTAINER= gnome@FreeBSD.org USE_X_PREFIX= yes USE_GNOME= yes +USE_REINPLACE= yes GNU_CONFIGURE= yes 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> |