mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +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
42 lines
859 B
Makefile
42 lines
859 B
Makefile
# New ports collection makefile for: brikx
|
|
# Date created: 07 Sep 2009
|
|
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= brikx
|
|
PORTVERSION= 0.4.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://mirror.amdmi3.ru/distfiles/
|
|
# SF/brikx/Brikx/${PORTVERSION}
|
|
EXTRACT_SUFX= -src.tar.bz2
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Puzzle game - remove all tiles from the table
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_SDL= sdl mixer image ttf
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
DESKTOP_ENTRIES="Brikx" \
|
|
"Puzzle game" \
|
|
"${DATADIR}/tilesets/stone/49.png" \
|
|
"brikx" \
|
|
"Game;LogicGame;" \
|
|
false
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/DIR_DATA/ s|data/|${DATADIR}/|' \
|
|
${WRKSRC}/src/brikx.h
|
|
|
|
post-install:
|
|
${MKDIR} ${DATADIR}
|
|
cd ${WRKSRC}/src/data && ${COPYTREE_SHARE} "*" ${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|