mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
fbd0197639
- Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav
46 lines
992 B
Makefile
46 lines
992 B
Makefile
# New ports collection makefile for: powder
|
|
# Date created: 29 Dec 2008
|
|
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= powder
|
|
PORTVERSION= 115
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.zincland.com/powder/release/ \
|
|
http://mirror.amdmi3.ru/distfiles/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}_src
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Graphical dungeon crawling game
|
|
|
|
USE_GMAKE= yes
|
|
USE_SDL= sdl
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/port/linux
|
|
|
|
PLIST_FILES= bin/powder
|
|
|
|
PORTDOCS= README.TXT LICENSE.TXT CREDITS.TXT
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|bin/bash|bin/sh|' \
|
|
${WRKSRC}/rooms/buildrooms.bash \
|
|
${WRKSRC}/gfx/rebuild.sh
|
|
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' \
|
|
${BUILD_WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/powder ${PREFIX}/bin/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|