summaryrefslogtreecommitdiff
path: root/games/battleball/Makefile
blob: 258476bb1a8d0fe47feb44e42faf8fb9801d44db (plain)
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
# $NetBSD: Makefile,v 1.3 2000/01/06 08:36:07 fredb Exp $

DISTNAME=	battleball.21.src
PKGNAME=	battleball-2.1
CATEGORIES=	games x11
MASTER_SITES=	http://linuxberg.prover.com.br/files/x11/entertain/

MAINTAINER=	root@garbled.net
HOMEPAGE=	http://www.cs.utexas.edu/users/pahardin/bb.html

USE_X11=	YES
WRKSRC=		${WRKDIR}/battleball-2.1-src

CPPFLAGS+=	-I${X11BASE}/include
SED_CMDS=	-e '/^INCS/s|$$|${CPPFLAGS}|' -e '/^LIBS/s|$$|${LDFLAGS}|'

do-configure:
	${CP} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.orig; \
	${SED} ${SED_CMDS} < ${WRKSRC}/Makefile.orig > ${WRKSRC}/Makefile

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/battleball ${PREFIX}/bin/

.include "../../mk/bsd.pkg.mk"

.if !defined(USE_MESA)
CPPFLAGS+=	-DNO_OPENGL
SED_CMDS+=	-e '/^GLINCS/s|^|\#|' -e '/^GLLIBS/s|^|\#|'
.else
# Note to Maintainers: Wildcard needs to match all possible Mesa-glx
# variations so the build doesn't fail if Mesa-glx is already installed.
DEPENDS+=	Mesa-*:../../graphics/Mesa
.endif