freebsd-ports/games/quake3-data/Makefile.include
Edwin Groothuis 007385e6e4 /~ Hey little files, where are you not joining the others in the repository? ~/
"cvs add *" with a files directory does't always give the right results.
Add left over files from previous commit

PR:		ports/86185
Submitted by:	Alejandro Pulver <alejandro@varnet.biz>
2005-10-16 06:36:46 +00:00

45 lines
965 B
Makefile

# Makefile for defining variables used by other Quake III Arena related ports.
# Package name prefix.
Q3PKGNAMEPREFIX=quake3-
.if ${PORTNAME} != "quake3"
PKGNAMEPREFIX?= ${Q3PKGNAMEPREFIX}
.endif
# Dependency to "games/quake3-data".
.if ${PORTNAME} != "data"
RUN_DEPENDS+= ${Q3DIR}/baseq3/pak1.pk3:${PORTSDIR}/games/quake3-data
.endif
# Installation directories.
Q3DIR= ${LOCALBASE}/share/quake3
.if ${PORTNAME} == "data" || ${PORTNAME} == "quake3"
DATADIR?= ${Q3DIR}
.else
DATADIR?= ${Q3DIR}/${PORTNAME}
.endif
DOCSDIR?= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
PLIST_SUB+= Q3DIR="${Q3DIR:S/${PREFIX}\///}"
# Convert "dos" text files to "unix".
.if defined(USE_ZIP)
EXTRACT_BEFORE_ARGS= -aqo
.else
USE_REINPLACE= yes
REINPLACE_ARGS= -i ""
pre-patch:
# remove trailing ^M
@${FIND} -E ${WRKSRC} -type f \
-iregex ".*\.(bat|cfg|gam|htm|html|inf|ini|lst|sc|scr|txt|url)" \
-exec ${REINPLACE_CMD} -e "s|`${ECHO_CMD} -e '\r'`$$||" {} \;
.endif