090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
37 lines
927 B
Makefile
37 lines
927 B
Makefile
# New ports collection makefile for: Hex
|
|
# Date created: 9 Aug 1999
|
|
# Whom: Will Andrews <andrews@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hex
|
|
PORTVERSION= 0.0.2
|
|
PORTREVISION= 5
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.earth.li/projectpurple/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Clone of "Puzzle Bobble" for X11 that uses GTK/Imlib
|
|
|
|
USE_GNOME= imlib
|
|
MAKE_ENV= GRAPHICPATH="${GRAPHICPATH}" LEVELPATH="${LEVELPATH}"
|
|
|
|
GRAPHICPATH= ${PREFIX}/share/hex/graphics
|
|
LEVELPATH= ${PREFIX}/share/hex/levels
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hex ${PREFIX}/bin
|
|
@${MKDIR} ${GRAPHICPATH}
|
|
${INSTALL_DATA} ${WRKSRC}/graphics/*.png ${GRAPHICPATH}
|
|
@${MKDIR} ${LEVELPATH}
|
|
${INSTALL_DATA} ${WRKSRC}/levels/Level1 ${LEVELPATH}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/hex
|
|
.for file in HISTORY README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/hex
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|