svn commit: r302618 - in head/games: . gti

TAKATSU Tomonari tota at FreeBSD.org
Thu Aug 16 08:06:43 UTC 2012


Author: tota
Date: Thu Aug 16 08:06:42 2012
New Revision: 302618
URL: http://svn.freebsd.org/changeset/ports/302618

Log:
  - Add a new port: games/gti
  
    It's a program that displays a badly made ASCII-art animation to
    punish you for your typing error - and after that magically launches
    the command you meant to launch.
  
    The code is available under an MIT-like license on github - though
    of course anybody can write his or her own version in a couple of
    minutes.
  
    This whole thing is heavily inspired by sl, which displays a steam
    locomotive. However, gti is actually nicer than sl as it at least
    executes git after the animation. :-)
  
    WWW:	http://r-wos.org/hacks/gti

Added:
  head/games/gti/
  head/games/gti/Makefile   (contents, props changed)
  head/games/gti/distinfo   (contents, props changed)
  head/games/gti/pkg-descr   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Thu Aug 16 07:42:00 2012	(r302617)
+++ head/games/Makefile	Thu Aug 16 08:06:42 2012	(r302618)
@@ -355,6 +355,7 @@
     SUBDIR += grubinvaders
     SUBDIR += gshisen
     SUBDIR += gtetrinet
+    SUBDIR += gti
     SUBDIR += gtkatlantic
     SUBDIR += gtkballs
     SUBDIR += gtklife

Added: head/games/gti/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gti/Makefile	Thu Aug 16 08:06:42 2012	(r302618)
@@ -0,0 +1,33 @@
+# New ports collection makefile for:	gti
+# Date created:		2012-08-16
+# Whom:			TAKATSU Tomonari <tota at FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME=	gti
+PORTVERSION=	0.0.2012.08.15
+CATEGORIES=	games
+MASTER_SITES=	https://github.com/rwos/gti/tarball/master/
+DISTNAME=	${GITNAME}-${GITVERSION}
+
+MAINTAINER=	tota at FreeBSD.org
+COMMENT=	Just a silly git launcher, basically. Inspired by sl
+
+GITUSER=	rwos
+GITREPONAME=	${PORTNAME}
+GITNAME=	${GITUSER}-${GITREPONAME}
+GITVERSION=	ee63b3f
+
+FETCH_ARGS=	-pRr
+ALL_TARGET=	${PORTNAME}
+
+PLIST_FILES=	bin/${PORTNAME}
+
+do-build:
+	@${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c
+
+do-install:
+	@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/games/gti/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gti/distinfo	Thu Aug 16 08:06:42 2012	(r302618)
@@ -0,0 +1,2 @@
+SHA256 (rwos-gti-ee63b3f.tar.gz) = f7c14215a35d502be7195b601039ab40fedd70c5c7bdde2d2f8d190ac9bb049d
+SIZE (rwos-gti-ee63b3f.tar.gz) = 1583

Added: head/games/gti/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gti/pkg-descr	Thu Aug 16 08:06:42 2012	(r302618)
@@ -0,0 +1,13 @@
+It's a program that displays a badly made ASCII-art animation to
+punish you for your typing error - and after that magically launches
+the command you meant to launch.
+
+The code is available under an MIT-like license on github - though
+of course anybody can write his or her own version in a couple of
+minutes.
+
+This whole thing is heavily inspired by sl, which displays a steam
+locomotive. However, gti is actually nicer than sl as it at least
+executes git after the animation. :-)
+
+WWW:	http://r-wos.org/hacks/gti



More information about the svn-ports-all mailing list