From owner-svn-ports-all@FreeBSD.ORG Sun May 12 12:25:34 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 2B925BA4; Sun, 12 May 2013 12:25:34 +0000 (UTC) (envelope-from danfe@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 1E6CC97D; Sun, 12 May 2013 12:25:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4CCPXcb092612; Sun, 12 May 2013 12:25:34 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4CCPXPf092611; Sun, 12 May 2013 12:25:33 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201305121225.r4CCPXPf092611@svn.freebsd.org> From: Alexey Dokuchaev Date: Sun, 12 May 2013 12:25:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317950 - head/games/quake-dpmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Sun, 12 May 2013 12:25:34 -0000 Author: danfe Date: Sun May 12 12:25:33 2013 New Revision: 317950 URL: http://svnweb.freebsd.org/changeset/ports/317950 Log: Cleanup Makefile; drop maintainership. Modified: head/games/quake-dpmod/Makefile Modified: head/games/quake-dpmod/Makefile ============================================================================== --- head/games/quake-dpmod/Makefile Sun May 12 12:15:23 2013 (r317949) +++ head/games/quake-dpmod/Makefile Sun May 12 12:25:33 2013 (r317950) @@ -1,9 +1,5 @@ -# New ports collection makefile for: quake-dpmod -# Date created: 14 Sep 2005 -# Whom: Alejandro Pulver -# +# Created by: Alejandro Pulver # $FreeBSD$ -# PORTNAME= dpmod PORTVERSION= 20071120 @@ -13,7 +9,7 @@ MASTER_SITES= http://offload1.icculus.or PKGNAMEPREFIX= ${Q1PKGNAMEPREFIX} DISTNAME= darkplacesmod${PORTVERSION} -MAINTAINER= danfe@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Quake 1 modification (for DarkPlaces) RUN_DEPENDS= ${LOCALBASE}/share/darkplaces/dummy:${PORTSDIR}/games/darkplaces @@ -26,16 +22,13 @@ DATADIR= ${Q1DIR}/${PORTNAME} post-extract: # Remove CVS directories - @${FIND} ${WRKDIR} -type d -name CVS -print0 | \ - ${XARGS} -0 ${RM} -rf - + @${FIND} ${WRKDIR} -type d -name CVS -print0 | ${XARGS} -0 ${RM} -rf # Fix permissions @${CHMOD} go-w ${WRKDIR}/dpmod/progs.dat do-install: - ${MKDIR} ${DATADIR} - ${CP} -R ${WRKSRC}/dpmod/* ${DATADIR} + @${MKDIR} ${DATADIR} + ${CP} -a ${WRKSRC}/dpmod/* ${DATADIR} .include "${.CURDIR}/../quake-data/Makefile.include" - .include