summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2016-12-29 12:31:35 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2016-12-29 12:31:35 +0000
commit2b2eec048a943fb0c821d6dc49a33c4a67ddc823 (patch)
treec12b9e06b1a08fd91fdb1e83fe27295677e0b82d /www
parent- Mark BROKEN on 11.x: (diff)
- Remove bogus (in presence of USE_GITHUB) USES=tar*
- Fix stripping from non-root, also fix executable files permissins Approved by: portmgr blanket
Notes
Notes: svn path=/head/; revision=429891
Diffstat (limited to 'www')
-rw-r--r--www/aws-demos/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/www/aws-demos/Makefile b/www/aws-demos/Makefile
index 1a82aae726bb..7ea5c61d1fb8 100644
--- a/www/aws-demos/Makefile
+++ b/www/aws-demos/Makefile
@@ -16,7 +16,7 @@ BUILD_DEPENDS= gprbuild:devel/gprbuild \
xmlada>=4.4:textproc/xmlada \
aws>=3.1:www/aws
-USES= ada gmake python tar:bzip2
+USES= ada gmake python
USE_GITHUB= yes
GH_ACCOUNT= AdaCore
GH_TAGNAME= 17.0
@@ -156,7 +156,9 @@ do-install:
${STAGEDIR}${EXAMPLESDIR}/demos)
.endfor
.for prog in ${PROGS}
- ${STRIP_CMD} ${STAGEDIR}${EXAMPLESDIR}/demos/${prog}
+ @${CHMOD} 755 ${STAGEDIR}${EXAMPLESDIR}/demos/${prog}
+ @${STRIP_CMD} ${STAGEDIR}${EXAMPLESDIR}/demos/${prog}
+ @${CHMOD} ${BINMODE} ${STAGEDIR}${EXAMPLESDIR}/demos/${prog}
.endfor
.include <bsd.port.post.mk>