Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Jul 2015 16:12:41 +0000 (UTC)
From:      Kris Moore <kmoore@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391513 - head/sysutils/docker-freebsd
Message-ID:  <201507071612.t67GCfIK071271@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kmoore
Date: Tue Jul  7 16:12:40 2015
New Revision: 391513
URL: https://svnweb.freebsd.org/changeset/ports/391513

Log:
  - Cleanup BUILD/RUN_DEPS
  - Require lang/go 1.4+
  - Use INSTALL_PROGRAM
  - Remove dep on devel/git
  
  Submitted by: Adam Weinberger <adamw@adamw.org>

Modified:
  head/sysutils/docker-freebsd/Makefile

Modified: head/sysutils/docker-freebsd/Makefile
==============================================================================
--- head/sysutils/docker-freebsd/Makefile	Tue Jul  7 15:44:48 2015	(r391512)
+++ head/sysutils/docker-freebsd/Makefile	Tue Jul  7 16:12:40 2015	(r391513)
@@ -11,12 +11,11 @@ COMMENT=	Docker containment system
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${LOCALBASE}/bin/go:${PORTSDIR}/lang/go \
-		${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash \
-		${LOCALBASE}/bin/git:${PORTSDIR}/devel/git \
+BUILD_DEPENDS=	go>=1.4:${PORTSDIR}/lang/go \
+		bash:${PORTSDIR}/shells/bash \
 		sqlite3:${PORTSDIR}/databases/sqlite3
-RUN_DEPENDS=	${LOCALBASE}/bin/go:${PORTSDIR}/lang/go \
-		${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash \
+RUN_DEPENDS=	go>=1.4:${PORTSDIR}/lang/go \
+		bash:${PORTSDIR}/shells/bash \
 		sqlite3:${PORTSDIR}/databases/sqlite3
 
 USE_GITHUB=	yes
@@ -32,6 +31,6 @@ do-build:
 
 do-install:
 	@${MKDIR} ${STAGEDIR}${PREFIX}/bin
-	${INSTALL} ${WRKSRC}/bundles/latest/binary/docker ${STAGEDIR}${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKSRC}/bundles/latest/binary/docker ${STAGEDIR}${PREFIX}/bin/
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507071612.t67GCfIK071271>