svn commit: r334703 - head/games/quake3-ra3
Danilo Egea Gondolfo
danilo at FreeBSD.org
Sun Nov 24 00:48:40 UTC 2013
Author: danilo
Date: Sun Nov 24 00:48:39 2013
New Revision: 334703
URL: http://svnweb.freebsd.org/changeset/ports/334703
Log:
- Remove NO_PACKAGE
- Add stage support
Modified:
head/games/quake3-ra3/Makefile
Modified: head/games/quake3-ra3/Makefile
==============================================================================
--- head/games/quake3-ra3/Makefile Sun Nov 24 00:24:30 2013 (r334702)
+++ head/games/quake3-ra3/Makefile Sun Nov 24 00:48:39 2013 (r334703)
@@ -11,8 +11,6 @@ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//
MAINTAINER= ports at FreeBSD.org
COMMENT= Quake III Arena mod: Rocket Arena 3
-NO_PACKAGE= package will be 131MB, set FORCE_PACKAGE if you really want it
-
USE_ZIP= yes
NO_BUILD= yes
@@ -21,18 +19,14 @@ DATADIR= ${Q3DIR}/${PORTNAME}
OPTIONS_DEFINE= DOCS
-NO_STAGE= yes
.include "${.CURDIR}/../quake3-data/Makefile.include"
-.include <bsd.port.options.mk>
do-install:
- @${MKDIR} ${DATADIR}
+ @${MKDIR} ${STAGEDIR}${DATADIR}
.for f in *.cfg *.pk3
- ${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DATADIR}
.endfor
-.if ${PORT_OPTIONS:MDOCS}
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR}
-.endif
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/*.txt ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
More information about the svn-ports-head
mailing list