diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-10-16 05:51:51 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-10-16 05:51:51 +0000 |
commit | 385b4cf1e7879edd02668eff425bab0004024841 (patch) | |
tree | 5b85787973dc8d91c8c0351da4dd2bfa1ef7011d /games/quake-dpmod/Makefile | |
parent | 3bb3984ab1086524ba2e6d5dfa1e2aa6264e63ef (diff) |
Notes
Diffstat (limited to 'games/quake-dpmod/Makefile')
-rw-r--r-- | games/quake-dpmod/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/games/quake-dpmod/Makefile b/games/quake-dpmod/Makefile new file mode 100644 index 000000000000..7f2b4fb3ac30 --- /dev/null +++ b/games/quake-dpmod/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: quake-dpmod +# Date created: 14 Sep 2005 +# Whom: Alejandro Pulver <alejandro@varnet.biz> +# +# $FreeBSD$ +# + +PORTNAME= dpmod +PORTVERSION= 20050818 +CATEGORIES= games +MASTER_SITES= http://offload1.icculus.org/twilight/darkplaces/files/ +DISTNAME= darkplacesmod${PORTVERSION} + +MAINTAINER= alejandro@varnet.biz +COMMENT= Quake 1 modification + +RUN_DEPENDS= darkplaces:${PORTSDIR}/games/darkplaces + +USE_ZIP= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes + +post-extract: +# Remove CVS directories + @${FIND} ${WRKDIR} -type d -name CVS -print0 | \ + ${XARGS} -0 ${RM} -rf + +# Fix permissions + @${CHMOD} go-w ${WRKDIR}/dpmod/progs.dat + +do-install: + @${CP} -Rp ${WRKSRC}/dpmod ${DATADIR} + +.include "${.CURDIR}/../quake-data/Makefile.include" + +.include <bsd.port.mk> |