svn commit: r302035 - in head/games: . kye kye/files

Jason Helfman jgh at FreeBSD.org
Sat Aug 4 21:59:15 UTC 2012


Author: jgh
Date: Sat Aug  4 21:59:15 2012
New Revision: 302035
URL: http://svn.freebsd.org/changeset/ports/302035

Log:
  add new port: games/kye
  
  This is a clone of the game Kye for Windows, originally by Colin Garbutt. It
  is a puzzle game, which is a little like the old falling-rocks puzzle games,
  and perhaps also inspired a little by Sokoban. But Kye has more variety of
  objects, and so is capable of posing quite complex puzzles.
  
  This clone is written by Colin Phipps <cph at moria.org.uk> in Python and uses
  gtk. So it will run on modern Linux systems easily enough, and indeed should
  work on any system with working Python and pygtk. It works on Windows as well,
  for instance.
  
  WWW: http://games.moria.org.uk/kye/
  
  PR:	ports/170311
  Submitted by:	nemysis at gmx.ch

Added:
  head/games/kye/
  head/games/kye/Makefile   (contents, props changed)
  head/games/kye/distinfo   (contents, props changed)
  head/games/kye/files/
  head/games/kye/files/pkg-message.in   (contents, props changed)
  head/games/kye/pkg-descr   (contents, props changed)
  head/games/kye/pkg-plist   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Sat Aug  4 21:48:24 2012	(r302034)
+++ head/games/Makefile	Sat Aug  4 21:59:15 2012	(r302035)
@@ -449,6 +449,7 @@
     SUBDIR += ktritoc
     SUBDIR += kuklomenos
     SUBDIR += kwappen
+    SUBDIR += kye
     SUBDIR += ladder
     SUBDIR += lander
     SUBDIR += lapispuzzle

Added: head/games/kye/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/kye/Makefile	Sat Aug  4 21:59:15 2012	(r302035)
@@ -0,0 +1,55 @@
+# New Ports collection makefile for:	kye
+# Date created:		17 July 2012
+# Whom:			nemysis at gmx.ch
+#
+# $FreeBSD$
+#
+
+PORTNAME=	kye
+PORTVERSION=	1.0
+CATEGORIES=	games python
+MASTER_SITES=	http://games.moria.org.uk/kye/download/
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DIST_SUBDIR=	kye
+
+MAINTAINER=	nemysis at gmx.ch
+COMMENT=	Puzzle game with arcade game elements
+
+LICENSE=	GPLv2
+
+OPTIONS_DEFINE=	DATA
+OPTIONS_DEFAULT=	DATA
+
+USE_GNOME=	pygtk2 librsvg2
+USE_PYTHON=	yes
+USE_PYDISTUTILS=	yes
+NO_BUILD=	yes
+
+PORTDATA=	*
+PORTDOCS=	NEWS README
+
+SUB_FILES=	pkg-message
+
+.include <bsd.port.options.mk>
+
+post-install:
+# Data
+.if ${PORT_OPTIONS:MDATA}
+	${INSTALL_DATA} ${WRKSRC}/kye-icon.png ${PREFIX}/share/pixmaps/Kye.png
+	${INSTALL_DATA} ${WRKSRC}/kye-edit-icon.png ${PREFIX}/share/pixmaps/Kye-edit.png
+.endif
+
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+.  for f in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+.  endfor
+.endif
+
+# pkg-message
+	@${ECHO_CMD}
+	@${CAT} ${PKGMESSAGE}
+	@${ECHO_CMD}
+
+.include <bsd.port.mk>

Added: head/games/kye/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/kye/distinfo	Sat Aug  4 21:59:15 2012	(r302035)
@@ -0,0 +1,2 @@
+SHA256 (kye/kye-1.0.tar.gz) = d58a9e62a0ec736a072a932603cdc5b3f4890b28c32c346639513d4e247ca747
+SIZE (kye/kye-1.0.tar.gz) = 55245

Added: head/games/kye/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/kye/files/pkg-message.in	Sat Aug  4 21:59:15 2012	(r302035)
@@ -0,0 +1,25 @@
+===============================================================================
+
+Python Kye has been installed.
+
+This package does not include all Python Kye Levels.
+
+To obtain the original extra Levels use the "games/kye-data" Port.
+
+
+In addition, you can search for additional extra Levels here:
+
+    http://kye.8m.com/gfclevels.html
+
+    http://www.classicdosgames.com/game/Kye.html
+
+and other Sites and put it in:
+
+    %%DATADIR%%
+
+
+You could manually change Permissions these Levels with:
+
+    /bin/chmod 444 %%DATADIR%%/*.kye
+
+===============================================================================

Added: head/games/kye/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/kye/pkg-descr	Sat Aug  4 21:59:15 2012	(r302035)
@@ -0,0 +1,11 @@
+This is a clone of the game Kye for Windows, originally by Colin Garbutt. It
+is a puzzle game, which is a little like the old falling-rocks puzzle games,
+and perhaps also inspired a little by Sokoban. But Kye has more variety of
+objects, and so is capable of posing quite complex puzzles.
+
+This clone is written by Colin Phipps <cph at moria.org.uk> in Python and uses
+gtk. So it will run on modern Linux systems easily enough, and indeed should
+work on any system with working Python and pygtk. It works on Windows as well,
+for instance.
+
+WWW: http://games.moria.org.uk/kye/

Added: head/games/kye/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/kye/pkg-plist	Sat Aug  4 21:59:15 2012	(r302035)
@@ -0,0 +1,48 @@
+bin/Kye
+bin/Kye-edit
+%%PYTHON_SITELIBDIR%%/kye/__init__.py
+%%PYTHON_SITELIBDIR%%/kye/__init__.pyc
+%%PYTHON_SITELIBDIR%%/kye/__init__.pyo
+%%PYTHON_SITELIBDIR%%/kye/app.py
+%%PYTHON_SITELIBDIR%%/kye/app.pyc
+%%PYTHON_SITELIBDIR%%/kye/app.pyo
+%%PYTHON_SITELIBDIR%%/kye/canvas.py
+%%PYTHON_SITELIBDIR%%/kye/canvas.pyc
+%%PYTHON_SITELIBDIR%%/kye/canvas.pyo
+%%PYTHON_SITELIBDIR%%/kye/common.py
+%%PYTHON_SITELIBDIR%%/kye/common.pyc
+%%PYTHON_SITELIBDIR%%/kye/common.pyo
+%%PYTHON_SITELIBDIR%%/kye/defaults.py
+%%PYTHON_SITELIBDIR%%/kye/defaults.pyc
+%%PYTHON_SITELIBDIR%%/kye/defaults.pyo
+%%PYTHON_SITELIBDIR%%/kye/dialogs.py
+%%PYTHON_SITELIBDIR%%/kye/dialogs.pyc
+%%PYTHON_SITELIBDIR%%/kye/dialogs.pyo
+%%PYTHON_SITELIBDIR%%/kye/editor.py
+%%PYTHON_SITELIBDIR%%/kye/editor.pyc
+%%PYTHON_SITELIBDIR%%/kye/editor.pyo
+%%PYTHON_SITELIBDIR%%/kye/frame.py
+%%PYTHON_SITELIBDIR%%/kye/frame.pyc
+%%PYTHON_SITELIBDIR%%/kye/frame.pyo
+%%PYTHON_SITELIBDIR%%/kye/game.py
+%%PYTHON_SITELIBDIR%%/kye/game.pyc
+%%PYTHON_SITELIBDIR%%/kye/game.pyo
+%%PYTHON_SITELIBDIR%%/kye/input.py
+%%PYTHON_SITELIBDIR%%/kye/input.pyc
+%%PYTHON_SITELIBDIR%%/kye/input.pyo
+%%PYTHON_SITELIBDIR%%/kye/leveledit.py
+%%PYTHON_SITELIBDIR%%/kye/leveledit.pyc
+%%PYTHON_SITELIBDIR%%/kye/leveledit.pyo
+%%PYTHON_SITELIBDIR%%/kye/objects.py
+%%PYTHON_SITELIBDIR%%/kye/objects.pyc
+%%PYTHON_SITELIBDIR%%/kye/objects.pyo
+%%PYTHON_SITELIBDIR%%/kye/palette.py
+%%PYTHON_SITELIBDIR%%/kye/palette.pyc
+%%PYTHON_SITELIBDIR%%/kye/palette.pyo
+%%PYTHON_SITELIBDIR%%/kye/stbar.py
+%%PYTHON_SITELIBDIR%%/kye/stbar.pyc
+%%PYTHON_SITELIBDIR%%/kye/stbar.pyo
+share/pixmaps/Kye-edit.png
+share/pixmaps/Kye.png
+ at dirrmtry share/applications
+ at dirrm %%PYTHON_SITELIBDIR%%/kye



More information about the svn-ports-head mailing list