1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/games/abe/Makefile
Marcus von Appen 6506e45d69 - Update devel/sdl12 to version 1.2.14.
- Update audio/sdl_mixer to version 1.2.11.
- Update graphics/sdl_gfx to version 2.0.20.
- Update graphics/sdl_image to version 1.2.10.
- Bump portrevisions for all ports depending on audio/sdl_mixer and
  graphics/sdl_image.
- Update Mk/bsd.sdl.mk accordingly for the new shared lib versions.

PR:		ports/142147 ports/142248 ports/142249
Approved by:	miwi (mentor implicit)
2010-01-30 09:43:31 +00:00

53 lines
1.2 KiB
Makefile

# New ports collection makefile for: games/abe
# Date created: 8 Aug 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= abe
PORTVERSION= 1.1
PORTREVISION= 4
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= alepulver@FreeBSD.org
COMMENT= Abe's Amazing Adventure
USE_GMAKE= yes
USE_SDL= mixer sdl
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-data-dir=${DATADIR}
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
AUTOHEADER="${TRUE}"
OPTIONS= GOD_MODE "Enable God Mode (toggle with 'g')" off \
OPTIMIZED_CFLAGS "Enable compilation optimizations" on
post-install:
@${MKDIR} ${DATADIR}
.for d in images maps sounds
@${CP} -R ${WRKSRC}/${d} ${DATADIR}
.endfor
.include <bsd.port.pre.mk>
.if defined(WITH_GOD_MODE) || defined(WITHOUT_OPTIMIZED_CFLAGS)
post-patch:
. if defined(WITH_GOD_MODE)
@${REINPLACE_CMD} -e 's|\(#define GOD_MODE\) 0|\1 1|' \
${WRKSRC}/src/Game.h
. endif
. if defined(WITHOUT_OPTIMIZED_CFLAGS)
@${REINPLACE_CMD} -e 's|-O2||g ; \
s|-fomit-frame-pointer||g ; \
s|-ffast-math||g ; \
s|-fexpensive-optimizations||g' \
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
. endif
.endif
.include <bsd.port.post.mk>