diff options
author | danfe <danfe@FreeBSD.org> | 2013-03-17 20:39:11 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-03-17 20:39:11 +0800 |
commit | 0f4585019b2a35bebf5d165b46d94e31c18c281d (patch) | |
tree | 2d1bec0b0154a23711f39e3e7d5c81ab04173c61 /games/frikqcc | |
parent | a1c9272c3e1f2abfaa23b488e6fbd668d51c2e8d (diff) | |
download | freebsd-ports-gnome-0f4585019b2a35bebf5d165b46d94e31c18c281d.tar.gz freebsd-ports-gnome-0f4585019b2a35bebf5d165b46d94e31c18c281d.tar.zst freebsd-ports-gnome-0f4585019b2a35bebf5d165b46d94e31c18c281d.zip |
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)
Diffstat (limited to 'games/frikqcc')
-rw-r--r-- | games/frikqcc/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/games/frikqcc/Makefile b/games/frikqcc/Makefile index b7d2cf5658d3..723ace4047e8 100644 --- a/games/frikqcc/Makefile +++ b/games/frikqcc/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: FrikQCC -# Date created: 16 Mar 2005 -# Whom: Alexey Dokuchaev <danfe@FreeBSD.org> -# +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> # $FreeBSD$ -# PORTNAME= frikqcc PORTVERSION= 2.6 @@ -15,6 +11,8 @@ DISTNAME= ${PORTNAME:S/qcc//}${PORTVERSION:S/.//g}src MAINTAINER= danfe@FreeBSD.org COMMENT= Advanced QuakeC compiler/decompiler +LICENSE= GPLv2 + USE_ZIP= yes MAKEFILE= ${FILESDIR}/Makefile @@ -23,10 +21,9 @@ MAKE_JOBS_SAFE= yes PLIST_FILES= bin/frikqcc bin/frikqcdec do-install: -.for p in ${PLIST_FILES:S/bin\///g} +.for p in ${PLIST_FILES:T} ${INSTALL_PROGRAM} ${WRKSRC}/${p} ${PREFIX}/bin .endfor .include "${.CURDIR}/../quake-source/Makefile.include" - .include <bsd.port.mk> |