blob: a7a71352bd164d74536a6ed7e472313a1e4ce672 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: ppracer
# Date created: 28 May, 2005
# Whom: Adam Weinberger <adamw@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ppracer
DISTVERSION= 0.5alpha
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_BERLIOS}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= adamw@FreeBSD.org
COMMENT= 3D Downhill racing game... kindof like TuxRacer Improved
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
USE_BZIP2= yes
USE_SDL= mixer sdl
USE_GL= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET=--build=${ARCH}-portbld-freebsd${OSREL}
.include <bsd.port.pre.mk>
post-patch:
@${ECHO_MSG} "===> Converting DOS text files to UNIX text files"
@${FIND} ${WRKSRC} -name "*.cpp" -or -name "*.c" -or -name "*.h" \
-type f -print0 | \
${XARGS} -0 ${REINPLACE_CMD} -i '' -e 's/
$$//'
.include <bsd.port.post.mk>
|