diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-29 17:50:22 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-29 17:50:22 +0000 |
commit | 6536428635d799e5088e80b655ee2f05596e1d22 (patch) | |
tree | 55aa5198bca181e77c4906759d06bb2848ee96bb /games | |
parent | Fails to build on 4.11. (diff) |
- Fully respect $LOCALBASE
- Bump PORTREVISION
PR: 88067
Reported by: pointyhat via kris
Submitted by: Dmitry Marakasov <amdmi3@mail.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=146678
Diffstat (limited to 'games')
-rw-r--r-- | games/fillets-ng/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/fillets-ng/Makefile b/games/fillets-ng/Makefile index 18906d7d31bb..0525f74f9557 100644 --- a/games/fillets-ng/Makefile +++ b/games/fillets-ng/Makefile @@ -7,7 +7,7 @@ PORTNAME= fillets-ng PORTVERSION= 0.7.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= fillets @@ -28,7 +28,7 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS= --datadir="${DATADIR}" +CONFIGURE_ARGS= --datadir="${DATADIR}" --with-lua="${LOCALBASE}" OPTIONS= FRIBIDI "Enable fribidi support" off @@ -45,6 +45,7 @@ LIB_DEPENDS+= fribidi.0:${PORTSDIR}/converters/fribidi .endif post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|^\(AM_CPPFLAGS.*(datadir)\)/.*|\1"\\"|' \ ${WRKSRC}/src/gengine/Makefile.in .if defined(WITHOUT_FRIBIDI) |