svn commit: r391513 - head/sysutils/docker-freebsd

Kris Moore kmoore at FreeBSD.org
Tue Jul 7 16:12:41 UTC 2015


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 at 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>


More information about the svn-ports-head mailing list