freebsd-ports/games/thevalley/Makefile
Edwin Groothuis 2894fe3f1b From: Dejan Lesjak <dejan.lesjak@ijs.si>
To: edwin@mavetju.org
Subject: games/thevalley and upcoming xorg update

Hello,

Soon xorg ports will be upgraded to 6.8.1. As one of changes, imake is
no longer recorded as run dependency for X libraries. Since imake
depends on perl, this dependency is also gone. The port you maintain
relied on perl being there as consequence of these dependencies. Since
this is no longer so, it fails. The upgrade is being tested on dosirak
ports test cluster and the error log is here:

To solve this, explicit build time dependency to perl needs to be
specified with addition of something like this line:
USE_PERL5_BUILD=yes
to Makefile.
Thanks.

Submitted by:	Dejan Lesjak <dejan.lesjak@ijs.si>
2004-12-03 11:23:46 +00:00

34 lines
835 B
Makefile

# 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_VER=13
USE_X= yes
HAS_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${DISTNAME}
USE_SDL= sdl
USE_REINPLACE= yes
USE_PERL5_BUILD=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>