Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Apr 2017 11:15:36 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439059 - head/www/webstone-ssl
Message-ID:  <201704211115.v3LBFajm052446@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Fri Apr 21 11:15:36 2017
New Revision: 439059
URL: https://svnweb.freebsd.org/changeset/ports/439059

Log:
  - Fix shebangs
  - Remove unnecessary chmods

Modified:
  head/www/webstone-ssl/Makefile

Modified: head/www/webstone-ssl/Makefile
==============================================================================
--- head/www/webstone-ssl/Makefile	Fri Apr 21 11:10:21 2017	(r439058)
+++ head/www/webstone-ssl/Makefile	Fri Apr 21 11:15:36 2017	(r439059)
@@ -3,7 +3,7 @@
 
 PORTNAME=	webstone
 PORTVERSION=	2.5
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	www benchmarks
 MASTER_SITES=	http://crypto.stanford.edu/~nagendra/projects/WebStone/download/
 PKGNAMESUFFIX=	-ssl
@@ -18,7 +18,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 USES=		perl5 shebangfix tar:tgz ssl
 USE_PERL5=	run
 SHEBANG_FILES=	bin/*.wpl bin/*.pl
-perl_OLD_CMD=	/bin/perl5
+perl_OLD_CMD=	/bin/perl5 /usr/local/bin/perl5.001
 GNU_CONFIGURE=	yes
 WRKSRC=		${WRKDIR}/WebStone${PORTVERSION}
 CONFIGURE_WRKSRC=	${WRKSRC}/src
@@ -41,16 +41,11 @@ do-install:
 	${INSTALL_SCRIPT} ${WRKSRC}/lgm/* ${STAGEDIR}${PREFIX}/webstone-ssl/lgm
 	${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${PREFIX}/webstone-ssl/conf
 	${INSTALL_SCRIPT} ${WRKSRC}/webstone  ${STAGEDIR}${PREFIX}/webstone-ssl
-	@${MKDIR} ${WRKSRC}/bin/runs
 .for i in webclient webmaster genrand
-	${CHMOD} u+w ${STAGEDIR}${PREFIX}/webstone-ssl/bin/${i}
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/bin/${i}
-	${CHMOD} u-w ${STAGEDIR}${PREFIX}/webstone-ssl/bin/${i}
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/bin/${i}
 .endfor
 .for i in ws20_cgi ws25_cgi
-	${CHMOD} u+w ${STAGEDIR}${PREFIX}/webstone-ssl/lgm/${i}
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/lgm/${i}
-	${CHMOD} u-w ${STAGEDIR}${PREFIX}/webstone-ssl/lgm/${i}
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/lgm/${i}
 .endfor
 
 .include <bsd.port.mk>



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