1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/games/qonk/Makefile
Alejandro Pulver 69f8dd6e63 - Format Makefile comments.
- Format tabs.

Approved by:	garga (mentor)
2006-04-24 21:09:30 +00:00

49 lines
1.1 KiB
Makefile

# New ports collection makefile for: qonk
# Date created: 10 Jul 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= qonk
DISTVERSION= 0.0.2beta1
CATEGORIES= games
MASTER_SITES= http://anthony.liekens.net/pub/files/
MAINTAINER= alepulver@FreeBSD.org
COMMENT= Small build and conquer strategy game
USE_GMAKE= yes
USE_SDL= gfx sdl ttf
OPTIONS= OPTIMIZED_CFLAGS "Enable compilation optimizations" on
.include <bsd.port.pre.mk>
post-patch:
# Fix Makefile.
@${REINPLACE_CMD} -e 's|g++|${CXX}| ; \
s|sdl-config|${SDL_CONFIG}| ; \
s|\(-O3\)|${CFLAGS} \1|' \
${WRKSRC}/${MAKEFILE}
# Fix paths to ${DATADIR}.
@${REINPLACE_CMD} -e 's|\(font\.ttf\)|${DATADIR}/\1|' \
${WRKSRC}/main.cpp ${WRKSRC}/messages.cpp
# Enable/disable compilation optimizations.
.if defined(WITHOUT_OPTIMIZED_CFLAGS)
@${REINPLACE_CMD} -e 's|-O3||' \
${WRKSRC}/${MAKEFILE}
.endif
do-install:
# Program.
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
# Data.
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/font.ttf ${DATADIR}
.include <bsd.port.post.mk>