summaryrefslogtreecommitdiff
path: root/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update jtreg to 4.1 b04.Jung-uk Kim2012-05-092-4/+4
| | | | Notes: svn path=/head/; revision=296318
* . Update to build 25.Greg Lewis2012-05-093-791/+5
| | | | Notes: svn path=/head/; revision=296270
* . Enlist openjdk7 users as testers of ant 1.8.3.Greg Lewis2012-05-062-3/+3
| | | | Notes: svn path=/head/; revision=296099
* . Make as IGNORE now that eclipse is updated to 3.7.1.Greg Lewis2012-05-061-0/+2
| | | | Notes: svn path=/head/; revision=296070
* . Update to 3.7.1.Greg Lewis2012-05-068-457/+751
| | | | Notes: svn path=/head/; revision=296069
* . Add a POLICY option to install the unlimited strength policy files andGreg Lewis2012-05-041-1/+7
| | | | | | | | | | default it to on since I can't imagine why anyone would deliberately want the limited strength versions given a choice. Cribbed from java/openjdk6 Notes: svn path=/head/; revision=295990
* . Fix the look up of time zone data when TZUPDATE is turned on and as aGreg Lewis2012-05-022-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | result turn it on by default again. This change bears a little more explanation. In UnixFileSystem.java there is a cache of canonical paths and in particular one for paths inside java.home. The problem with looking up time zone data is that if another path within java.home has been looked up then the symlink for the time zone data is not resolved (since the cache assumes there are no symlinks in java.home) and we fail to be able to open the ZoneInfoMapping file. One of the other features in UnixFileSystem is that the cache is not consulted and full resolution occurs for paths containing "." or "..". I've chosen to (ab)use this to force resolution of the time zone data directory in ZoneInfoFile.java rather than doing something like IcedTea did which was to introduce a tz.properties file where they would stash the time zone info directory rather than symlinking it in. For full reference that patch is here: http://icedtea.classpath.org/hg/icedtea6/file/tip/patches/use-system-tzdata.patch There are two main reasons I chose a bit of a hack rather than something like this. 1. I want to apply the patch to non-GPL'ed code (e.g. the jdk16 port). 2. Using updated time zone data is only an option in the port and using something like tz.properties when the option is off is clunky. Thanks to avg@ for sleuth work on finding the bug write up and the IcedTea fix. Notes: svn path=/head/; revision=295845
* The Oracle Java 7 Runtime Environment for Linux.Jung-uk Kim2012-05-017-0/+948
| | | | | | | WWW: http://www.oracle.com/us/technologies/java/index.html Notes: svn path=/head/; revision=295818
* - Update to 6u32.Jung-uk Kim2012-05-013-4/+4
| | | | | | | - Recommend OpenJDK6 instead of the deprecated JRL-licensed port. Notes: svn path=/head/; revision=295816
* Recommend OpenJDK6 instead of the deprecated JRL-licensed port.Jung-uk Kim2012-05-011-1/+1
| | | | Notes: svn path=/head/; revision=295815
* - Update to 6u32.Jung-uk Kim2012-05-013-2175/+2194
| | | | | | | - Add an option to install demos and samples. Turned on by default. Notes: svn path=/head/; revision=295812
* Add an option to install demos and samples. Turned off by default.Jung-uk Kim2012-05-013-0/+1447
| | | | Notes: svn path=/head/; revision=295811
* . Update to 7u4.Greg Lewis2012-05-013-21/+15
| | | | Notes: svn path=/head/; revision=295772
* . Update to 6u31.Greg Lewis2012-05-012-4/+3
| | | | Notes: svn path=/head/; revision=295770
* Update to 1.4.0Tilman Keskinoz2012-04-302-3/+3
| | | | Notes: svn path=/head/; revision=295720
* . Update to 3.7.1.Greg Lewis2012-04-227-1003/+430
| | | | | | | Submitted by: tg@ Notes: svn path=/head/; revision=295235
* . Turn the TZUPDATE option off by default until I can figure out how thatGreg Lewis2012-04-191-2/+2
| | | | | | | breaks the Eclipse build. Notes: svn path=/head/; revision=295124
* . Update to 7u3.Greg Lewis2012-04-182-3/+3
| | | | Notes: svn path=/head/; revision=295046
* . Update to 7 Update 3. Since there was no separate source bundle releasedGreg Lewis2012-04-182-2/+4329
| | | | | | | | this is done with an additional patch instead of updating the source bundle being used and the associated patch set. Notes: svn path=/head/; revision=295045
* - deprecate: depends on java/sun-wtkAlex Kozlov2012-04-171-0/+3
| | | | | | | Approved by: eadler (mentor) Notes: svn path=/head/; revision=294958
* - fix explicit use of unzipAlex Kozlov2012-04-171-1/+4
| | | | | | | | | - deprecate: no more public distfiles, merged with Java ME SDK 3.0 upstream Approved by: eadler (mentor) Notes: svn path=/head/; revision=294957
* . Remove jbootstrap (was used to bootstrap jdk13, which is long gone).Greg Lewis2012-04-165-50/+0
| | | | Notes: svn path=/head/; revision=294887
* . Switch to the new java-zoneinfo port to provide updated time zone infoGreg Lewis2012-04-163-498/+426
| | | | | | | rather than relying on the official time zone updater. Notes: svn path=/head/; revision=294885
* . Switch to the new java-zoneinfo port to provide updated time zone infoGreg Lewis2012-04-153-498/+426
| | | | | | | rather than relying on the official time zone updater. Notes: svn path=/head/; revision=294882
* . Switch to the new java-zoneinfo port to provide updated time zone infoGreg Lewis2012-04-152-19/+5
| | | | | | | rather than relying on the official time zone updater. Notes: svn path=/head/; revision=294880
* . Use the new java-zoneinfo port to provide updated time zone info.Greg Lewis2012-04-141-0/+15
| | | | Notes: svn path=/head/; revision=294829
* . Use the new java-zoneinfo port to provide updated time zone info.Greg Lewis2012-04-131-3/+14
| | | | Notes: svn path=/head/; revision=294759
* . Switch to the new java-zoneinfo port to provide updated time zone infoGreg Lewis2012-04-132-19/+5
| | | | | | | rather than relying on the official time zone updater. Notes: svn path=/head/; revision=294757
* - Add desktop entryPietro Cerutti2012-04-121-0/+7
| | | | | | | | PR: 166785 Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de> Notes: svn path=/head/; revision=294717
* . Switch to the new java-zoneinfo port to provide updated time zone infoGreg Lewis2012-04-116-986/+918
| | | | | | | rather than relying on the official time zone updater. Notes: svn path=/head/; revision=294585
* . Update to 2012c.Greg Lewis2012-04-042-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=294181
* . Add a port that supplies updated zoneinfo files in the format expected byGreg Lewis2012-03-315-0/+502
| | | | | | | | | | | the JDK/JRE ports. This will make keeping up to date with new timezone data easier and prevent all the JDK/JRE ports needing to be updated regularly whenever a new TZUpdater is released by Oracle. Feature safe: yes Notes: svn path=/head/; revision=294028
* Update to 1.4.5 release.Alex Dupre2012-03-262-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=293830
* - java 1.6+ is requiredJason Helfman2012-03-242-2/+3
| | | | | | | | | | - bump PORTREVISION Submitted by: glewis@ (via email) Feature safe: yes Notes: svn path=/head/; revision=293776
* - Rename jar based on versionJason Helfman2012-03-212-5/+6
| | | | | | | | | | | - Tweak ecj.sh to handle version and compilation - bump PORTREVISION Submitted by: jkim@, glewis@, pitpalme+unix@gmail.com (emails) Feature safe: yes Notes: svn path=/head/; revision=293619
* Add new port: java/eclipse-ecjJason Helfman2012-03-195-0/+50
| | | | | | | | | | | | | An incremental Java compiler. Implemented as an Eclipse builder, it is based on technology evolved from VisualAge for Java compiler. In particular, it allows to run and debug code which still contains unresolved errors. WWW: http://www.eclipse.org/ Feature safe: yes Notes: svn path=/head/; revision=293586
* Fix build with OpenJDK7 and add LICENSE.Alex Dupre2012-03-131-2/+7
| | | | | | | | | PR: ports/165774 Submitted by: Volodymyr Kostyrko <c.kworr@gmail.com> Feature safe: yes Notes: svn path=/head/; revision=293221
* - Update to 7.1.1Pietro Cerutti2012-03-123-30/+28
| | | | | | | | | Release notes: http://netbeans.org/community/releases/71/relnotes.html Feature safe: yes Notes: svn path=/head/; revision=293164
* Update download URL since Sun Download Center was decommissioned and does noCarlo Strub2012-03-061-1/+1
| | | | | | | | | | | redirection. PR: ports/165689 Submitted by: Sutra Zhou <zhoushuqun@gmail.com> Approved by: glarkin@ (mentor, implicit) Notes: svn path=/head/; revision=292852
* . Use the latest cacerts file from the official Oracle distribution ofGreg Lewis2012-03-061-0/+0
| | | | | | | Update 2. Notes: svn path=/head/; revision=292799
* . Update to OpenJDK 7 Update 2.Greg Lewis2012-03-063-2453/+1604
| | | | Notes: svn path=/head/; revision=292798
* Fix javaws launcher. This shell script now uses bash extensions.Jung-uk Kim2012-03-062-4/+15
| | | | Notes: svn path=/head/; revision=292789
* Update to 1.2.Jung-uk Kim2012-03-053-25/+50
| | | | Notes: svn path=/head/; revision=292787
* Remove quotes from BROKEN and IGNORE as they are not requiredEitan Adler2012-02-251-1/+1
| | | | | | | Approved by: maintainer timeout Notes: svn path=/head/; revision=292246
* Add extra repositoryChris Rees2012-02-232-2/+38
| | | | | | | | PR: ports/155547 Approved by: maintainer timeout Notes: svn path=/head/; revision=292130
* Prevent to add @dirrm entries begining with a /Baptiste Daroussin2012-02-221-1/+1
| | | | | | | Approved by: maintainer timeout (>5weeks) Notes: svn path=/head/; revision=292064
* Fix multiple security vulnerabilities.Jung-uk Kim2012-02-182-1/+786
| | | | | | | | | | | | | | | | CVE-2011-3563: Fix issues in java sound CVE-2011-3571: Fix in AtomicReferenceArray CVE-2011-5035: Add property to limit number of request headers to the HTTP Server CVE-2012-0501: Better input parameter checking in zip file processing CVE-2012-0502: Issues with some KeyboardFocusManager method CVE-2012-0503: Issues with TimeZone class CVE-2012-0505: Enhance exception throwing mechanism in ObjectStreamClass CVE-2012-0506: Issues with some method in corba Obtained from: IcedTea Project Notes: svn path=/head/; revision=291651
* - Mark as IGNORE. No development version is available right now.Pietro Cerutti2012-02-171-1/+1
| | | | Notes: svn path=/head/; revision=291557
* - Update to 7.1Pietro Cerutti2012-02-173-594/+488
| | | | | | | Release notes: http://netbeans.org/community/news/show/1549.html Notes: svn path=/head/; revision=291556
* . Make EXTRACT_DEPENDS check UNZIP_CMD rather than just unzip, since thisGreg Lewis2012-02-114-4/+4
| | | | | | | | | | | is what we use doing the actual unzipping. Fixes the build for FreeBSD 9. PR: 164847 Submitted by: Kukushkin Konstantin <dark@rambler-co.ru> Notes: svn path=/head/; revision=290928