From owner-svn-ports-all@FreeBSD.ORG Wed Mar 13 11:27:54 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4E7DF68C; Wed, 13 Mar 2013 11:27:54 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id AE60097F; Wed, 13 Mar 2013 11:27:53 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:3138] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id r2DBRjkN010149 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Wed, 13 Mar 2013 15:27:46 +0400 (MSK) From: Max Brazhnikov To: Beech Rintoul Subject: Re: svn commit: r314005 - head/games/BillardGL Date: Wed, 13 Mar 2013 11:28:50 +0000 Message-ID: <2189624.haRRKWSJcB@mercury.ph.man.ac.uk> User-Agent: KMail/4.9.5 (FreeBSD/9.1-STABLE; KDE/4.10.1; amd64; ; ) In-Reply-To: <201303122246.r2CMktfM062504@svn.freebsd.org> References: <201303122246.r2CMktfM062504@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, nemysis@gmx.ch, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 11:27:54 -0000 On Tue, 12 Mar 2013 22:46:55 +0000Tue Mar 12 22:46:55 2013 Beech Rintoul wrote: > Author: beech > Date: Tue Mar 12 22:46:55 2013 > New Revision: 314005 > URL: http://svnweb.freebsd.org/changeset/ports/314005 > > Log: > - Makefile tweaks > - Add Desktop entries, icons, removed all Notes > - Shorten header > - Bump portrevision > > PR: ports/173347 > Submitted by: nemysis > > Modified: > head/games/BillardGL/Makefile > head/games/BillardGL/distinfo (contents, props changed) > > Modified: head/games/BillardGL/Makefile > ============================================================================== > --- head/games/BillardGL/Makefile Tue Mar 12 22:15:57 2013 (r314004) > +++ head/games/BillardGL/Makefile Tue Mar 12 22:46:55 2013 (r314005) > @@ -1,18 +1,14 @@ > -# New ports collection makefile for: BillardGL > -# Date created: 02 Jan 2004 > -# Whom: Igor Pokrovsky > -# > +# Created By: Igor Pokrovsky > # $FreeBSD$ > -# > > PORTNAME= BillardGL > PORTVERSION= 1.75 > -PORTREVISION= 8 > +PORTREVISION= 9 > CATEGORIES= games > -MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME:L}/${PORTNAME}%20${PORTVERSION}/ \ > +MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME:L}/${PORTNAME}%20${PORTVERSION}/:game \ > SF/nemysisfreebsdp/:icons > -DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ > - ${PORTNAME}-LP-010.zip \ > +DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:game \ > + ${PORTNAME}-LP-010.zip:game \ > ${PORTNAME}_icons.tar.gz:icons > DIST_SUBDIR= ${PORTNAME:L} > > @@ -31,14 +27,22 @@ USE_XORG= xmu xext x11 xi > USE_GL= glut > > PLIST_FILES= bin/${PORTNAME} \ > - share/pixmaps/${PORTNAME}_48.png \ > - share/pixmaps/${PORTNAME}_64.png \ > - share/pixmaps/${PORTNAME}_72.png \ > - share/pixmaps/${PORTNAME}_96.png > + share/pixmaps/${PORTNAME}.png \ > + share/icons/hicolor/32x32/apps/${PORTNAME}.png \ > + share/icons/hicolor/48x48/apps/${PORTNAME}.png \ > + share/icons/hicolor/64x64/apps/${PORTNAME}.png \ > + share/icons/hicolor/72x72/apps/${PORTNAME}.png \ > + share/icons/hicolor/96x96/apps/${PORTNAME}.png > > PORTDATA= * > PORTDOCS= README > > +INSTALLS_ICONS= yes > +ICON_SIZES= 32x32 48x48 64x64 72x72 96x96 > + > +DESKTOP_ENTRIES="BillardGL" "${COMMENT}" "${PORTNAME}" \ > + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} You may leave second field empty, the framework will use port's ${COMMENT} then. The last field must be literal 'true' or 'false'. If you are not sure whether the application supports start-up notification just leave it empty. Cheers, Max