From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 1 18:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA6FA1065743 for ; Mon, 1 Oct 2012 18:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B58268FC19 for ; Mon, 1 Oct 2012 18:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q91IABrK014367 for ; Mon, 1 Oct 2012 18:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q91IAB1p014361; Mon, 1 Oct 2012 18:10:11 GMT (envelope-from gnats) Resent-Date: Mon, 1 Oct 2012 18:10:11 GMT Resent-Message-Id: <201210011810.q91IAB1p014361@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1D62106566C for ; Mon, 1 Oct 2012 18:02:05 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 5B4D88FC12 for ; Mon, 1 Oct 2012 18:02:05 +0000 (UTC) Received: from localhost.localdomain (ZT037251.ppp.dion.ne.jp [59.128.37.251]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 230512BC03B for ; Tue, 2 Oct 2012 03:02:02 +0900 (JST) Message-Id: <20121002025412.46334f6a228ef9bbb7488bda@yahoo.com> Date: Tue, 2 Oct 2012 02:54:12 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172239: games/zephulor: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 18:10:12 -0000 >Number: 172239 >Category: ports >Synopsis: games/zephulor: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 01 18:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE - Support USE_PYTHON_RUN - Support COPYTREE_SHARE >How-To-Repeat: >Fix: diff -urN /usr/ports/games/zephulor/Makefile games/zephulor/Makefile --- /usr/ports/games/zephulor/Makefile 2011-02-27 13:54:37.000000000 +0900 +++ games/zephulor/Makefile 2012-09-27 14:20:34.000000000 +0900 @@ -9,18 +9,26 @@ PORTVERSION= 1 PORTREVISION= 3 CATEGORIES= games -MASTER_SITES= http://www.hollowworks.com/downloads/adventuresonplanetzephulor/files/ +MASTER_SITES= SF/apz/apz/stable DISTNAME= ${PORTNAME}-source MAINTAINER= ports@FreeBSD.org COMMENT= Adventures on Planet Zephulor -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \ - ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter +LICENSE= GPLv2 LGPL20 +LICENSE_COMB= multi + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>0:${PORTSDIR}/devel/py-game \ + ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter + +OPTIONS_DEFINE= DOCS -USE_PYTHON= yes NO_BUILD= yes +USE_PYTHON_RUN= yes + +.include + post-patch: # Fix path to python interpreter @${REINPLACE_CMD} -e 's|#!.*python|#!${PYTHON_CMD}|' \ @@ -50,7 +58,7 @@ .endfor # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in README manual readme-chared readme-maploadtool \ readme-scnloadtool @@ -73,19 +81,12 @@ .endfor # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/maptool ${INSTALL_DATA} ${WRKSRC}/maptool/manual.txt ${DOCSDIR}/maptool .endif # Data - ${CP} -R ${WRKSRC}/data ${DATADIR} - -# Fix wrong permissions - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR} - ${FIND} ${DATADIR}/data -type f -print0 | \ - ${XARGS} -0 ${CHMOD} ${SHAREMODE} - ${FIND} ${DATADIR}/data -type d -print0 | \ - ${XARGS} -0 ${CHMOD} ${BINMODE} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} data ${DATADIR}) .include diff -urN /usr/ports/games/zephulor/pkg-descr games/zephulor/pkg-descr --- /usr/ports/games/zephulor/pkg-descr 2011-10-24 13:15:53.000000000 +0900 +++ games/zephulor/pkg-descr 2012-09-27 14:14:11.000000000 +0900 @@ -1,13 +1,14 @@ -The bulk of the game play involves finding power-ups and hidden areas and -avoiding or squashing strange alien monsters bent on your destruction. +The bulk of the game play involves finding power-ups and hidden areas +and avoiding or squashing strange alien monsters bent on your +destruction. There are a few hidden areas, and in several locations, the player will experience different levels based upon which path is chosen. -There are no lives or continues in the game. If the player dies, he/she simply -restarts at the beginning of the level. All creatures and power-ups are -persistent in each level, in other words, if all but one enemy has been killed -on a level when the player dies, there will only be that remaining creature as -the player restarts. +There are no lives or continues in the game. If the player dies, he/she +simply restarts at the beginning of the level. All creatures and +power-ups are persistent in each level, in other words, if all but one +enemy has been killed on a level when the player dies, there will only +be that remaining creature as the player restarts. -WWW: http://games.hollowworks.com/ +WWW: http://www.hollowworks.com/apz/ >Release-Note: >Audit-Trail: >Unformatted: