In Makefile : .if defined(WITH_POLICY) && !exists(${DISTDIR}/${POLICYFILE})#{ IGNORE += Please open http://java.sun.com/javase/downloads/index.jsp\n\ in a web browser and follow the \"Download\" link for\n\ \"Other Downloads\" to obtain the JCE policy file, ${POLICYFILE}.\n\n .endif#} The problem is that the only JCE policy file available on this page is now for java 6. Fix: .if defined(WITH_POLICY) && !exists(${DISTDIR}/${POLICYFILE})#{ IGNORE += Please open http://java.sun.com/javase/downloads/index_jdk5.jsp\n\ in a web browser and follow the \"Download\" link for\n\ \"Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 5.0\" to obtain the JCE policy file, ${POLICYFILE}.\n\n .endif#} How-To-Repeat: Read instructions and browse the Sun's page.
Responsible Changed From-To: freebsd-java->glewis I'll take it.
glewis 2007-07-22 06:23:23 UTC FreeBSD ports repository Modified files: java/jdk15 Makefile Log: . Update the download location for the unlimited strength policy files. Submitted by: Olivier SMEDTS <olivier@gid0.org> PR: 114592 Revision Changes Path 1.128 +1 -1 ports/java/jdk15/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!