1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/games/airrox/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

64 lines
1.3 KiB
Makefile

# New ports collection makefile for: airrox
# Date created: 12 Jul 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= airrox
PORTVERSION= 0.0.4
PORTREVISION= 8
CATEGORIES= games
MASTER_SITES= SF
DISTNAME= ${PORTNAME}-0.04
MAINTAINER= alepulver@FreeBSD.org
COMMENT= An 3D Air Hockey, which uses SDL & OpenGL
USE_GMAKE= yes
USE_SDL= mixer net sdl
USE_GL= glut
REINPLACE_ARGS= -i ''
ALL_TARGET= linux
WRKSRC= ${WRKDIR}/${PORTNAME}/source
OPTIONS= OPTIMIZED_CFLAGS "Enable compilation optimizations" on
SUB_FILES= pkg-message
DIRS= audio icones imagens meshs texturas
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_OPTIMIZED_CFLAGS)
MAKE_ENV+= OPTIMIZED_CFLAGS=yes
.endif
post-extract:
@${FIND} ${WRKDIR} -type d -name CVS -print0 | ${XARGS} -0 ${RM} -rf
post-patch:
.for d in ${DIRS}
@${REINPLACE_CMD} -e 's|../\(${d}/\)|${DATADIR}/\1|' \
${WRKSRC}/*.cpp ${WRKSRC}/*.h
.endfor
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/air ${PREFIX}/bin/${PORTNAME}
${MKDIR} ${DATADIR}
.for d in ${DIRS}
${CP} -R ${WRKDIR}/${PORTNAME}/${d} ${DATADIR}
.endfor
${INSTALL_DATA} ${WRKSRC}/config.txt ${DATADIR}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${FILESDIR}/readme.txt ${DOCSDIR}
.endif
post-install:
@${ECHO_CMD}
@${CAT} ${PKGMESSAGE}
@${ECHO_CMD}
.include <bsd.port.post.mk>