svn commit: r422426 - in head/games: . garden-of-coloured-lights garden-of-coloured-lights/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Sep 19 11:24:51 UTC 2016


Author: amdmi3
Date: Mon Sep 19 11:24:49 2016
New Revision: 422426
URL: https://svnweb.freebsd.org/changeset/ports/422426

Log:
  Garden of coloured lights is an old school 2D vertical shoot-em-up
  with some innovative elements. Innovative graphics, soundtrack and
  game concept. The game itself is very challenging and as you progress,
  you will understand that you are dealing with a true piece of art...
  
  WWW: http://garden.sourceforge.net/

Added:
  head/games/garden-of-coloured-lights/
  head/games/garden-of-coloured-lights/Makefile   (contents, props changed)
  head/games/garden-of-coloured-lights/distinfo   (contents, props changed)
  head/games/garden-of-coloured-lights/files/
  head/games/garden-of-coloured-lights/files/patch-src_stuff.c   (contents, props changed)
  head/games/garden-of-coloured-lights/files/patch-src_stuff.h   (contents, props changed)
  head/games/garden-of-coloured-lights/pkg-descr   (contents, props changed)
  head/games/garden-of-coloured-lights/pkg-plist   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Mon Sep 19 10:58:21 2016	(r422425)
+++ head/games/Makefile	Mon Sep 19 11:24:49 2016	(r422426)
@@ -309,6 +309,7 @@
     SUBDIR += funnyboat
     SUBDIR += galaxis
     SUBDIR += galaxyhack
+    SUBDIR += garden-of-coloured-lights
     SUBDIR += garith
     SUBDIR += gbottler
     SUBDIR += gbrainy

Added: head/games/garden-of-coloured-lights/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/garden-of-coloured-lights/Makefile	Mon Sep 19 11:24:49 2016	(r422426)
@@ -0,0 +1,35 @@
+# Created by: Dmitry Marakasov <amdmi3 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	garden-of-coloured-lights
+PORTVERSION=	1.0.9
+CATEGORIES=	games
+MASTER_SITES=	SF/garden/garden/${PORTVERSION}/
+DISTNAME=	garden-${PORTVERSION}
+
+MAINTAINER=	amdmi3 at FreeBSD.org
+COMMENT=	Old school 2D vertical shoot-em-up with some innovative elements
+
+LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	liballeg.so:devel/allegro
+
+GNU_CONFIGURE=	yes
+USES=		desktop-file-utils localbase
+INSTALLS_ICONS=	yes
+
+DATADIR=	${PREFIX}/share/garden
+
+PORTDOCS=	AUTHORS ChangeLog NEWS README
+PORTDATA=	*
+
+OPTIONS_DEFINE=	DOCS
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+.for f in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
+.endfor
+
+.include <bsd.port.mk>

Added: head/games/garden-of-coloured-lights/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/garden-of-coloured-lights/distinfo	Mon Sep 19 11:24:49 2016	(r422426)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1474068270
+SHA256 (garden-1.0.9.tar.gz) = daf8732c229a4cc04f460514bff1ba05171faada9e19575c72a50a914f2352e3
+SIZE (garden-1.0.9.tar.gz) = 2714783

Added: head/games/garden-of-coloured-lights/files/patch-src_stuff.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/garden-of-coloured-lights/files/patch-src_stuff.c	Mon Sep 19 11:24:49 2016	(r422426)
@@ -0,0 +1,26 @@
+--- src/stuff.c.orig	2015-01-19 21:17:42 UTC
++++ src/stuff.c
+@@ -52,7 +52,7 @@ float decoy_table[ANGLE_1];	// not used
+ float cos_table[ANGLE_1];
+ float sin_table[ANGLE_1];
+ 
+-inline int xpart (int angle, int length);
++int xpart (int angle, int length);
+ 
+ void init_trig (void)
+ {
+@@ -67,12 +67,12 @@ void init_trig (void)
+ 
+ }
+ 
+-inline int xpart (int angle, int length)
++int xpart (int angle, int length)
+ {
+ 	return (cos_table[angle & 1023] * length);
+ }
+ 
+-inline int ypart (int angle, int length)
++int ypart (int angle, int length)
+ {
+ 	return (sin_table[angle & 1023] * length);
+ }

Added: head/games/garden-of-coloured-lights/files/patch-src_stuff.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/garden-of-coloured-lights/files/patch-src_stuff.h	Mon Sep 19 11:24:49 2016	(r422426)
@@ -0,0 +1,13 @@
+--- src/stuff.h.orig	2015-01-19 20:19:08 UTC
++++ src/stuff.h
+@@ -24,8 +24,8 @@ int grand (int number);
+ int crandom (int number);
+ int turn_towards_angle (int angle, int tangle, int turning);
+ int turn_towards_xy (int x1, int y1, int x2, int y2, int angle, int turning);
+-inline int xpart (int angle, int length);
+-inline int ypart (int angle, int length);
++int xpart (int angle, int length);
++int ypart (int angle, int length);
+ int pulsate (int speed, int amount, int county);
+ int angle_difference (int a1, int a2);
+ 

Added: head/games/garden-of-coloured-lights/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/garden-of-coloured-lights/pkg-descr	Mon Sep 19 11:24:49 2016	(r422426)
@@ -0,0 +1,6 @@
+Garden of coloured lights is an old school 2D vertical shoot-em-up
+with some innovative elements. Innovative graphics, soundtrack and
+game concept. The game itself is very challenging and as you progress,
+you will understand that you are dealing with a true piece of art...
+
+WWW: http://garden.sourceforge.net/

Added: head/games/garden-of-coloured-lights/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/garden-of-coloured-lights/pkg-plist	Mon Sep 19 11:24:49 2016	(r422426)
@@ -0,0 +1,4 @@
+bin/garden
+share/appdata/garden.appdata.xml
+share/applications/garden.desktop
+share/icons/hicolor/scalable/apps/garden.svg


More information about the svn-ports-all mailing list