0d2725682b
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)
35 lines
986 B
Makefile
35 lines
986 B
Makefile
# New ports collection makefile for: hex-a-hop
|
|
# Date created: 21 February 2006
|
|
# Whom: jamie
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hex-a-hop
|
|
PORTVERSION= 1.0.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://ftp.bishopston.net/freebsd/distfiles/ \
|
|
ftp://ftp.bishopston.net/freebsd/distfiles/ \
|
|
http://critical.ch/distfiles/
|
|
|
|
MAINTAINER= jamie@bishopston.net
|
|
COMMENT= A puzzle game based on hexagonal tiles
|
|
|
|
USE_SDL= sdl
|
|
|
|
MAKEFILE= Makefile.FreeBSD
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
MAKE_ARGS+= SYSTEM_INSTALL_DIR="${PREFIX}/games/hex-a-hop/"
|
|
DESKTOP_ENTRIES="Hex-a-Hop" "A puzzle game based on hexagonal tiles" \
|
|
"${PREFIX}/games/hex-a-hop/graphics/icon.bmp" \
|
|
"hex-a-hop" "Application;LogicGame;Game;" false
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hex-a-hop ${PREFIX}/bin
|
|
${MKDIR} ${PREFIX}/games/hex-a-hop/graphics/
|
|
${INSTALL_DATA} ${WRKSRC}/graphics/* ${PREFIX}/games/hex-a-hop/graphics
|
|
${INSTALL_DATA} ${WRKSRC}/levels.dat ${PREFIX}/games/hex-a-hop
|
|
|
|
.include <bsd.port.mk>
|