mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
21a283f3be
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
39 lines
1006 B
Makefile
39 lines
1006 B
Makefile
# Created by: Alejandro Pulver <alepulver@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= matrix
|
|
PORTVERSION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://qudos.quakedev.com/linux/quake2/mods/
|
|
PKGNAMEPREFIX= ${Q2PKGNAMEPREFIX}
|
|
DISTNAME= Matrix-v${PORTVERSION}.fixed.Linux
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Matrix modification for Quake II
|
|
|
|
USES= gmake tar:bzip2
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
BUILD_WRKSRC= ${WRKSRC}/MatrixFixSource
|
|
ALL_TARGET= release
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include "${.CURDIR}/../quake2-data/Makefile.include"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/__linux__/__unix__/' \
|
|
${BUILD_WRKSRC}/q_shared.[ch]
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${Q2DIR}/${PORTNAME}
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/release/matrix/game.so \
|
|
${STAGEDIR}${Q2DIR}/${PORTNAME}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} *.cfg *.ini *.pak \
|
|
${STAGEDIR}${Q2DIR}/${PORTNAME}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|