Bug 170311 - [NEW PORT] games/kye: Kye is a puzzle game with arcade game elements
Summary: [NEW PORT] games/kye: Kye is a puzzle game with arcade game elements
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-01 15:10 UTC by nemysis
Modified: 2012-08-04 23:03 UTC (History)
0 users

See Also:


Attachments
.shar (5.48 KB, text/plain)
2012-08-01 15:10 UTC, nemysis
no flags Details
kye.diff (3.78 KB, patch)
2012-08-01 17:13 UTC, nemysis
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description nemysis 2012-08-01 15:10:02 UTC
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@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/

Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new)
Comment 1 Jason Helfman freebsd_committer freebsd_triage 2012-08-01 20:10:02 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-08-04 22:59:29 UTC
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@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@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@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@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@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
+@dirrmtry share/applications
+@dirrm %%PYTHON_SITELIBDIR%%/kye
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Jason Helfman freebsd_committer freebsd_triage 2012-08-04 23:02:23 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!