diff options
author | pav <pav@FreeBSD.org> | 2003-11-17 11:06:06 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2003-11-17 11:06:06 +0800 |
commit | c7af43a1b71378904debc8ccb2066c5c9a94a5eb (patch) | |
tree | b16ca39c12fe2de9ee65786b21d0cace1d6e2981 /games/pathological/Makefile | |
parent | 2ad0fc40b7f6aaa9e53bcf9c29c6f5437814e094 (diff) | |
download | freebsd-ports-gnome-c7af43a1b71378904debc8ccb2066c5c9a94a5eb.tar.gz freebsd-ports-gnome-c7af43a1b71378904debc8ccb2066c5c9a94a5eb.tar.zst freebsd-ports-gnome-c7af43a1b71378904debc8ccb2066c5c9a94a5eb.zip |
Pathological is an enriched clone of game Logical. Features
- Sharp 800x600 graphics
- 50 diverse and challenging levels (more to come...)
- A cool 6-minute ambient soundtrack by an award-winning musician
And it reminds me my old favourite game Marble Drop.
PR: ports/59031
Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
Approved by: adamw (mentor)
Diffstat (limited to 'games/pathological/Makefile')
-rw-r--r-- | games/pathological/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/games/pathological/Makefile b/games/pathological/Makefile new file mode 100644 index 000000000000..e8fbd32b9d08 --- /dev/null +++ b/games/pathological/Makefile @@ -0,0 +1,43 @@ +# 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 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= janos.mohacsi@bsd.hu +COMMENT= Pathological is an 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> |