Date: Mon, 9 Sep 2013 18:20:01 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326835 - head/security/p5-openxpki Message-ID: <201309091820.r89IK1sx019925@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Sep 9 18:20:00 2013 New Revision: 326835 URL: http://svnweb.freebsd.org/changeset/ports/326835 Log: - Update OSVERSION check and comment - While I'm here: - Move LICENSE upward - Use USES=gmake - Convert to new perl5 framework - Fix spelling of FreeBSD and OpenSSL - Remove outdated OSVERSION check PR: ports/181828 Submitted by: Sergei Vyshenski <svysh.fbsd@gmail.com> (maintainer) Modified: head/security/p5-openxpki/Makefile Modified: head/security/p5-openxpki/Makefile ============================================================================== --- head/security/p5-openxpki/Makefile Mon Sep 9 18:19:55 2013 (r326834) +++ head/security/p5-openxpki/Makefile Mon Sep 9 18:20:00 2013 (r326835) @@ -13,6 +13,8 @@ DIST_SUBDIR= openxpki MAINTAINER= svysh.fbsd@gmail.com COMMENT= Perl based trustcenter software for PKI: core for server +LICENSE= ART20 + BUILD_DEPENDS= \ p5-Workflow>=0.31:${PORTSDIR}/devel/p5-Workflow \ p5-CGI-Session>=0:${PORTSDIR}/www/p5-CGI-Session \ @@ -279,15 +281,14 @@ MAN3= OpenXPKI.3 \ OpenXPKI::XML::Cache.3 \ OpenXPKI::XML::Config.3 \ OpenXPKI::i18n.3 -USE_GMAKE= yes USE_OPENSSL= yes -PERL_CONFIGURE= yes +USE_PERL5= configure +USES= gmake perl5 +WITH_OPENSSL_BASE= yes USERS= openxpki GROUPS= openxpki -LICENSE= ART20 - OPTIONS_DEFINE= DEVELOPER GRAPHVIZ DEVELOPER_DESC= Install development tools for OpenXPKI? GRAPHVIZ_DESC= With graphical visualization of workflows? @@ -300,20 +301,6 @@ GRAPHVIZ_DESC= With graphical visualizat .include <bsd.port.options.mk> -# this port needs openssl-0.9.8+, but does not yet compile with openssl-1.0.0+ -# freebsd-6 or less has base openssl-0.9.7 which is bad -# freebsd-7 or more has base openssl-0.9.8 which is good -# openssl from port now has version 1.0.0 only -.if ${OSVERSION} < 700000 -IGNORE= needs openssl-0.9.8+, but does not yet compile with openssl-1.0.0+ -.endif -.if ${OSVERSION} >= 700000 -WITH_OPENSSL_BASE= yes - -.endif - -.include <bsd.port.pre.mk> - .if ${PORT_OPTIONS:MDEVELOPER} RUN_DEPENDS+= ${LOCALBASE}/bin/fop:${PORTSDIR}/textproc/fop \ ${LOCALBASE}/bin/xsltproc:${PORTSDIR}/textproc/libxslt \ @@ -325,4 +312,14 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/dot:${POR ${LOCALBASE}/bin/imgsize:${PORTSDIR}/graphics/p5-Image-Size .endif +.include <bsd.port.pre.mk> + +# this port needs OpenSSL 0.9.8+, but does not yet compile with OpenSSL 1.0.0+ +# FreeBSD 7,8,9 have base OpenSSL 0.9.8 which is good +# FreeBSD 10 has base OpenSSL 1.0+ which is bad +# OpenSSL from port now has version 1.0+ only +.if ${OSVERSION} >= 1000000 +IGNORE= needs OpenSSL 0.9.8+, but does not yet compile with OpenSSL 1.0.0+ +.endif + .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309091820.r89IK1sx019925>