d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
34 lines
973 B
Makefile
34 lines
973 B
Makefile
# New ports collection makefile for: madbomber
|
|
# Date created: 28 September 2000
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= madbomber
|
|
PORTVERSION= 0.2.5
|
|
PORTREVISION= 4
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.billsgames.com/unix/x/madbomber/src/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A clone of Activision's classic Atari 2600 console game "Kaboom!"
|
|
|
|
USE_SDL= mixer image sdl
|
|
|
|
CPPFLAGS= `${SDL_CONFIG} --cflags` -DDATA_PREFIX=\"${DATADIR}/\"
|
|
LDFLAGS= `${SDL_CONFIG} --libs`
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} -o ${PORTNAME} \
|
|
${PORTNAME}.c ${LDFLAGS} -lSDL_mixer -lSDL_image
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/madbomber ${PREFIX}/bin
|
|
@${MKDIR} ${DATADIR}
|
|
${TAR} -C ${WRKSRC}/data --exclude embedded -cf - . | \
|
|
${TAR} -C ${DATADIR} --unlink -xf -
|
|
@${FIND} ${DATADIR} | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
|
|
@${FIND} ${DATADIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
|
|
|
|
.include <bsd.port.mk>
|