freebsd-ports/games/ttt/Makefile
Alejandro Pulver affa1eae3c - Remove USE_REINPLACE.
- Fix OPTIONS handling.
- Format tabs.
- Add '@' to permission fixing commands.
- Bump PORTREVISION.

Approved by:	garga (mentor)
2006-04-24 21:15:49 +00:00

61 lines
1.3 KiB
Makefile

# New ports collection makefile for: ttt
# Date created: 11 July 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= ttt
PORTVERSION= 2003.03.14
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= ftp://ftp.billsgames.com/unix/x/ttt/
MAINTAINER= alepulver@FreeBSD.org
COMMENT= Simple one or two player Tic Tac Toe game
USE_GMAKE= yes
USE_SDL= mixer sdl
OPTIONS= OPTIMIZED_CFLAGS "Enable compilation optimizations" on
# net/ttt
CONFLICTS= ttt-1*
NO_LATEST_LINK= yes
.include <bsd.port.pre.mk>
post-patch:
# Fix Makefile.
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}| ; \
s|\(-Wall\)|${CFLAGS} \1|' \
${WRKSRC}/${MAKEFILE}
# Enable/disable compilation optimizations.
.if defined(WITHOUT_OPTIMIZED_CFLAGS)
@${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/${MAKEFILE}
.endif
# Fix paths to ${DATADIR}.
@${REINPLACE_CMD} -e 's|\(images/\)|${DATADIR}/\1| ; \
s|\(sounds/\)|${DATADIR}/\1|' \
${WRKSRC}/ttt.c
do-install:
# Program.
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
# Data.
${MKDIR} ${DATADIR}
.for d in images sounds
${CP} -R ${WRKSRC}/${d} ${DATADIR}
.endfor
# Fix wrong permissions.
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}
@${FIND} ${DATADIR} -type f -print0 | \
${XARGS} -0 ${CHMOD} ${SHAREMODE}
@${FIND} ${DATADIR} -type d -print0 | \
${XARGS} -0 ${CHMOD} ${BINMODE}
.include <bsd.port.post.mk>