From owner-svn-ports-head@FreeBSD.ORG Thu Aug 16 08:06:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40A7F106564A; Thu, 16 Aug 2012 08:06:43 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2BC668FC08; Thu, 16 Aug 2012 08:06:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7G86hMc081759; Thu, 16 Aug 2012 08:06:43 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7G86gWq081754; Thu, 16 Aug 2012 08:06:42 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201208160806.q7G86gWq081754@svn.freebsd.org> From: TAKATSU Tomonari Date: Thu, 16 Aug 2012 08:06:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302618 - in head/games: . gti X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 08:06:43 -0000 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 +# +# $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@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 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