svn commit: r382290 - in head/games: . 2048-qt

Steve Wills swills at FreeBSD.org
Thu Mar 26 02:52:16 UTC 2015


Author: swills
Date: Thu Mar 26 02:52:14 2015
New Revision: 382290
URL: https://svnweb.freebsd.org/changeset/ports/382290
QAT: https://qat.redports.org/buildarchive/r382290/

Log:
  games/2048-qt: create port
  
  A cross platform clone of 2048, implemented in Qt.

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

Added: head/games/2048-qt/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/2048-qt/Makefile	Thu Mar 26 02:52:14 2015	(r382290)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	2048-qt
+PORTVERSION=	0.1.5
+CATEGORIES=	games
+MASTER_SITES=	GH
+
+MAINTAINER=	swills at FreeBSD.org
+COMMENT=	2048 game implemented in QT
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	xiaoyong
+GH_PROJECT=	${PORTNAME}
+GH_TAGNAME=	v${DISTVERSION}
+
+USES=		gmake pkgconfig qmake tar:bzip2
+USE_QT5=	core gui network widgets qml quick buildtools quickcontrols
+
+WRKSRC=		${WRKDIR}/2048-Qt-${PORTVERSION}
+PLIST_FILES=	bin/2048-qt
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/2048-qt ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/games/2048-qt/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/2048-qt/distinfo	Thu Mar 26 02:52:14 2015	(r382290)
@@ -0,0 +1,2 @@
+SHA256 (2048-qt-0.1.5.tar.bz2) = b895ecdbc09127215baf2633b513726cb39e24f22cc309ec390ac9bdae9b224c
+SIZE (2048-qt-0.1.5.tar.bz2) = 1859979

Added: head/games/2048-qt/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/2048-qt/pkg-descr	Thu Mar 26 02:52:14 2015	(r382290)
@@ -0,0 +1,3 @@
+A cross platform clone of 2048, implemented in Qt.
+
+WWW: https://github.com/xiaoyong/2048-Qt

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Thu Mar 26 02:43:02 2015	(r382289)
+++ head/games/Makefile	Thu Mar 26 02:52:14 2015	(r382290)
@@ -6,6 +6,7 @@
     SUBDIR += 0ad
     SUBDIR += 0verkill
     SUBDIR += 2048
+    SUBDIR += 2048-qt
     SUBDIR += 3dc
     SUBDIR += 3dpong
     SUBDIR += 3omns


More information about the svn-ports-head mailing list