diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-05-12 12:25:33 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-05-12 12:25:33 +0000 |
commit | 3f538e9e3bf86b51e39aaef90be4001c416a40f9 (patch) | |
tree | e8e24aceadec97e37b6493e32e6b10f0e54b492d /games/quake-dpmod | |
parent | 5c1330f770ae32a226c753b7dbd2a809cbbf37a2 (diff) | |
download | ports-3f538e9e3bf86b51e39aaef90be4001c416a40f9.tar.gz ports-3f538e9e3bf86b51e39aaef90be4001c416a40f9.zip |
Notes
Diffstat (limited to 'games/quake-dpmod')
-rw-r--r-- | games/quake-dpmod/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/games/quake-dpmod/Makefile b/games/quake-dpmod/Makefile index 7344a2905e3e..b07be8ba0bca 100644 --- a/games/quake-dpmod/Makefile +++ b/games/quake-dpmod/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: quake-dpmod -# Date created: 14 Sep 2005 -# Whom: Alejandro Pulver <alejandro@varnet.biz> -# +# Created by: Alejandro Pulver <alejandro@varnet.biz> # $FreeBSD$ -# PORTNAME= dpmod PORTVERSION= 20071120 @@ -13,7 +9,7 @@ MASTER_SITES= http://offload1.icculus.org/twilight/darkplaces/files/ 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 <bsd.port.mk> |