From owner-svn-ports-head@freebsd.org Thu Apr 13 14:25:06 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9767D3CAE7; Thu, 13 Apr 2017 14:25:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from critical.ch (critical.ch [IPv6:2a01:4f8:c17:de4::1:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "critical.ch", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 81EEB794; Thu, 13 Apr 2017 14:25:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from wiggles.local (dynamic.wline.6rd.res.cust.swisscom.ch [IPv6:2a02:120b:2c62:8260:dad3:85ff:fe79:dd2] (may be forged)) (authenticated bits=0) by critical.ch (8.15.2/8.15.2/critical-1.0) with ESMTPA id v3DEOwLT029098; Thu, 13 Apr 2017 16:25:03 +0200 (CEST) (envelope-from ehaupt@FreeBSD.org) Date: Thu, 13 Apr 2017 16:24:53 +0200 From: Emanuel Haupt To: Alexey Dokuchaev Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r438442 - in head/games/bloboats: . files Message-Id: <20170413162453.a4635b2fae5f2efeae566f51@FreeBSD.org> In-Reply-To: <20170413141642.GA86375@FreeBSD.org> References: <201704131357.v3DDvFAI057645@repo.freebsd.org> <20170413141642.GA86375@FreeBSD.org> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; amd64-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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, 13 Apr 2017 14:25:07 -0000 Alexey Dokuchaev wrote: > On Thu, Apr 13, 2017 at 01:57:15PM +0000, Emanuel Haupt wrote: > > Author: ehaupt > > URL: https://svnweb.freebsd.org/changeset/ports/438442 > > > > Log: > > Provide a desktop file and icon > > > > ... > > +post-install: > > + ${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.desktop ${STAGEDIR} > > ${DESKTOPDIR} > > + ${INSTALL_DATA} ${WRKSRC}/data/images/icon.png \ > > + ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png > > + > > .include > > > > Added: head/games/bloboats/files/bloboats.desktop > > ============================================================================== > > --- /dev/null 00:00:00 1970 (empty, because file is > > newly added) +++ head/games/bloboats/files/bloboats.desktop > > Thu Apr 13 13:57:14 2017 (r438442) @@ -0,0 +1,10 @@ > > +[Desktop Entry] > > +Type=Application > > +Version=1.0 > > +Name=Bloboats > > +GenericName=Boat racing game in the spirit of Elasto Mania or > > X-Moto +Comment=Boat racing game in the spirit of Elasto Mania or > > X-Moto +Icon=bloboats > > +Exec=bloboats > > +Categories=Game; > > +StartupNotify=false > > Wouldn't DESKTOP_ENTRIES be easier way? Indeed. Thanks for the pointer.