From owner-svn-ports-head@FreeBSD.ORG Thu Mar 26 02:52:16 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B83341C7; Thu, 26 Mar 2015 02:52:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88E0EC7D; Thu, 26 Mar 2015 02:52:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2Q2qGtv073570; Thu, 26 Mar 2015 02:52:16 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2Q2qFSN073565; Thu, 26 Mar 2015 02:52:15 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201503260252.t2Q2qFSN073565@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 26 Mar 2015 02:52:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382290 - in head/games: . 2048-qt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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, 26 Mar 2015 02:52:16 -0000 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@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 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