From owner-svn-ports-head@FreeBSD.ORG Sat May 25 15:41:32 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3B6EBE3A; Sat, 25 May 2013 15:41:32 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 13BE5794; Sat, 25 May 2013 15:41:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4PFfV1E085463; Sat, 25 May 2013 15:41:31 GMT (envelope-from thierry@svn.freebsd.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4PFfVZ9085460; Sat, 25 May 2013 15:41:31 GMT (envelope-from thierry@svn.freebsd.org) Message-Id: <201305251541.r4PFfVZ9085460@svn.freebsd.org> From: Thierry Thomas Date: Sat, 25 May 2013 15:41:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319059 - in head/games/monsterz: . files 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.14 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: Sat, 25 May 2013 15:41:32 -0000 Author: thierry Date: Sat May 25 15:41:31 2013 New Revision: 319059 URL: http://svnweb.freebsd.org/changeset/ports/319059 Log: Fix plist and installation by packages. Reported by: pointyhat via miwi Modified: head/games/monsterz/Makefile (contents, props changed) head/games/monsterz/files/patch-Makefile (contents, props changed) head/games/monsterz/pkg-plist (contents, props changed) Modified: head/games/monsterz/Makefile ============================================================================== --- head/games/monsterz/Makefile Sat May 25 14:55:19 2013 (r319058) +++ head/games/monsterz/Makefile Sat May 25 15:41:31 2013 (r319059) @@ -1,13 +1,9 @@ -# New ports collection makefile for: monsterz -# Date created: Fri 29 apr 2005 -# Whom: thierry@pompo.net -# +# Created by: thierry@pompo.net # $FreeBSD$ -# PORTNAME= monsterz PORTVERSION= 0.7.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= http://sam.zoy.org/monsterz/ Modified: head/games/monsterz/files/patch-Makefile ============================================================================== --- head/games/monsterz/files/patch-Makefile Sat May 25 14:55:19 2013 (r319058) +++ head/games/monsterz/files/patch-Makefile Sat May 25 15:41:31 2013 (r319059) @@ -1,5 +1,5 @@ ---- Makefile.orig Fri May 12 18:39:38 2006 -+++ Makefile Sat May 13 19:06:56 2006 +--- Makefile.orig 2007-12-17 23:05:00.000000000 +0100 ++++ Makefile 2013-05-25 16:56:29.000000000 +0200 @@ -1,5 +1,5 @@ -prefix = /usr/local @@ -16,3 +16,12 @@ bitmap: $(BITMAP) +@@ -50,7 +50,7 @@ + cp $(BITMAP) $(DESTDIR)$(pkgdatadir)/graphics/ + cp $(SOUND) $(MUSIC) $(DESTDIR)$(pkgdatadir)/sound/ + mkdir -p $(DESTDIR)$(scoredir) +- test -f $(DESTDIR)$(scorefile) || echo "" > $(DESTDIR)$(scorefile) ++ test -f $(DESTDIR)$(scorefile) || /usr/bin/touch $(DESTDIR)$(scorefile) + chown root:games $(DESTDIR)$(scorefile) + chmod g+w $(DESTDIR)$(scorefile) + Modified: head/games/monsterz/pkg-plist ============================================================================== --- head/games/monsterz/pkg-plist Sat May 25 14:55:19 2013 (r319058) +++ head/games/monsterz/pkg-plist Sat May 25 15:41:31 2013 (r319059) @@ -26,5 +26,5 @@ share/games/monsterz/sound/whip.wav @dirrmtry share/games @dirrmtry games @exec if [ ! -e %%SCOREDIR%% ] ; then mkdir -p -m 775 %%SCOREDIR%% ; fi -@exec [ -e %%SCOREDIR%%/monsterz ] || touch %%SCOREDIR%%/monsterz && chmod g+w %%SCOREDIR%%/monsterz +@exec [ -e %%SCOREDIR%%/monsterz ] || touch %%SCOREDIR%%/monsterz && chmod g+w %%SCOREDIR%%/monsterz && chown root:games %%SCOREDIR%%/monsterz @unexec if [ ! -s %%SCOREDIR%%/monsterz ] ; then rm -f %%SCOREDIR%%/monsterz && rm -r %%SCOREDIR%% || true ; fi