1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/games/pipepanic/Makefile
Stanislav Sedov 0d2725682b - Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
   binary)
 - Update graphics/sdl_ttf to version 2.0.8
 - Update graphics/sdl_image to version 1.2.5
 - Update audio/sdl_mixer to version 1.2.7
 - Update net/sdl_net to version 1.2.6
 - Update Mk/bsd.sdl.mk accordingly
 - Fix dependent ports to fit the new directory structure and avoid several
   API breakages
 - Bump up portrevisions for all dependent ports to allow them to be upgraded
   by portupgrade/portmaster etc tools

Approved by:    kris (portmgr), sem (mentor)
2006-09-20 11:21:59 +00:00

44 lines
974 B
Makefile

# New ports collection makefile for: pipepanic
# Date created: 20 May 2006
# Whom: Dmitry Marakasov <amdmi3@mail.ru>
#
# $FreeBSD$
#
PORTNAME= pipepanic
PORTVERSION= 0.1.3
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= http://www.users.waitrose.com/~thunor/pipepanic/dload/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= ehaupt
DISTNAME= ${PORTNAME}-${PORTVERSION}-source
MAINTAINER= amdmi3@mail.ru
COMMENT= A pipe connecting game using libSDL
USE_SDL= sdl
PORTDOCS= README
DATAFILES= ascii15.bmp ascii30.bmp digits24.bmp \
digits48.bmp tiles24.bmp tiles48.bmp
post-patch:
@${REINPLACE_CMD} \
-e '/^#define DATADIR/ s|.*|#define DATADIR "${DATADIR}/"|' \
${WRKSRC}/main.h
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${MKDIR} ${DATADIR}
.for f in ${DATAFILES}
${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>