1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/games/qccx/Makefile
Alexey Dokuchaev 085aae91a3 Cleanup QuakeC compilers we have in the tree:
- Trim old-school Makefile headers
- Get rid of NOPORTDOCS (replace with PORT_OPTIONS:MDOCS}
- Some other things along the line (non-functional)
2013-03-17 12:39:11 +00:00

38 lines
889 B
Makefile

# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= qccx
PORTVERSION= 1.0.0
CATEGORIES= games devel
MASTER_SITES= http://www.quakewiki.net/archives/qccx/ \
http://freebsd.nsu.ru/distfiles/
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g}
MAINTAINER= danfe@FreeBSD.org
COMMENT= Very fast optimizing QuakeC compiler
LICENSE= GPLv2
USE_ZIP= yes
USE_DOS2UNIX= pr_comp.cpp qcc.cpp ${PORTDOCS}
MAKEFILE= ${FILESDIR}/Makefile
NO_WRKSUBDIR= yes
PORTDOCS= manual.txt readme.txt
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
@${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/*.qc ${WRKSRC}/progs.src ${DATADIR}
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include "${.CURDIR}/../quake-source/Makefile.include"
.include <bsd.port.mk>