1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/games/pathological/Makefile
Martin Wilke 0d96c2ab66 - Fix start crash
- Use SF macro

PR:		120275
Submitted by:	Dmitry Marakasov <amdmi3@amdmi3.ru>
Approved by:	maintainer
2008-02-20 13:20:55 +00:00

44 lines
1.1 KiB
Makefile

# New ports collection makefile for: pathological
# Date created: 15 Sept 2003
# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu>
#
# $FreeBSD$
#
PORTNAME= pathological
PORTVERSION= 1.1.3
PORTREVISION= 4
CATEGORIES= games
MASTER_SITES= SF
MAINTAINER= janos.mohacsi@bsd.hu
COMMENT= Enriched clone of the game "Logical"
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game
USE_PYTHON= yes
NO_BUILD= yes
MAN6= pathological.6
MANCOMPRESSED= yes
DOC_FILES= favicon.ico index.html
do-install:
@${MKDIR} ${DATADIR}
(cd ${WRKSRC}; tar -cf - circuits graphics music sounds pathological.ico pathological.py pathological.xpm) | \
(cd ${DATADIR}; tar --unlink -xf -)
@printf "#!/bin/sh\ncd ${DATADIR} && \
exec ${PYTHON_CMD} ${DATADIR}/pathological.py\n" > ${WRKDIR}/pathological.sh
@${INSTALL_SCRIPT} ${WRKDIR}/pathological.sh ${PREFIX}/bin/pathological
.ifndef(NO_INSTALL_MANPAGES)
${INSTALL_MAN} ${WRKSRC}/${MAN6}.gz ${MAN6PREFIX}/man/man6/
.endif
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/html/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>