Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Aug 2012 13:24:40 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302682 - in head/games: . gottet
Message-ID:  <201208171324.q7HDOeFh074941@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Fri Aug 17 13:24:40 2012
New Revision: 302682
URL: http://svn.freebsd.org/changeset/ports/302682

Log:
  Gottet is a tetris clone.
  
  WWW: http://gottcode.org/gottet/
  
  PR:		ports/167235
  Submitted by:	nemysis <nemysis@gmx.ch>

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

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Fri Aug 17 13:16:43 2012	(r302681)
+++ head/games/Makefile	Fri Aug 17 13:24:40 2012	(r302682)
@@ -345,6 +345,7 @@
     SUBDIR += gomoku
     SUBDIR += gondola
     SUBDIR += goonies
+    SUBDIR += gottet
     SUBDIR += gracer
     SUBDIR += greed
     SUBDIR += gretools

Added: head/games/gottet/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gottet/Makefile	Fri Aug 17 13:24:40 2012	(r302682)
@@ -0,0 +1,53 @@
+# New Ports collection makefile for:	gottet
+# Date created:		21 April 2012
+# Whom:			nemysis@gmx.ch
+#
+# $FreeBSD$
+#
+
+PORTNAME=	gottet
+PORTVERSION=	1.0.4
+CATEGORIES=	games
+MASTER_SITES=	http://gottcode.org/${PORTNAME}/
+EXTRACT_SUFX=	-src.tar.bz2
+
+MAINTAINER=	nemysis@gmx.ch
+COMMENT=	A Tetris clone
+
+LICENSE=	GPLv3
+
+USE_BZIP2=	yes
+USE_QT_VER=	4
+QT_COMPONENTS=	moc_build qmake_build rcc_build iconengines imageformats
+USE_GMAKE=	yes
+MAKE_JOBS_SAFE=	yes
+
+PORTDOCS=	ChangeLog
+
+PLIST_FILES=	bin/${PORTNAME} \
+		share/applications/${PORTNAME}.desktop \
+		share/pixmaps/${PORTNAME}.png
+PLIST_DIRSTRY=	share/applications
+
+.include <bsd.port.options.mk>
+
+do-configure:
+	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
+		${QMAKE} ${QMAKEFLAGS}
+
+do-install:
+# Executable
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+
+# Pixmaps and Desktop
+	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
+	${MKDIR} ${PREFIX}/share/applications
+	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
+
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/games/gottet/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gottet/distinfo	Fri Aug 17 13:24:40 2012	(r302682)
@@ -0,0 +1,2 @@
+SHA256 (gottet-1.0.4-src.tar.bz2) = 7144e035b6e575eecea9920ee301487915d3866a2cb0e40622fe9e45d83cb379
+SIZE (gottet-1.0.4-src.tar.bz2) = 29121

Added: head/games/gottet/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gottet/pkg-descr	Fri Aug 17 13:24:40 2012	(r302682)
@@ -0,0 +1,3 @@
+Gottet is a tetris clone.
+
+WWW: http://gottcode.org/gottet/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208171324.q7HDOeFh074941>