mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
b464bd62f2
* Add dependency (using an includable Makefile) to "games/quake-source". PR: ports/86168 Submitted by: Alejandro Pulver <alejandro@varnet.biz> Approved by: maintainer timeout
32 lines
686 B
Makefile
32 lines
686 B
Makefile
# New ports collection makefile for: FrikQCC
|
|
# Date created: 16 Mar 2005
|
|
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= frikqcc
|
|
PORTVERSION= 2.6
|
|
CATEGORIES= games devel
|
|
MASTER_SITES= http://wiki.quakesrc.org/files/ \
|
|
http://freebsd.nsu.ru/distfiles/
|
|
DISTNAME= ${PORTNAME:S/qcc//}${PORTVERSION:S/.//g}src
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Advanced QuakeC compiler/decompiler
|
|
|
|
USE_ZIP= yes
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile
|
|
|
|
PLIST_FILES= bin/frikqcc bin/frikqcdec
|
|
|
|
do-install:
|
|
.for p in ${PLIST_FILES:S/bin\///g}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${p} ${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include "${.CURDIR}/../quake-source/Makefile.include"
|
|
|
|
.include <bsd.port.mk>
|