From owner-svn-ports-head@FreeBSD.ORG Thu Apr 24 08:10:22 2014 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 484F2764; Thu, 24 Apr 2014 08:10:22 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35720166D; Thu, 24 Apr 2014 08:10:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3O8AMne012997; Thu, 24 Apr 2014 08:10:22 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3O8AMkV012996; Thu, 24 Apr 2014 08:10:22 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201404240810.s3O8AMkV012996@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 24 Apr 2014 08:10:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351987 - head/security/p5-Net-SSLeay 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, 24 Apr 2014 08:10:22 -0000 Author: mat Date: Thu Apr 24 08:10:21 2014 New Revision: 351987 URL: http://svnweb.freebsd.org/changeset/ports/351987 QAT: https://qat.redports.org/buildarchive/r351987/ Log: - Strip .so (make test still passes afterwards)[1] - Cleanup trailing slash PR: ports/188934 [1] Submitted by: Horia Racoviceanu [1] Sponsored by: Absolight Modified: head/security/p5-Net-SSLeay/Makefile Modified: head/security/p5-Net-SSLeay/Makefile ============================================================================== --- head/security/p5-Net-SSLeay/Makefile Thu Apr 24 08:05:19 2014 (r351986) +++ head/security/p5-Net-SSLeay/Makefile Thu Apr 24 08:10:21 2014 (r351987) @@ -3,6 +3,7 @@ PORTNAME= Net-SSLeay PORTVERSION= 1.58 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -26,8 +27,9 @@ PORTEXAMPLES= * SHEBANG_FILES= examples/*.pl post-install: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ - ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${STAGEDIR}${EXAMPLESDIR}/ + ${STRIP_CMD} ${STAGEDIR}${SITE_PERL}/${PERL_ARCH}/auto/Net/SSLeay/SSLeay.so + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/req.conf ${STAGEDIR}${EXAMPLESDIR}/req.conf .include