c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
29 lines
588 B
Makefile
29 lines
588 B
Makefile
# New ports collection Makefile for: build
|
|
# Date created: 14 June 2010
|
|
# Whom: gahr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= build
|
|
PORTVERSION= 0.3.9
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.codesynthesis.com/download/${PORTNAME}/${PORTVERSION:R}/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= A massively-parallel build system implemented on top of GNU make
|
|
|
|
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAKEFILE= makefile
|
|
NO_BUILD= yes
|
|
MAKE_ARGS= install_prefix=${PREFIX}
|
|
|
|
PLIST_SUB= BUILD_VER=${PORTVERSION:R}
|
|
|
|
.include <bsd.port.mk>
|