diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-06-01 19:56:04 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-06-01 19:56:04 +0000 |
commit | 7f44153281a28abf9f54db4292179516460951dc (patch) | |
tree | f0cbd198d34668e8d3997d4c3f820de3e33aa98c /games/glife | |
parent | e2293488c055bab7429297300cdf427d65e13e8a (diff) |
Notes
Diffstat (limited to 'games/glife')
-rw-r--r-- | games/glife/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/glife/Makefile b/games/glife/Makefile index 42ead64abdfc..6dfae69b64f7 100644 --- a/games/glife/Makefile +++ b/games/glife/Makefile @@ -18,12 +18,14 @@ COMMENT= Conway's Game of Life for GNOME USE_REINPLACE= yes USE_X_PREFIX= yes -USE_LIBTOOL_VER=13 +USE_LIBTOOL_VER=15 USE_GNOME= gnomeprefix gnomehack libglade CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ + s|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ + ${WRKSRC}/configure .include <bsd.port.mk> |