summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2015-08-30 10:52:15 +0000
committerryoon <ryoon@pkgsrc.org>2015-08-30 10:52:15 +0000
commitf76b3d04631c9ae62d283a958bf1daab4524dd1a (patch)
treec419decdef6d8c7d3a9cf37dc1fbe9b9b03c9dbe /lang
parent047c8a43588489785b4c5c931a8ec0a256a3899f (diff)
downloadpkgsrc-f76b3d04631c9ae62d283a958bf1daab4524dd1a.tar.gz
Update to 8.0.60
Changelog: From: https://www.java.com/en/download/faq/release_changes.xml Java 8 Update 60 (8u60) Release Highlights IANA Data 2015e JDK 8u60 contains IANA time zone data version 2015e. For more information, refer to Timezone Data Versions in the JRE Software. Bug Fix: dns_lookup_realm should be false by default The dns_lookup_realm setting in Kerberos' krb5.conf file is by default false. See 8080637. Bug Fix: Disable RC4 cipher suites RC4-based TLS ciphersuites (e.g. TLS_RSA_WITH_RC4_128_SHA) are now considered compromised and should no longer be used (see RFC 7465). Accordingly, RC4-based TLS ciphersuites have been deactivated by default in the Oracle JSSE implementation by adding "RC4" to "jdk.tls.disabledAlgorithms" security property, and by removing them from the default enabled ciphersuites list. These cipher suites can be reactivated by removing "RC4" form "jdk.tls.disabledAlgorithms" security property in the java.security file or by dynamically calling Security.setProperty(), and also readding them to the enabled ciphersuite list using the SSLSocket/SSLEngine.setEnabledCipherSuites() methods. You can also use the -Djava.security.properties command line option to override the jdk.tls.disabledAlgorithms security property. For example: java -Djava.security.properties=my.java.security ... where my.java.security is a file containing the property without RC4: jdk.tls.disabledAlgorithms=SSLv3 Even with this option set from commandline, the RC4 based ciphersuites need to be re-added to the enabled ciphersuite list by using the SSLSocket/SSLEngine.setEnabledCipherSuites() methods. See 8076221. Bug Fix: Support keystore type detection for JKS and PKCS12 keystores Keystore Compatibility Mode: To aid interoperability, the Java keystore type JKS now supports keystore compatibility mode by default. This mode enables JKS keystores to access both JKS and PKCS12 file formats. To disable keystore compatibility mode set the Security property keystore.type.compat to the string value false. See 8062552. Bug Fix: Deprecate Unsafe monitor methods in JDK 8u release The methods monitorEnter, monitorExit and tryMonitorEnter on sun.misc.Unsafe are marked as deprecated in JDK 8u60 and will be removed in a future release. These methods are not used within the JDK itself and are very rarely used outside of the JDK. See 8069302. Bug Fix: Extract JFR recording from the core file using SA DumpJFR is a Serviceability Agent based tool that can be used to extract Java Flight Recorder(JFR) data from the core files and live Hotspot processes. DumpJFR can be used in one of the following methods: Attach DumpJFR to a live process: java -cp $JAVA_HOME/lib/sa-jdi.jar sun.jvm.hotspot.tools.DumpJFR <pid> Attach DumpJFR to a core file: java -cp $JAVA_HOME/lib/sa-jdi.jar sun.jvm.hotspot.tools.DumpJFR <java> <core> DumpJFR tool dumps the JFR data to a file called recording.jfr in the current working folder. See 8065301 (not public). Bug Fix: Local variables named 'enum' lead to spurious compiler crashes The javac parser is incorrectly parsing local variables with name 'enum'; this results in spurious failures when a program containing such local variables is compiled with a 'source' flag corresponding to a release in which the enum construct is not available (such as '-source 1.4'). See 8069181. Java Development Kit for ARM Release 8u60 This release includes Java Development Kit for ARM Release 8u60 (JDK 8u60 for ARM). For ARM device support information, see JDK for ARM Downloads page. For system requirements, installation instructions and troubleshooting tips, see Installation Instructions page. Limitation: Native Memory Tracking support is limited in JDK for ARM. The java command line option XX:NativeMemoryTracking=detail is not supported for ARM targets (an error message is displayed to user). Instead, use the following option: XX:NativeMemoryTracking=summary Documentation Updates due to Nashorn Enhancements JDK 8u60 includes new enhancements to Nashorn. As a result the following documentation changes should be read in conjunction with the current Nashorn documentation: Addition: In the previous section, we mentioned that every JavaScript object when exposed to Java APIs implements the java.util.Map interface. This is true even for JavaScript arrays. However, this behavior is often not desired or expected when the Java code expects JSON-parsed objects. Java libraries that manipulate JSON-parsed objects usually expect arrays to expose the java.util.List interface instead. If you need to expose your JavaScript objects so that arrays are exposed as lists and not maps, you can use the Java.asJSONCompatible(obj) function, where obj is the root of your JSON object tree. Correction: The caution mentioned at the end of Mapping Data Types section, is no longer applicable. Nashorn ensures that internal JavaScript strings are converted to java.lang.String when exposed externally. Correction: The statement in the section Mapping Data Types, that mentions "For example, arrays must be explicitly converted,..." is not correct. Arrays are automatically converted to Java array types, such as java.util.List, java.util.Collection, java.util.Queue and java.util.Deque and so on. Changes in Deployment Rule Set v1.2 JDK 8u60 implements Deployment Rule Set (DRS) 1.2, which includes the following changes: Add "checksum" element as sub element of "id" which can allow unsigned jars to be identified by the SHA-256 checksum of the uncompressed form of a jar: The "checksum" element will match only unsigned jars, and the given hash will be compared only against the uncompressed form of the jar. The "checksum" element (similar to "certificate" element) has two arguments "hash" and "algorithm", however, unlike "certificate" element, the only supported value for "algorithm" is "SHA-256". Any other value provided will be ignored. Allow "message" element to apply to all rule types, where previously it only applied to a block rule: In a run rule, a message sub element will cause a message dialog to be displayed where without a run rule, the default behavior would be to show certificate or unsigned dialog. The message will be displayed in the message dialog. In a default rule, the message will only be displayed if the default action is to block. In such a case the message will be included in the block dialog. Echo "customer" blocks in the Java Console, trace files, and Java Usage Tracker records. Previous to DRS 1.2, "customer" elements could be included (with any sub-elements) in the ruleset.xml file. This element and all its sub elements are ignored. In DRS 1.2, the elements are still functionally ignored. However: When parsing the ruleset.xml file, all "customer" blocks will be echoed to the Java Console and deployment trace file (if Console and Tracing are enabled). When using a rule, all "customer" records included within that rule will be added to the Java Usage Tracker (JUT) record (if JUT is enabled). As a result of the above changes, the DTD for DRS 1.2 is as follows: <!ELEMENT ruleset (rule*)> <!ATTRIBUTE ruleset href CDATA #IMPLIED> <!ATTRIBUTE ruleset version CDATA #REQUIRED> <!ELEMENT rule (id, action)> <!ELEMENT id (certificate?) (checksum?) > <!ATTRIBUTE id title CDATA #IMPLIED> <!ATTRIBUTE id location CDATA #IMPLIED> <!ELEMENT certificate EMPTY> <!ATTLIST certificate algorithm CDATA #IMPLIED> <!ATTLIST certificate hash CDATA #REQUIRED> <!ELEMENT checksum EMPTY> <!ATTLIST checksum algorithm CDATA #IMPLIED> <!ATTLIST checksum hash CDATA #REQUIRED> <!ELEMENT action (message?)> <!ATTRIBUTE permission (run | block | default) #REQUIRED> <!ATTRIBUTE version CDATA #IMPLIED> <!ATTRIBUTE force (true|false) "false"> <!ELEMENT message (#PCDATA)> <!ATTLIST message locale CDATA #IMPLIED> Java Expiration Date The expiration date for 8u60 is October 20, 2015. Java expires whenever a new release with security vulnerability fixes becomes available. For systems unable to reach the Oracle Servers, a secondary mechanism expires this JRE (version 8u60) on November 20, 2015. After either condition is met (new release becoming available or expiration date reached), Java will provide additional warnings and reminders to users to update to the newer version. Bug Fixes For a list of bug fixes included in this release, see JDK 8u60 Bug Fixes page. Java 8 Update 51 (8u51) Release Highlights IANA Data 2015d JDK 8u51 contains IANA time zone data version 2015d. For more information, refer to Timezone Data Versions in the JRE Software. Bug Fix: Add new Comodo roots to root CAs Four new root certificates have been added for Commodo: COMODO ECC Certification Authority alias: comodoeccca DN: CN=COMODO ECC Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB COMODO RSA Certification Authority alias: comodorsaca DN: CN=COMODO RSA Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB USERTrust ECC Certification Authority alias: usertrusteccca DN: CN=USERTrust ECC Certification Authority, O=The USERTRUST Network, L=Jersey City, ST=New Jersey, C=US USERTrust RSA Certification Authority alias: usertrustrsaca DN: CN=USERTrust RSA Certification Authority, O=The USERTRUST Network, L=Jersey City, ST=New Jersey, C=US See JDK-8077997 (not public). Bug Fix: Add new GlobalSign roots to root CAs Two root certificates have been added for GlobalSign: GlobalSign ECC Root CA - R4 alias: globalsigneccrootcar4 DN: CN=GlobalSign, O=GlobalSign, OU=GlobalSign ECC Root CA - R4 GlobalSign ECC Root CA - R5 alias: globalsigneccrootcar5 DN: CN=GlobalSign, O=GlobalSign, OU=GlobalSign ECC Root CA - R5 See JDK-8077995 (not public). Bug Fix: Add Actalis to root CAs Added one new root certificate: Actalis Authentication Root CA alias: actalisauthenticationrootca DN: CN=Actalis Authentication Root CA, O=Actalis S.p.A./03358520967, L=Milan, C=IT See JDK-8077903 (not public). Bug Fix: Add new Entrust ECC root Added one new root certificate: Entrust Root Certification Authority - EC1 alias: entrustrootcaec1 DN: CN=Entrust Root Certification Authority - EC1, OU="(c) 2012 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US See JDK-8073286 (not public). Bug Fix: Remove old Valicert Class 1 and 2 Policy roots Removed two root certificates with 1024-bit keys: ValiCert Class 1 Policy Validation Authority alias: secomvalicertclass1ca DN: EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 1 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network ValiCert Class 2 Policy Validation Authority alias: valicertclass2ca DN: EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network See JDK-8077886 (not public). Bug Fix: Remove old Thawte roots Removed two root certificates with 1024-bit keys: Thawte Server CA alias: thawteserverca DN: EMAILADDRESS=server-certs@thawte.com, CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA Thawte Personal Freemail CA alias: thawtepersonalfreemailca DN: EMAILADDRESS=personal-freemail@thawte.com, CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA See JDK-8074423 (not public). Bug Fix: Remove more old Verisign, Equifax, and Thawte roots Removed five root certificates with 1024-bit keys: Verisign Class 3 Public Primary Certification Authority - G2 alias: verisignclass3g2ca DN: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US Thawte Premium Server CA alias: thawtepremiumserverca DN: EMAILADDRESS=premium-server@thawte.com, CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA Equifax Secure Certificate Authority alias: equifaxsecureca DN: OU=Equifax Secure Certificate Authority, O=Equifax, C=US Equifax Secure eBusiness CA-1 alias: equifaxsecureebusinessca1 DN: CN=Equifax Secure eBusiness CA-1, O=Equifax Secure Inc., C=US Equifax Secure Global eBusiness CA-1, alias: equifaxsecureglobalebusinessca1 DN: CN=Equifax Secure Global eBusiness CA-1, O=Equifax Secure Inc., C=US See JDK-8076202 (not public). Bug Fix: Remove TrustCenter CA roots from cacerts Removed three root certificates: TC TrustCenter Universal CA I alias: trustcenteruniversalcai DN: CN=TC TrustCenter Universal CA I, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE TC TrustCenter Class 2 CA II alias: trustcenterclass2caii DN: CN=TC TrustCenter Class 2 CA II, OU=TC TrustCenter Class 2 CA, O=TC TrustCenter GmbH, C=DE TC TrustCenter Class 4 CA II alias: trustcenterclass4caii DN: CN=TC TrustCenter Class 4 CA II, OU=TC TrustCenter Class 4 CA, O=TC TrustCenter GmbH, C=DE See JDK-8072958 (not public). Bug Fix: Deprecate RC4 in SunJSSE provider RC4 is now considered as a weak cipher. Servers should not select RC4 unless there is no other stronger candidate in the client requested cipher suites. A new security property, jdk.tls.legacyAlgorithms, is added to define the legacy algorithms in Oracle JSSE implementation. RC4 related algorithms are added to the legacy algorithms list. See JDK-8074006 (not public). Bug Fix: Prohibit RC4 cipher suites RC4 is now considered as a compromised cipher. RC4 cipher suites have been removed from both client and server default enabled cipher suite list in Oracle JSSE implementation. These cipher suites can still be enabled by SSLEngine.setEnabledCipherSuites() and SSLSocket.setEnabledCipherSuites() methods. See JDK-8077109 (not public). Bug Fix: Improved certification checking With this fix, JSSE endpoint identification does not perform reverse name lookup for IP addresses by default in JDK. If an application does need to perform reverse name lookup for raw IP addresses in SSL/TLS connections, and encounter endpoint identification compatibility issue, System property "jdk.tls.trustNameService" can be used to switch on reverse name lookup. Note that if the name service is not trustworthy, enabling reverse name lookup may be susceptible to MITM attacks. See JDK-8067695 (not public). Java Expiration Date The expiration date for 8u51 is October 20, 2015. Java expires whenever a new release with security vulnerability fixes becomes available. For systems unable to reach the Oracle Servers, a secondary mechanism expires this JRE (version 8u51) on November 20, 2015. After either condition is met (new release becoming available or expiration date reached), Java will provide additional warnings and reminders to users to update to the newer version. Bug Fixes This release contains fixes for security vulnerabilities. For more information, see Oracle Java SE Critical Patch Update Advisory. For a list of bug fixes included in this release, see JDK 8u51 Bug Fixes page.
Diffstat (limited to 'lang')
-rw-r--r--lang/oracle-jdk8/PLIST.linux-i38612
-rw-r--r--lang/oracle-jdk8/PLIST.linux-x86_6412
-rw-r--r--lang/oracle-jdk8/distinfo20
-rw-r--r--lang/oracle-jre8/Makefile.common4
-rw-r--r--lang/oracle-jre8/PLIST.linux-i38656
-rw-r--r--lang/oracle-jre8/PLIST.linux-x86_644
-rw-r--r--lang/oracle-jre8/PLIST.solaris-x86_6438
-rw-r--r--lang/oracle-jre8/distinfo20
-rw-r--r--lang/oracle-jre8/sfiles-linux-i386.mk28
-rw-r--r--lang/oracle-jre8/sfiles-linux-x86_64.mk12
-rw-r--r--lang/oracle-jre8/sfiles-solaris-x86_64.mk4
11 files changed, 91 insertions, 119 deletions
diff --git a/lang/oracle-jdk8/PLIST.linux-i386 b/lang/oracle-jdk8/PLIST.linux-i386
index 28b2b392d64..08b0c5db450 100644
--- a/lang/oracle-jdk8/PLIST.linux-i386
+++ b/lang/oracle-jdk8/PLIST.linux-i386
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.linux-i386,v 1.1 2015/05/30 09:51:11 ryoon Exp $
+@comment $NetBSD: PLIST.linux-i386,v 1.2 2015/08/30 10:52:15 ryoon Exp $
bin/oracle8-appletviewer
bin/oracle8-apt
bin/oracle8-extcheck
@@ -253,12 +253,11 @@ java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/binary/com
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/binary/com.oracle.jmc.executable.gtk.linux.x86_5.5.0
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.4.0.v20141007-2301
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/.lock
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423862892533.profile.gz
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423862892876.profile.gz
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423862910036.profile.gz
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423862913577.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423497018512.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423497018885.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423497034170.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423497037100.profile.gz
java/oracle-8/lib/missioncontrol/plugins/com.ibm.icu_52.1.0.v201404241930.jar
java/oracle-8/lib/missioncontrol/plugins/com.jrockit.mc.alert.ja_5.5.0.165303.jar
java/oracle-8/lib/missioncontrol/plugins/com.jrockit.mc.alert.zh_CN_5.5.0.165303.jar
@@ -1324,4 +1323,3 @@ java/oracle-8/man/man1/wsgen.1
java/oracle-8/man/man1/wsimport.1
java/oracle-8/man/man1/xjc.1
java/oracle-8/src.zip
-@pkgdir java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/.data
diff --git a/lang/oracle-jdk8/PLIST.linux-x86_64 b/lang/oracle-jdk8/PLIST.linux-x86_64
index 82ea20041ae..2fbe850da8a 100644
--- a/lang/oracle-jdk8/PLIST.linux-x86_64
+++ b/lang/oracle-jdk8/PLIST.linux-x86_64
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.linux-x86_64,v 1.1 2015/05/30 09:51:11 ryoon Exp $
+@comment $NetBSD: PLIST.linux-x86_64,v 1.2 2015/08/30 10:52:15 ryoon Exp $
bin/oracle8-appletviewer
bin/oracle8-apt
bin/oracle8-extcheck
@@ -253,12 +253,11 @@ java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/binary/com
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/binary/com.oracle.jmc.executable.gtk.linux.x86_64_5.5.0
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.4.0.v20141007-2301
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/.lock
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423862990907.profile.gz
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423862991294.profile.gz
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423863007598.profile.gz
-java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423863011605.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423496857215.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423496857646.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423496873002.profile.gz
+java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1423496876965.profile.gz
java/oracle-8/lib/missioncontrol/plugins/com.ibm.icu_52.1.0.v201404241930.jar
java/oracle-8/lib/missioncontrol/plugins/com.jrockit.mc.alert.ja_5.5.0.165303.jar
java/oracle-8/lib/missioncontrol/plugins/com.jrockit.mc.alert.zh_CN_5.5.0.165303.jar
@@ -1324,4 +1323,3 @@ java/oracle-8/man/man1/wsgen.1
java/oracle-8/man/man1/wsimport.1
java/oracle-8/man/man1/xjc.1
java/oracle-8/src.zip
-@pkgdir java/oracle-8/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/.data
diff --git a/lang/oracle-jdk8/distinfo b/lang/oracle-jdk8/distinfo
index fb763ad1d71..9608b35e276 100644
--- a/lang/oracle-jdk8/distinfo
+++ b/lang/oracle-jdk8/distinfo
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.1 2015/05/30 09:51:11 ryoon Exp $
+$NetBSD: distinfo,v 1.2 2015/08/30 10:52:15 ryoon Exp $
-SHA1 (jdk-8u45-linux-i586.tar.gz) = 14c71e523126b8415f68fdda0917350fa572aafa
-RMD160 (jdk-8u45-linux-i586.tar.gz) = 7862e6a27db6da09de3f5b8518d4dd8aa03dd421
-Size (jdk-8u45-linux-i586.tar.gz) = 174985642 bytes
-SHA1 (jdk-8u45-linux-x64.tar.gz) = 75e2fff2ed161c7de293c4408be8da8f2282b07b
-RMD160 (jdk-8u45-linux-x64.tar.gz) = bf02284355342b6856de8dedf8ffbc275a047ec7
-Size (jdk-8u45-linux-x64.tar.gz) = 173271626 bytes
-SHA1 (jdk-8u45-solaris-x64.tar.gz) = 6ffa150f9276b0c7cfb0842938d64f1e6500e4e0
-RMD160 (jdk-8u45-solaris-x64.tar.gz) = 3c21b7d6b655e150f8a98f6bd011969a071c3f9b
-Size (jdk-8u45-solaris-x64.tar.gz) = 100537403 bytes
+SHA1 (jdk-8u60-linux-i586.tar.gz) = f18faaa709278b517cde74e7b9165dc3ae7e076c
+RMD160 (jdk-8u60-linux-i586.tar.gz) = e7243e41761fdd6bd4028be3c34795bc5b43f21c
+Size (jdk-8u60-linux-i586.tar.gz) = 183321048 bytes
+SHA1 (jdk-8u60-linux-x64.tar.gz) = 19470e2ed867d9453e1bb5e1d6adca87cc23f55e
+RMD160 (jdk-8u60-linux-x64.tar.gz) = bd8ffc56062490cc6b4cd553a4a1d0c3d2a3d1fd
+Size (jdk-8u60-linux-x64.tar.gz) = 181238643 bytes
+SHA1 (jdk-8u60-solaris-x64.tar.gz) = ec336c54d787a14820d182b97a6675b9149a91cf
+RMD160 (jdk-8u60-solaris-x64.tar.gz) = 6164e9d5a8976fac1eb6d1bcdbf67315f1603047
+Size (jdk-8u60-solaris-x64.tar.gz) = 101412950 bytes
diff --git a/lang/oracle-jre8/Makefile.common b/lang/oracle-jre8/Makefile.common
index d7d9919c34b..6ae16a9cde9 100644
--- a/lang/oracle-jre8/Makefile.common
+++ b/lang/oracle-jre8/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+# $NetBSD: Makefile.common,v 1.2 2015/08/30 10:52:16 ryoon Exp $
# used by lang/oracle-jre8/Makefile
# used by lang/oracle-jdk8/Makefile
@@ -21,7 +21,7 @@ EMUL_PLATFORMS= linux-i386 linux-x86_64 solaris-x86_64
USE_TOOLS+= pax
# JDK8 Update number
-UPDATE_NUMBER= 45
+UPDATE_NUMBER= 60
.include "../../mk/bsd.prefs.mk"
diff --git a/lang/oracle-jre8/PLIST.linux-i386 b/lang/oracle-jre8/PLIST.linux-i386
index 57cac40158e..d96159a15e9 100644
--- a/lang/oracle-jre8/PLIST.linux-i386
+++ b/lang/oracle-jre8/PLIST.linux-i386
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.linux-i386,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+@comment $NetBSD: PLIST.linux-i386,v 1.2 2015/08/30 10:52:16 ryoon Exp $
bin/oracle8-java
bin/oracle8-javaws
bin/oracle8-keytool
@@ -30,7 +30,7 @@ java/oracle-8/bin/rmiregistry
java/oracle-8/bin/servertool
java/oracle-8/bin/tnameserv
java/oracle-8/bin/unpack200
-java/oracle-8/lib/calendars.properties.default
+java/oracle-8/lib/calendars.properties
java/oracle-8/lib/charsets.jar
java/oracle-8/lib/classlist
java/oracle-8/lib/cmm/CIEXYZ.pf
@@ -38,7 +38,7 @@ java/oracle-8/lib/cmm/GRAY.pf
java/oracle-8/lib/cmm/LINEAR_RGB.pf
java/oracle-8/lib/cmm/PYCC.pf
java/oracle-8/lib/cmm/sRGB.pf
-java/oracle-8/lib/content-types.properties.default
+java/oracle-8/lib/content-types.properties
java/oracle-8/lib/currency.data
java/oracle-8/lib/deploy.jar
java/oracle-8/lib/deploy/MixedCodeMainDialog.ui
@@ -46,18 +46,18 @@ java/oracle-8/lib/deploy/MixedCodeMainDialogJs.ui
java/oracle-8/lib/deploy/cautionshield.icns
java/oracle-8/lib/deploy/ffjcext.zip
java/oracle-8/lib/deploy/java-icon.ico
-java/oracle-8/lib/deploy/messages.properties.default
-java/oracle-8/lib/deploy/messages_de.properties.default
-java/oracle-8/lib/deploy/messages_es.properties.default
-java/oracle-8/lib/deploy/messages_fr.properties.default
-java/oracle-8/lib/deploy/messages_it.properties.default
-java/oracle-8/lib/deploy/messages_ja.properties.default
-java/oracle-8/lib/deploy/messages_ko.properties.default
-java/oracle-8/lib/deploy/messages_pt_BR.properties.default
-java/oracle-8/lib/deploy/messages_sv.properties.default
-java/oracle-8/lib/deploy/messages_zh_CN.properties.default
-java/oracle-8/lib/deploy/messages_zh_HK.properties.default
-java/oracle-8/lib/deploy/messages_zh_TW.properties.default
+java/oracle-8/lib/deploy/messages.properties
+java/oracle-8/lib/deploy/messages_de.properties
+java/oracle-8/lib/deploy/messages_es.properties
+java/oracle-8/lib/deploy/messages_fr.properties
+java/oracle-8/lib/deploy/messages_it.properties
+java/oracle-8/lib/deploy/messages_ja.properties
+java/oracle-8/lib/deploy/messages_ko.properties
+java/oracle-8/lib/deploy/messages_pt_BR.properties
+java/oracle-8/lib/deploy/messages_sv.properties
+java/oracle-8/lib/deploy/messages_zh_CN.properties
+java/oracle-8/lib/deploy/messages_zh_HK.properties
+java/oracle-8/lib/deploy/messages_zh_TW.properties
java/oracle-8/lib/deploy/mixcode_s.png
java/oracle-8/lib/deploy/splash.gif
java/oracle-8/lib/deploy/splash@2x.gif
@@ -116,6 +116,7 @@ java/oracle-8/lib/desktop/mime/packages/x-java-archive.xml
java/oracle-8/lib/desktop/mime/packages/x-java-jnlp-file.xml
java/oracle-8/lib/ext/cldrdata.jar
java/oracle-8/lib/ext/dnsns.jar
+java/oracle-8/lib/ext/jaccess.jar
java/oracle-8/lib/ext/jfxrt.jar
java/oracle-8/lib/ext/localedata.jar
java/oracle-8/lib/ext/meta-index
@@ -124,7 +125,7 @@ java/oracle-8/lib/ext/sunec.jar
java/oracle-8/lib/ext/sunjce_provider.jar
java/oracle-8/lib/ext/sunpkcs11.jar
java/oracle-8/lib/ext/zipfs.jar
-java/oracle-8/lib/flavormap.properties.default
+java/oracle-8/lib/flavormap.properties
java/oracle-8/lib/fontconfig.RedHat.5.bfc.default
java/oracle-8/lib/fontconfig.RedHat.5.properties.src.default
java/oracle-8/lib/fontconfig.RedHat.6.bfc.default
@@ -146,12 +147,12 @@ java/oracle-8/lib/fonts/LucidaSansRegular.ttf
java/oracle-8/lib/fonts/LucidaTypewriterBold.ttf
java/oracle-8/lib/fonts/LucidaTypewriterRegular.ttf
java/oracle-8/lib/fonts/fonts.dir
-java/oracle-8/lib/hijrah-config-umalqura.properties
+java/oracle-8/lib/hijrah-config-umalqura.properties.default
java/oracle-8/lib/i386/client/Xusage.txt
java/oracle-8/lib/i386/client/libjsig.so
java/oracle-8/lib/i386/client/libjvm.so
java/oracle-8/lib/i386/jli/libjli.so
-java/oracle-8/lib/i386/jvm.cfg.default
+java/oracle-8/lib/i386/jvm.cfg
java/oracle-8/lib/i386/libavplugin-53.so
java/oracle-8/lib/i386/libavplugin-54.so
java/oracle-8/lib/i386/libawt.so
@@ -211,7 +212,7 @@ java/oracle-8/lib/i386/libzip.so
java/oracle-8/lib/i386/server/Xusage.txt
java/oracle-8/lib/i386/server/libjsig.so
java/oracle-8/lib/i386/server/libjvm.so
-java/oracle-8/lib/images/cursors/cursors.properties.default
+java/oracle-8/lib/images/cursors/cursors.properties
java/oracle-8/lib/images/cursors/invalid32x32.gif
java/oracle-8/lib/images/cursors/motif_CopyDrop32x32.gif
java/oracle-8/lib/images/cursors/motif_CopyNoDrop32x32.gif
@@ -223,7 +224,7 @@ java/oracle-8/lib/images/icons/sun-java.png
java/oracle-8/lib/images/icons/sun-java_HighContrast.png
java/oracle-8/lib/images/icons/sun-java_HighContrastInverse.png
java/oracle-8/lib/images/icons/sun-java_LowContrast.png
-java/oracle-8/lib/javafx.properties.default
+java/oracle-8/lib/javafx.properties
java/oracle-8/lib/javaws.jar
java/oracle-8/lib/jce.jar
java/oracle-8/lib/jexec
@@ -247,22 +248,22 @@ java/oracle-8/lib/locale/zh/LC_MESSAGES/sunw_java_plugin.mo
java/oracle-8/lib/locale/zh_HK.BIG5HK/LC_MESSAGES/sunw_java_plugin.mo
java/oracle-8/lib/locale/zh_TW.BIG5/LC_MESSAGES/sunw_java_plugin.mo
java/oracle-8/lib/locale/zh_TW/LC_MESSAGES/sunw_java_plugin.mo
-java/oracle-8/lib/logging.properties.default
+java/oracle-8/lib/logging.properties
java/oracle-8/lib/management-agent.jar
java/oracle-8/lib/management/jmxremote.access
java/oracle-8/lib/management/jmxremote.password.template
-java/oracle-8/lib/management/management.properties.default
+java/oracle-8/lib/management/management.properties
java/oracle-8/lib/management/snmp.acl.template
java/oracle-8/lib/meta-index
-java/oracle-8/lib/net.properties.default
+java/oracle-8/lib/net.properties
java/oracle-8/lib/oblique-fonts/LucidaSansDemiOblique.ttf
java/oracle-8/lib/oblique-fonts/LucidaSansOblique.ttf
java/oracle-8/lib/oblique-fonts/LucidaTypewriterBoldOblique.ttf
java/oracle-8/lib/oblique-fonts/LucidaTypewriterOblique.ttf
java/oracle-8/lib/oblique-fonts/fonts.dir
java/oracle-8/lib/plugin.jar
-java/oracle-8/lib/psfont.properties.ja.default
-java/oracle-8/lib/psfontj2d.properties.default
+java/oracle-8/lib/psfont.properties.ja
+java/oracle-8/lib/psfontj2d.properties
java/oracle-8/lib/resources.jar
java/oracle-8/lib/rt.jar
java/oracle-8/lib/security/US_export_policy.jar
@@ -270,11 +271,11 @@ java/oracle-8/lib/security/blacklist
java/oracle-8/lib/security/blacklisted.certs
java/oracle-8/lib/security/cacerts
java/oracle-8/lib/security/java.policy
-java/oracle-8/lib/security/java.security.default
+java/oracle-8/lib/security/java.security
java/oracle-8/lib/security/javaws.policy
java/oracle-8/lib/security/local_policy.jar
java/oracle-8/lib/security/trusted.libraries
-java/oracle-8/lib/sound.properties.default
+java/oracle-8/lib/sound.properties
java/oracle-8/lib/tzdb.dat
java/oracle-8/man/ja
java/oracle-8/man/ja_JP.UTF-8/man1/java.1
@@ -304,4 +305,3 @@ java/oracle-8/man/man1/unpack200.1
java/oracle-8/plugin/desktop/sun_java.desktop
java/oracle-8/plugin/desktop/sun_java.png
java/oracle-8/release
-@pkgdir java/oracle-8/lib/applet
diff --git a/lang/oracle-jre8/PLIST.linux-x86_64 b/lang/oracle-jre8/PLIST.linux-x86_64
index dbb29dfc178..4c067f4f652 100644
--- a/lang/oracle-jre8/PLIST.linux-x86_64
+++ b/lang/oracle-jre8/PLIST.linux-x86_64
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.linux-x86_64,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+@comment $NetBSD: PLIST.linux-x86_64,v 1.2 2015/08/30 10:52:16 ryoon Exp $
bin/oracle8-java
bin/oracle8-javaws
bin/oracle8-keytool
@@ -177,6 +177,7 @@ java/oracle-8/lib/desktop/mime/packages/x-java-archive.xml
java/oracle-8/lib/desktop/mime/packages/x-java-jnlp-file.xml
java/oracle-8/lib/ext/cldrdata.jar
java/oracle-8/lib/ext/dnsns.jar
+java/oracle-8/lib/ext/jaccess.jar
java/oracle-8/lib/ext/jfxrt.jar
java/oracle-8/lib/ext/localedata.jar
java/oracle-8/lib/ext/meta-index
@@ -301,4 +302,3 @@ java/oracle-8/man/man1/unpack200.1
java/oracle-8/plugin/desktop/sun_java.desktop
java/oracle-8/plugin/desktop/sun_java.png
java/oracle-8/release
-@pkgdir java/oracle-8/lib/applet
diff --git a/lang/oracle-jre8/PLIST.solaris-x86_64 b/lang/oracle-jre8/PLIST.solaris-x86_64
index e774e344932..f218a79b925 100644
--- a/lang/oracle-jre8/PLIST.solaris-x86_64
+++ b/lang/oracle-jre8/PLIST.solaris-x86_64
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.solaris-x86_64,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+@comment $NetBSD: PLIST.solaris-x86_64,v 1.2 2015/08/30 10:52:16 ryoon Exp $
bin/oracle8-java
bin/oracle8-javaws
bin/oracle8-keytool
@@ -39,7 +39,7 @@ java/oracle-8/bin/tnameserv
java/oracle-8/bin/unpack200
java/oracle-8/lib/amd64/jli/libjli.so
java/oracle-8/lib/amd64/jspawnhelper
-java/oracle-8/lib/amd64/jvm.cfg.default
+java/oracle-8/lib/amd64/jvm.cfg
java/oracle-8/lib/amd64/libawt.so
java/oracle-8/lib/amd64/libawt_headless.so
java/oracle-8/lib/amd64/libawt_xawt.so
@@ -83,7 +83,7 @@ java/oracle-8/lib/amd64/server/libjsig.so
java/oracle-8/lib/amd64/server/libjvm.so
java/oracle-8/lib/amd64/server/libjvm_db.so
java/oracle-8/lib/amd64/server/libjvm_dtrace.so
-java/oracle-8/lib/calendars.properties.default
+java/oracle-8/lib/calendars.properties
java/oracle-8/lib/charsets.jar
java/oracle-8/lib/classlist
java/oracle-8/lib/cmm/CIEXYZ.pf
@@ -91,10 +91,11 @@ java/oracle-8/lib/cmm/GRAY.pf
java/oracle-8/lib/cmm/LINEAR_RGB.pf
java/oracle-8/lib/cmm/PYCC.pf
java/oracle-8/lib/cmm/sRGB.pf
-java/oracle-8/lib/content-types.properties.default
+java/oracle-8/lib/content-types.properties
java/oracle-8/lib/currency.data
java/oracle-8/lib/ext/cldrdata.jar
java/oracle-8/lib/ext/dnsns.jar
+java/oracle-8/lib/ext/jaccess.jar
java/oracle-8/lib/ext/localedata.jar
java/oracle-8/lib/ext/meta-index
java/oracle-8/lib/ext/nashorn.jar
@@ -103,9 +104,9 @@ java/oracle-8/lib/ext/sunjce_provider.jar
java/oracle-8/lib/ext/sunpkcs11.jar
java/oracle-8/lib/ext/ucrypto.jar
java/oracle-8/lib/ext/zipfs.jar
-java/oracle-8/lib/flavormap.properties.default
-java/oracle-8/lib/fontconfig.bfc.default
-java/oracle-8/lib/fontconfig.properties.src.default
+java/oracle-8/lib/flavormap.properties
+java/oracle-8/lib/fontconfig.bfc
+java/oracle-8/lib/fontconfig.properties.src
java/oracle-8/lib/fonts/LucidaBrightDemiBold.ttf
java/oracle-8/lib/fonts/LucidaBrightDemiItalic.ttf
java/oracle-8/lib/fonts/LucidaBrightItalic.ttf
@@ -115,8 +116,8 @@ java/oracle-8/lib/fonts/LucidaSansRegular.ttf
java/oracle-8/lib/fonts/LucidaTypewriterBold.ttf
java/oracle-8/lib/fonts/LucidaTypewriterRegular.ttf
java/oracle-8/lib/fonts/fonts.dir
-java/oracle-8/lib/hijrah-config-umalqura.properties
-java/oracle-8/lib/images/cursors/cursors.properties.default
+java/oracle-8/lib/hijrah-config-umalqura.properties.default
+java/oracle-8/lib/images/cursors/cursors.properties
java/oracle-8/lib/images/cursors/invalid32x32.gif
java/oracle-8/lib/images/cursors/motif_CopyDrop32x32.gif
java/oracle-8/lib/images/cursors/motif_CopyNoDrop32x32.gif
@@ -130,16 +131,16 @@ java/oracle-8/lib/jfr/default.jfc
java/oracle-8/lib/jfr/profile.jfc
java/oracle-8/lib/jsse.jar
java/oracle-8/lib/jvm.hprof.txt
-java/oracle-8/lib/logging.properties.default
+java/oracle-8/lib/logging.properties
java/oracle-8/lib/management-agent.jar
java/oracle-8/lib/management/jmxremote.access
java/oracle-8/lib/management/jmxremote.password.template
-java/oracle-8/lib/management/management.properties.default
+java/oracle-8/lib/management/management.properties
java/oracle-8/lib/management/snmp.acl.template
java/oracle-8/lib/meta-index
-java/oracle-8/lib/net.properties.default
-java/oracle-8/lib/psfont.properties.ja.default
-java/oracle-8/lib/psfontj2d.properties.default
+java/oracle-8/lib/net.properties
+java/oracle-8/lib/psfont.properties.ja
+java/oracle-8/lib/psfontj2d.properties
java/oracle-8/lib/resources.jar
java/oracle-8/lib/rt.jar
java/oracle-8/lib/sdp/sdp.conf.template
@@ -148,12 +149,12 @@ java/oracle-8/lib/security/blacklist
java/oracle-8/lib/security/blacklisted.certs
java/oracle-8/lib/security/cacerts
java/oracle-8/lib/security/java.policy
-java/oracle-8/lib/security/java.security.default
+java/oracle-8/lib/security/java.security
java/oracle-8/lib/security/local_policy.jar
-java/oracle-8/lib/security/sunpkcs11-solaris.cfg.default
+java/oracle-8/lib/security/sunpkcs11-solaris.cfg
java/oracle-8/lib/security/trusted.libraries
-java/oracle-8/lib/security/ucrypto-solaris.cfg.default
-java/oracle-8/lib/sound.properties.default
+java/oracle-8/lib/security/ucrypto-solaris.cfg
+java/oracle-8/lib/sound.properties
java/oracle-8/lib/tzdb.dat
java/oracle-8/man/ja/man1/java.1
java/oracle-8/man/ja/man1/jjs.1
@@ -200,4 +201,3 @@ java/oracle-8/man/man1/servertool.1
java/oracle-8/man/man1/tnameserv.1
java/oracle-8/man/man1/unpack200.1
java/oracle-8/release
-@pkgdir java/oracle-8/lib/applet
diff --git a/lang/oracle-jre8/distinfo b/lang/oracle-jre8/distinfo
index 20a16ca6df8..91617c47550 100644
--- a/lang/oracle-jre8/distinfo
+++ b/lang/oracle-jre8/distinfo
@@ -1,14 +1,14 @@
-$NetBSD: distinfo,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+$NetBSD: distinfo,v 1.2 2015/08/30 10:52:16 ryoon Exp $
SHA1 (jce_policy-8.zip) = 7d25dcee3e6ef2c984d748a14614b37c18ce3507
RMD160 (jce_policy-8.zip) = bdcb54a9900c00b52c24d024282b6e40c148d49c
Size (jce_policy-8.zip) = 8409 bytes
-SHA1 (jre-8u45-linux-i586.tar.gz) = ce6a870067947bf22154f9055df0a8752cfaf785
-RMD160 (jre-8u45-linux-i586.tar.gz) = cee7e0f15d8fbcd71b8e586230055955cfdded8f
-Size (jre-8u45-linux-i586.tar.gz) = 65672226 bytes
-SHA1 (jre-8u45-linux-x64.tar.gz) = a89f73e4101e2e9bc6b39cec2066b83ecc0b97db
-RMD160 (jre-8u45-linux-x64.tar.gz) = acf1c2f5c9335d5a5cf7c9db9b61efed1f902cbc
-Size (jre-8u45-linux-x64.tar.gz) = 63822322 bytes
-SHA1 (jre-8u45-solaris-x64.tar.gz) = 5fbbb81cb99a3a139701d95c7ec64dfc9bbc3706
-RMD160 (jre-8u45-solaris-x64.tar.gz) = 492a3688aea6c419fe66912d2b9a8ed6bb78ccf5
-Size (jre-8u45-solaris-x64.tar.gz) = 51902127 bytes
+SHA1 (jre-8u60-linux-i586.tar.gz) = 27c66201df30500cd87c557b48e05f265f110d96
+RMD160 (jre-8u60-linux-i586.tar.gz) = 4652b51a5371e7e606bf7ca7c535bfd9d01b6917
+Size (jre-8u60-linux-i586.tar.gz) = 73863653 bytes
+SHA1 (jre-8u60-linux-x64.tar.gz) = 1dcfa4ea4cd82be67f598564424f67a46e6a5f58
+RMD160 (jre-8u60-linux-x64.tar.gz) = 6fd20f85f941a1c4da313d5f48c2781696f4d05c
+Size (jre-8u60-linux-x64.tar.gz) = 71680110 bytes
+SHA1 (jre-8u60-solaris-x64.tar.gz) = f46caf3d2a6ff79c6b3c8fd0f45a924bca21c969
+RMD160 (jre-8u60-solaris-x64.tar.gz) = b0626d42839e11bdd7408dcd26619bc8ed32a172
+Size (jre-8u60-solaris-x64.tar.gz) = 52202549 bytes
diff --git a/lang/oracle-jre8/sfiles-linux-i386.mk b/lang/oracle-jre8/sfiles-linux-i386.mk
index f7d8a49a47e..e67d2631220 100644
--- a/lang/oracle-jre8/sfiles-linux-i386.mk
+++ b/lang/oracle-jre8/sfiles-linux-i386.mk
@@ -1,23 +1,8 @@
-# $NetBSD: sfiles-linux-i386.mk,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+# $NetBSD: sfiles-linux-i386.mk,v 1.2 2015/08/30 10:52:16 ryoon Exp $
#
# Created with "make makesfiles"
# Do not edit this file manually!
#
-SFILES+= calendars.properties
-SFILES+= content-types.properties
-SFILES+= deploy/messages_pt_BR.properties
-SFILES+= deploy/messages_es.properties
-SFILES+= deploy/messages_sv.properties
-SFILES+= deploy/messages_ko.properties
-SFILES+= deploy/messages_fr.properties
-SFILES+= deploy/messages_zh_TW.properties
-SFILES+= deploy/messages_zh_CN.properties
-SFILES+= deploy/messages_it.properties
-SFILES+= deploy/messages_de.properties
-SFILES+= deploy/messages_zh_HK.properties
-SFILES+= deploy/messages.properties
-SFILES+= deploy/messages_ja.properties
-SFILES+= flavormap.properties
SFILES+= fontconfig.RedHat.5.bfc
SFILES+= fontconfig.RedHat.5.properties.src
SFILES+= fontconfig.RedHat.6.bfc
@@ -30,13 +15,4 @@ SFILES+= fontconfig.Turbo.bfc
SFILES+= fontconfig.Turbo.properties.src
SFILES+= fontconfig.bfc
SFILES+= fontconfig.properties.src
-SFILES+= i386/jvm.cfg
-SFILES+= images/cursors/cursors.properties
-SFILES+= javafx.properties
-SFILES+= logging.properties
-SFILES+= management/management.properties
-SFILES+= net.properties
-SFILES+= psfont.properties.ja
-SFILES+= psfontj2d.properties
-SFILES+= security/java.security
-SFILES+= sound.properties
+SFILES+= hijrah-config-umalqura.properties
diff --git a/lang/oracle-jre8/sfiles-linux-x86_64.mk b/lang/oracle-jre8/sfiles-linux-x86_64.mk
index 26c7a0be36d..db26f5633d9 100644
--- a/lang/oracle-jre8/sfiles-linux-x86_64.mk
+++ b/lang/oracle-jre8/sfiles-linux-x86_64.mk
@@ -1,4 +1,4 @@
-# $NetBSD: sfiles-linux-x86_64.mk,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+# $NetBSD: sfiles-linux-x86_64.mk,v 1.2 2015/08/30 10:52:16 ryoon Exp $
#
# Created with "make makesfiles"
# Do not edit this file manually!
@@ -6,18 +6,18 @@
SFILES+= amd64/jvm.cfg
SFILES+= calendars.properties
SFILES+= content-types.properties
+SFILES+= deploy/messages_es.properties
+SFILES+= deploy/messages_zh_TW.properties
SFILES+= deploy/messages_fr.properties
SFILES+= deploy/messages.properties
+SFILES+= deploy/messages_zh_CN.properties
SFILES+= deploy/messages_pt_BR.properties
SFILES+= deploy/messages_de.properties
-SFILES+= deploy/messages_zh_TW.properties
+SFILES+= deploy/messages_sv.properties
SFILES+= deploy/messages_ko.properties
-SFILES+= deploy/messages_es.properties
+SFILES+= deploy/messages_zh_HK.properties
SFILES+= deploy/messages_it.properties
SFILES+= deploy/messages_ja.properties
-SFILES+= deploy/messages_zh_CN.properties
-SFILES+= deploy/messages_sv.properties
-SFILES+= deploy/messages_zh_HK.properties
SFILES+= flavormap.properties
SFILES+= fontconfig.RedHat.5.bfc
SFILES+= fontconfig.RedHat.5.properties.src
diff --git a/lang/oracle-jre8/sfiles-solaris-x86_64.mk b/lang/oracle-jre8/sfiles-solaris-x86_64.mk
index 26ccc4268d8..d41c1507b3d 100644
--- a/lang/oracle-jre8/sfiles-solaris-x86_64.mk
+++ b/lang/oracle-jre8/sfiles-solaris-x86_64.mk
@@ -1,4 +1,4 @@
-# $NetBSD: sfiles-solaris-x86_64.mk,v 1.1 2015/05/30 09:49:43 ryoon Exp $
+# $NetBSD: sfiles-solaris-x86_64.mk,v 1.2 2015/08/30 10:52:16 ryoon Exp $
#
# Created with "make makesfiles"
# Do not edit this file manually!
@@ -16,6 +16,6 @@ SFILES+= net.properties
SFILES+= psfont.properties.ja
SFILES+= psfontj2d.properties
SFILES+= security/sunpkcs11-solaris.cfg
-SFILES+= security/java.security
SFILES+= security/ucrypto-solaris.cfg
+SFILES+= security/java.security
SFILES+= sound.properties