From owner-svn-ports-all@FreeBSD.ORG Fri Dec 27 04:32:45 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC5D7F15; Fri, 27 Dec 2013 04:32:45 +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 C8C371EA5; Fri, 27 Dec 2013 04:32:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBR4WjW7044452; Fri, 27 Dec 2013 04:32:45 GMT (envelope-from glewis@svn.freebsd.org) Received: (from glewis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBR4WjcJ044451; Fri, 27 Dec 2013 04:32:45 GMT (envelope-from glewis@svn.freebsd.org) Message-Id: <201312270432.rBR4WjcJ044451@svn.freebsd.org> From: Greg Lewis Date: Fri, 27 Dec 2013 04:32:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337641 - head/java/openjdk7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Dec 2013 04:32:45 -0000 Author: glewis Date: Fri Dec 27 04:32:45 2013 New Revision: 337641 URL: http://svnweb.freebsd.org/changeset/ports/337641 Log: . Fix the POLICY option to actually install the unlimited strength policy files again. PR: 185015 Submitted by: Phil Phillips Modified: head/java/openjdk7/Makefile Modified: head/java/openjdk7/Makefile ============================================================================== --- head/java/openjdk7/Makefile Fri Dec 27 02:52:21 2013 (r337640) +++ head/java/openjdk7/Makefile Fri Dec 27 04:32:45 2013 (r337641) @@ -3,6 +3,7 @@ PORTNAME= openjdk PORTVERSION= ${JDK_MAJOR_VERSION}.${PORT_MINOR_VERSION}.${PORT_BUILD_NUMBER} +PORTREVISION= 1 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk${JDK_MAJOR_VERSION}u${JDK_MINOR_VERSION}/promoted/b${JDK_BUILD_NUMBER}/ \ http://download.java.net/jaxp/1.4.5/:jaxp \ @@ -110,6 +111,10 @@ NO_STAGE= yes MAKE_ENV+= ALT_OBJCOPY="/nonexistent" .endif +.if ${PORT_OPTIONS:MPOLICY} +MAKE_ENV+= UNLIMITED_CRYPTO=1 +.endif + .if ${PORT_OPTIONS:MTZUPDATE} RUN_DEPENDS+= ${LOCALBASE}/share/java/zi:${PORTSDIR}/java/java-zoneinfo .endif @@ -135,10 +140,6 @@ PATCH= gpatch post-patch: @${REINPLACE_CMD} "s|%%LOCALBASE%%|${LOCALBASE}|" \ ${WRKSRC}/hotspot/src/os/bsd/vm/os_bsd.cpp -.if ${PORT_OPTIONS:MPOLICY} - @${REINPLACE_CMD} 's|build-policy install-limited|build-policy install-unlimited|' \ - ${WRKSRC}/jdk/make/javax/crypto/Makefile -.endif .if empty(ICONV_LIB) @${REINPLACE_CMD} 's| -liconv||' \ ${WRKSRC}/Makefile \