summaryrefslogtreecommitdiff
path: root/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* . Fix locale generation.Greg Lewis2012-06-163-22/+41
| | | | PR: 169037
* WindowBuilder is a powerful and easy to use bi-directionalAlex Dupre2012-06-144-0/+51
| | | | | | | | | | | | | Java GUI designer that makes it very easy to create Java GUI applications without spending a lot of time writing code to display simple forms. With WindowBuilder you can create complicated windows in minutes. Use the visual designer and Java code will be generated for you. You can easily add controls using drag-and-drop, add event handlers to your controls, change various properties of controls using a property editor, internationalize your app and much more. WWW: http://www.eclipse.org/windowbuilder/
* - Fix multiple security vulnerabilities. [1]Jung-uk Kim2012-06-132-24/+2134
| | | | | | | | - Drop version suffixes from LIB_DEPENDS. - Use the new options framework. Obtained from: IcedTea Project [1] http://icedtea.classpath.org/hg/icedtea6/rev/9aff0fc60733
* 2012-05-31 deskutils/sciplore-mindmapping: Discontinued, use ↵Baptiste Daroussin2012-06-126-132/+0
| | | | | | | | | | | | deskutils/docear instead 2012-06-07 devel/libtool-fixed: libtool has been fixed, no more need of this version 2012-05-23 devel/p5-Devel-ObjectTracker: removed from CPAN 2012-05-10 devel/rubygem-vmc: BROKEN for more than 6 month 2012-06-01 games/antrix: no more public distfiles, abandoned upstream 2012-05-10 games/sfbol: BROKEN for more than 6 month 2012-06-01 java/eclipseme: depends on java/sun-wtk 2012-05-10 mail/lmtpd: BROKEN for more than 6 month
* Either linimon@ in 2011 or hq@ in 2006 broke the wrapper-script -- theMikhail Teterin2012-06-122-4/+4
| | | | | | | | | %%JAVA_VERSION%% inserted into it was never expanded... Now that we aren't using JDK-1.{3,4} anyway, the setting of JAVA_VERSION is, probably, redundant. Remove it and bump PORTREVISION. While here, declare the port as unsafe for parallel building. Unfortunately.
* - Update to 7.1.2Pietro Cerutti2012-06-113-6/+6
| | | | Release notes: http://netbeans.org/community/releases/71/relnotes.html
* - Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} orSteve Wills2012-06-101-1/+1
| | | | | | | | RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi)
* . Fix jstack.Greg Lewis2012-06-062-0/+17
|
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-2/+1
| | | | Review by: bapt, David Naylor (kde team)
* Update to 4.8 release.Alex Dupre2012-06-012-3/+3
|
* Update to 3.3.2 release.Alex Dupre2012-06-012-5/+5
| | | | | Note: since eclipse update to 3.7.1 JSP editing is not working anymore, for obscure reason a few plugins are not correctly loaded.
* Update to 3.7.2 release.Alex Dupre2012-06-012-4/+4
| | | | Approved by: maintainer timeout
* Update to 1.9.2 release.Alex Dupre2012-06-012-3/+3
| | | | Approved by: maintainer
* Update to 2.7.2 release.Alex Dupre2012-06-012-4/+4
| | | | Approved by: maintainer
* - update png to 1.5.10Dirk Meyer2012-06-0113-11/+13
|
* . Update to 7u4. This was a fairly significant merge, so please reportGreg Lewis2012-05-275-31534/+4773
| | | | | | | | any regressions in functionality that might have been missed. Biggest news is that partial BSD support is now in the official source distribution through the OS X port's inclusion. Partly obtained from Kurt Miller <kurt@intricatesoftware.com>
* . Specifically reference zip/unzip in ${LOCALBASE}/bin, since that is whereGreg Lewis2012-05-271-2/+2
| | | | | | | | the JDK build looks for them, but FreeBSD 9.x has them available in /usr/bin. Adjusting the JDK check is a harder fix, this will get things building again on 9.x quickly. PR: 166996
* Update to 3.0.7Lars Engels2012-05-233-21/+32
|
* Reset mitsuru@riken.jp: address bounces.Mark Linimon2012-05-211-1/+1
| | | | Hat: portmgr
* . Add an entry for the eclipse-sdktests DISTFILE. Much more still needsGreg Lewis2012-05-131-0/+2
| | | | | | to be done to get the tests working though. PR: 157600
* . Bootstrap with ant 1.8.3.Greg Lewis2012-05-122-3/+3
|
* Update jtreg to 4.1 b04.Jung-uk Kim2012-05-092-4/+4
|
* . Update to build 25.Greg Lewis2012-05-093-791/+5
|
* . Enlist openjdk7 users as testers of ant 1.8.3.Greg Lewis2012-05-062-3/+3
|
* . Make as IGNORE now that eclipse is updated to 3.7.1.Greg Lewis2012-05-061-0/+2
|
* . Update to 3.7.1.Greg Lewis2012-05-068-457/+751
|
* . 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
* . 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.
* 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
* - Update to 6u32.Jung-uk Kim2012-05-013-4/+4
| | | | - Recommend OpenJDK6 instead of the deprecated JRL-licensed port.
* Recommend OpenJDK6 instead of the deprecated JRL-licensed port.Jung-uk Kim2012-05-011-1/+1
|
* - Update to 6u32.Jung-uk Kim2012-05-013-2175/+2194
| | | | - Add an option to install demos and samples. Turned on by default.
* Add an option to install demos and samples. Turned off by default.Jung-uk Kim2012-05-013-0/+1447
|
* . Update to 7u4.Greg Lewis2012-05-013-21/+15
|
* . Update to 6u31.Greg Lewis2012-05-012-4/+3
|
* Update to 1.4.0Tilman Keskinoz2012-04-302-3/+3
|
* . Update to 3.7.1.Greg Lewis2012-04-227-1003/+430
| | | | Submitted by: tg@
* . Turn the TZUPDATE option off by default until I can figure out how thatGreg Lewis2012-04-191-2/+2
| | | | breaks the Eclipse build.
* . Update to 7u3.Greg Lewis2012-04-182-3/+3
|
* . 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.
* - deprecate: depends on java/sun-wtkAlex Kozlov2012-04-171-0/+3
| | | | Approved by: eadler (mentor)
* - 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)
* . Remove jbootstrap (was used to bootstrap jdk13, which is long gone).Greg Lewis2012-04-165-50/+0
|
* . 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.
* . 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.
* . 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.
* . Use the new java-zoneinfo port to provide updated time zone info.Greg Lewis2012-04-141-0/+15
|
* . Use the new java-zoneinfo port to provide updated time zone info.Greg Lewis2012-04-131-3/+14
|
* . 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.
* - Add desktop entryPietro Cerutti2012-04-121-0/+7
| | | | | PR: 166785 Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de>