From owner-svn-ports-head@FreeBSD.ORG Thu Dec 19 22:45:35 2013 Return-Path: Delivered-To: svn-ports-head@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 7F2AE309; Thu, 19 Dec 2013 22:45:35 +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 501FC10DA; Thu, 19 Dec 2013 22:45:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBJMjZfW044009; Thu, 19 Dec 2013 22:45:35 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBJMjZQ8044008; Thu, 19 Dec 2013 22:45:35 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201312192245.rBJMjZQ8044008@svn.freebsd.org> From: Pawel Pekala Date: Thu, 19 Dec 2013 22:45:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336967 - head/www/webstone-ssl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Dec 2013 22:45:35 -0000 Author: pawel Date: Thu Dec 19 22:45:34 2013 New Revision: 336967 URL: http://svnweb.freebsd.org/changeset/ports/336967 Log: - Fix build with clang - Support staging PR: ports/184850 Submitted by: KATO Tsuguru Modified: head/www/webstone-ssl/Makefile (contents, props changed) Modified: head/www/webstone-ssl/Makefile ============================================================================== --- head/www/webstone-ssl/Makefile Thu Dec 19 22:21:08 2013 (r336966) +++ head/www/webstone-ssl/Makefile Thu Dec 19 22:45:34 2013 (r336967) @@ -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