From owner-svn-ports-branches@FreeBSD.ORG Fri Dec 20 08:12:26 2013 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46F5A210; Fri, 20 Dec 2013 08:12:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 18F6D19D7; Fri, 20 Dec 2013 08:12:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBK8CP7d052237; Fri, 20 Dec 2013 08:12:25 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBK8CPMa052236; Fri, 20 Dec 2013 08:12:25 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312200812.rBK8CPMa052236@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 20 Dec 2013 08:12:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r336993 - branches/2014Q1/www/webstone-ssl X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Dec 2013 08:12:26 -0000 Author: bapt Date: Fri Dec 20 08:12:25 2013 New Revision: 336993 URL: http://svnweb.freebsd.org/changeset/ports/336993 Log: MFH: r336967 - Fix build with clang - Support staging PR: ports/184850 Submitted by: KATO Tsuguru Modified: branches/2014Q1/www/webstone-ssl/Makefile (contents, props changed) Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/www/webstone-ssl/Makefile ============================================================================== --- branches/2014Q1/www/webstone-ssl/Makefile Fri Dec 20 08:12:23 2013 (r336992) +++ branches/2014Q1/www/webstone-ssl/Makefile Fri Dec 20 08:12:25 2013 (r336993) @@ -12,36 +12,34 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= World wide web server benchmarking with SSL support +WRKSRC= ${WRKDIR}/WebStone${PORTVERSION}/src + USE_OPENSSL= yes USE_AUTOTOOLS= autoconf213 -GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/WebStone${PORTVERSION}/src ALL_TARGET= install -NO_INSTALL_MANPAGES= yes MAKE_JOBS_UNSAFE= yes -CONFIGURE_ENV= LIBS=-L${OPENSSLLIB} -CFLAGS+= -I${OPENSSLINC} +CPPFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + +pre-configure: + @${RM} -f ${WRKSRC}/config.cache -NO_STAGE= yes do-install: @${RMDIR} ${WRKSRC}/../bin/runs - @${MKDIR} ${PREFIX}/webstone-ssl/bin - @${MKDIR} ${PREFIX}/webstone-ssl/conf - @${MKDIR} ${PREFIX}/webstone-ssl/lgm - ${INSTALL_SCRIPT} ${WRKSRC}/../bin/* ${PREFIX}/webstone-ssl/bin - ${INSTALL_SCRIPT} ${WRKSRC}/../lgm/* ${PREFIX}/webstone-ssl/lgm - ${INSTALL_DATA} ${WRKSRC}/../conf/* ${PREFIX}/webstone-ssl/conf - ${INSTALL_SCRIPT} ${WRKSRC}/../webstone ${PREFIX}/webstone-ssl + @${MKDIR} ${STAGEDIR}${PREFIX}/webstone-ssl/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/webstone-ssl/conf + @${MKDIR} ${STAGEDIR}${PREFIX}/webstone-ssl/lgm + ${INSTALL_SCRIPT} ${WRKSRC}/../bin/* ${STAGEDIR}${PREFIX}/webstone-ssl/bin + ${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 file in webclient webmaster genrand - ${STRIP_CMD} ${PREFIX}/webstone-ssl/bin/${file} +.for i in webclient webmaster genrand + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/bin/${i} .endfor -.for file in ws20_cgi ws25_cgi - ${STRIP_CMD} ${PREFIX}/webstone-ssl/lgm/${file} +.for i in ws20_cgi ws25_cgi + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/lgm/${i} .endfor -post-install: - @${CAT} ${PKGMESSAGE} - .include