svn commit: r327051 - head/games/quake2-relay

Alexey Dokuchaev danfe at FreeBSD.org
Thu Sep 12 10:17:58 UTC 2013


Author: danfe
Date: Thu Sep 12 10:17:57 2013
New Revision: 327051
URL: http://svnweb.freebsd.org/changeset/ports/327051

Log:
  - Unbreak the build in GCC-less environment by explicitly passing LD value
  - While here, contract MASTER_SITES and convert USE_GMAKE to USES
  
  Reported by:	pkg-fallout

Modified:
  head/games/quake2-relay/Makefile

Modified: head/games/quake2-relay/Makefile
==============================================================================
--- head/games/quake2-relay/Makefile	Thu Sep 12 10:07:38 2013	(r327050)
+++ head/games/quake2-relay/Makefile	Thu Sep 12 10:17:57 2013	(r327051)
@@ -4,8 +4,7 @@
 PORTNAME=	relay
 PORTVERSION=	0.4
 CATEGORIES=	games
-MASTER_SITES=	${MASTER_SITE_LOCAL} http://freebsd.nsu.ru/distfiles/
-MASTER_SITE_SUBDIR=	danfe
+MASTER_SITES=	LOCAL/danfe http://freebsd.nsu.ru/distfiles/
 PKGNAMEPREFIX=	${Q2PKGNAMEPREFIX}
 DISTNAME=	relay-${PORTVERSION}.src
 
@@ -14,10 +13,10 @@ COMMENT=	Quake II multi-view demo record
 
 LICENSE=	GPLv2
 
-USE_GMAKE=	yes
+USES=		gmake
 MAKE_ARGS=	MODE=release OBJ_DIR=. OUT_DIR=. Q2MODULE=game.so \
 		QUAKE2_DIR="${Q2DIR}" BIN_DIR="${PREFIX}/bin" \
-		CC="${CC}" CFLAGS="${CFLAGS}"
+		CC="${CC}" LD="${CC}" CFLAGS="${CFLAGS}"
 
 WRKSRC=		${WRKDIR}/relay-${PORTVERSION}
 PORTDOCS=	FAQ README


More information about the svn-ports-all mailing list