diff options
Diffstat (limited to 'games/thevalley/Makefile')
-rw-r--r-- | games/thevalley/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/games/thevalley/Makefile b/games/thevalley/Makefile new file mode 100644 index 0000000..e0c9666 --- /dev/null +++ b/games/thevalley/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: thevalley +# Date created: 28 March 2004 +# Whom: Edwin Groothuis +# +# $FreeBSD$ + +PORTNAME= thevalley +PORTVERSION= 0.98 +CATEGORIES= games +MASTER_SITES= http://www.autismuk.freeserve.co.uk/ +DISTNAME= valley-${PORTVERSION} + +MAINTAINER= edwin@mavetju.org +COMMENT= The Valley is a rewrite of an old RPG from the early 1980s + +USE_LIBTOOL= yes +USE_X= yes +HAS_CONFIGURE= yes +WRKSRC= ${WRKDIR}/${DISTNAME} +USE_SDL= sdl +USE_REINPLACE= yes +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ + CXXFLAGS="${PTHREAD_CFLAGS} -I${X11BASE}/include" + +PLIST_FILES= bin/valley + +post-configure: + ${REINPLACE_CMD} \ + -e 's,^LIBTOOL =.*,LIBTOOL= $$(SHELL) ${LIBTOOL} --silent,' \ + -e 's,^transform =.*,transform = s\,^\,\,,' \ + ${WRKSRC}/valley/Makefile + +.include <bsd.port.mk> |