From owner-svn-ports-head@FreeBSD.ORG Sun May 31 17:41:44 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7D341E7; Sun, 31 May 2015 17:41:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) 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 9579C171D; Sun, 31 May 2015 17:41:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4VHfips078070; Sun, 31 May 2015 17:41:44 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4VHfiwW078069; Sun, 31 May 2015 17:41:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201505311741.t4VHfiwW078069@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 31 May 2015 17:41:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388124 - 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.20 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: Sun, 31 May 2015 17:41:44 -0000 Author: swills Date: Sun May 31 17:41:43 2015 New Revision: 388124 URL: https://svnweb.freebsd.org/changeset/ports/388124 Log: games/2048-qt: cleanups Install icons and desktop file Avoid requiring build tools at runtime Modified: head/games/2048-qt/Makefile Modified: head/games/2048-qt/Makefile ============================================================================== --- head/games/2048-qt/Makefile Sun May 31 17:40:24 2015 (r388123) +++ head/games/2048-qt/Makefile Sun May 31 17:41:43 2015 (r388124) @@ -3,6 +3,7 @@ PORTNAME= 2048-qt PORTVERSION= 0.1.5 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= GH @@ -14,11 +15,15 @@ GH_ACCOUNT= xiaoyong GH_PROJECT= 2048-Qt USES= gmake pkgconfig qmake tar:bzip2 -USE_QT5= core gui network widgets qml quick buildtools quickcontrols +USE_QT5= core gui network widgets qml quick buildtools_build quickcontrols -PLIST_FILES= bin/2048-qt +PLIST_FILES= bin/2048-qt ${DESKTOPDIR}/${PORTNAME}.desktop \ + share/pixmaps/${PORTNAME}.png do-install: ${INSTALL_PROGRAM} ${WRKSRC}/2048-qt ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/icons/256x256/apps/2048-qt.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR} .include