1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/games/gemdropx/Makefile
Rusmir Dusko a4baad5f5a - Change maintainer email of my ports to @FreeBSD.org
Approved by:	pawel / wg (mentors, implicit)
2013-12-18 10:20:48 +00:00

59 lines
1.2 KiB
Makefile

# Created by: Andrey Zakhvatov
# $FreeBSD$
PORTNAME= gemdropx
PORTVERSION= 0.9
PORTREVISION= 9
CATEGORIES= games
MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/gemdropx/src/ \
ftp://ftp.billsgames.com/unix/x/gemdropx/src/
MAINTAINER= nemysis@FreeBSD.org
COMMENT= Interesting one-player puzzle game for X (SDL)
LICENSE= GPLv2
ALL_TARGET= ${PORTNAME}
USE_SDL= image mixer sdl
USE_GMAKE= yes
PLIST_FILES= bin/${PORTNAME} \
share/pixmaps/${PORTNAME}.xmp
PORTDATA= *
PORTDOCS= AUTHORS.txt CHANGES.txt ICON.txt README.txt TODO.txt
NO_STAGE= yes
.include <bsd.port.options.mk>
post-patch:
# Fix SDL, CFLAGS
@${REINPLACE_CMD} \
-e 's|sdl-config|$(SDL_CONFIG)|' \
-e 's|CC=gcc|CC?=g++|' \
-e 's|CXX=gcc|CXX?=g++|' \
-e 's|CFLAGS=-Wall $(SDL_CFLAGS)|CFLAGS+=$(SDL_CFLAGS)|' \
${WRKSRC}/Makefile
do-install:
# Executable
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
# Data
${MKDIR} ${DATADIR}
@(cd ${WRKSRC}/data && ${COPYTREE_SHARE} "images sounds" ${DATADIR})
# Pixmaps
${INSTALL_DATA} ${WRKSRC}/data/images/gemdropx-icon.xpm ${PREFIX}/share/pixmaps/${PORTNAME}.xmp
# Documentation
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>