Add the cw-ec2-portinstall target to always install the

net/bsdec2-image-upload port.

MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2015-04-27 21:38:12 +00:00
parent 70364ab4ff
commit f23e36d73c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=282116

View File

@ -12,13 +12,17 @@ AMINAMESUFFIX!= date +-%Y-%m-%d
PUBLISH= --public
.endif
ec2ami: cw-ec2
.if !exists(/usr/local/bin/bsdec2-image-upload)
@echo "--------------------------------------------------------------"
@echo ">>> Creating EC2 AMIs requires bsdec2-image-upload"
@echo "--------------------------------------------------------------"
@false
cw-ec2-portinstall:
.if exists(${PORTSDIR}/net/bsdec2-image-upload/Makefile)
make -C ${PORTSDIR}/net/bsdec2-image-upload BATCH=1 all install clean
.else
. if !exists(/usr/local/sbin/pkg-static)
env ASSUME_ALWAYS_YES=yes pkg bootstrap -y
. endif
env ASSUME_ALWAYS_YES=yes pkg install -y net/bsdec2-image-upload
.endif
ec2ami: cw-ec2 cw-ec2-portinstall
.if !defined(AWSKEYFILE) || !exists(${AWSKEYFILE})
@echo "--------------------------------------------------------------"
@echo ">>> AWSKEYFILE must point at AWS keys for EC2 AMI creation"