mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
7dcf1d2cb8
- Change Desktop entry file - Add REINPLACE_CMD, fix build (malloc.h) - Change patch Approved by: pawel / wg (mentors, implicit)
32 lines
769 B
Makefile
32 lines
769 B
Makefile
# Created by: Neil Blakey-Milner <nbm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rockdodger
|
|
PORTVERSION= 0.9.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= GOOGLE_CODE \
|
|
SF/nemysisfreebsdp/${CATEGORIES}/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}.png:icons
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= Addictive rock-dodging greeblie-killing platform game
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake
|
|
USE_SDL= mixer image sdl
|
|
|
|
DESKTOP_ENTRIES="Rock Dodger" "" "${PORTNAME}" \
|
|
"${PORTNAME}" "Game;ArcadeGame;" ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|#include <malloc.h>||' ${WRKSRC}/u-iff.c
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
.include <bsd.port.mk>
|