aboutsummaryrefslogtreecommitdiff
path: root/java
Commit message (Collapse)AuthorAgeFilesLines
* UnBROKEN by fixing pkg-plist.Norikatsu Shigemura2005-05-292-2/+2
| | | | | | | | PR: ports/81577 Submitted by: Vasil Dimov <vd@datamax.bg> Notes: svn path=/head/; revision=136366
* o Update to 3.1M7. [1]Norikatsu Shigemura2005-05-2920-261/+181
| | | | | | | | | | | | o Add LATEST_LINK. [2] PR: ports/81076 [1] Submitted by: Alex Varju <freebsd-ports@varju.ca> [1] Pointed out by: krisbot via kris [2] Tested by: java@ [1] Notes: svn path=/head/; revision=136365
* Update to 1.1.5, which includes a port to amd64. (Ports to alpha, powerpc,Eric Anholt2005-05-285-99/+44
| | | | | | | | | | | | | | | | | sparc64 should be quick, but I haven't been able to scare up the resources on the cluster machines). Also, remove the compile-time options such as different AWTs, which are intended by the developers for use in embedded systems, not general users. Also, move maintainership to myself, since I'm working on kaffe too frequently. Thanks Mark for your work on this port! PR: ports/80641 Submitted by: anholt Approved by: maintainer Notes: svn path=/head/; revision=136353
* . Update to 0.47.Greg Lewis2005-05-253-18/+3
| | | | | | | | PR: 81451 Submitted by: "Ronald Klop" <ronald@cs.vu.nl> (maintainer) Notes: svn path=/head/; revision=136087
* Add 'devel' categoryHerve Quiroz2005-05-232-2/+2
| | | | | | | | Reported by: portlint Approved by: maintainer Notes: svn path=/head/; revision=135965
* - Install commons-logging-api.jarHerve Quiroz2005-05-231-5/+6
| | | | | | | | | - Add 'devel' category to calm portlint Submitted by: thierry Notes: svn path=/head/; revision=135963
* Update to 4.0.2Herve Quiroz2005-05-186-30/+30
| | | | | | | | PR: 81173 Submitted by: maintainer Notes: svn path=/head/; revision=135569
* . This port is working well enough for me under 5.4 that I can runGreg Lewis2005-05-172-4/+8
| | | | | | | | | | | graphical applications with it, so restrict the IGNORE setting regarding bad system calls to earlier versions of FreeBSD. One suspects that the actual change to fix things happened sometime earlier in 5.x, but until we figure out exactly what change enabled it or have empirical evidence regarding this 5.4 is a good cutoff. Notes: svn path=/head/; revision=135521
* Unbreak: plist fix, do not remove common Java class dir.Anders Nordby2005-05-174-6/+0
| | | | Notes: svn path=/head/; revision=135496
* Update to version 1.4.5.Archie Cobbs2005-05-172-3/+3
| | | | Notes: svn path=/head/; revision=135471
* - Use find and installSam Lawrance2005-05-171-6/+24
| | | | | | | | | | | | - Unpack jar files before installing (bump PORTREVISION for this) PR: ports/77068 Submitted by: Gerrit Beine <tux@pinguru.net> (maintainer) Phil Schulz <ph.schulz@gmx.de> Approved by: clement (mentor) Notes: svn path=/head/; revision=135455
* Fix DOWNLOAD_URL.Jimmy Olgeni2005-05-175-5/+5
| | | | | | | Submitted by: Ralf Folkerts <ralf.folkerts(at)gmx.de> Notes: svn path=/head/; revision=135451
* - Allow installation on amd64Herve Quiroz2005-05-162-5/+8
| | | | | | | | | | | | - Use PLIST_FILES - Add 'devel' category [1] PR: 81086 Submitted by: Alex Varju <freebsd-ports@varju.ca> Reported by: portlint [1] Notes: svn path=/head/; revision=135402
* Upgrade to version 4.1 (plus JDK home fix from ports/76670)Jimmy Olgeni2005-05-1620-4790/+5570
| | | | | | | | PR: ports/76670 Submitted by: Miguel Mendez <flynn(at)energyhq.es.eu.org> Notes: svn path=/head/; revision=135393
* Upgrade to 0.15.Archie Cobbs2005-05-162-3/+3
| | | | Notes: svn path=/head/; revision=135366
* Castor is a data binding framework for Java. It's the shortest pathHerve Quiroz2005-05-144-0/+45
| | | | | | | | | | | | | between Java objects, XML documents, and relational tables. Castor provides Java-to-XML binding, Java-to-SQL persistence, and more. WWW: http://www.castor.org/ PR: 80942 Submitted by: Adam VanderHook <acidos@bandwidth-junkies.net> Notes: svn path=/head/; revision=135248
* . Ensure that when files are extracted that their fully resolved path liesGreg Lewis2005-05-126-2/+144
| | | | | | | | | | | | | | | in or below the current working directory. Fixes a security problem with jar(1). This fix may change to be compatible with whatever fix Sun applies when they release the next version of 1.5. . Bump PORTREVISION for this fix. Security: http://vuxml.FreeBSD.org/18e5428f-ae7c-11d9-837d-000e0c2e438a.html Reviewed by: maintainer timeout Notes: svn path=/head/; revision=135102
* . Fix various problems with time zone handling including:Greg Lewis2005-05-122-0/+200
| | | | | | | | | | | . /etc/localtime is a symlink. . /etc/localtime contains a time zone not recognised by the JDK. Submitted by: Kurt Miller <truk@optonline.net> Reviewed by: maintainer timeout Notes: svn path=/head/; revision=135101
* . Using dladdr(3) to determine the path to the current executable, andGreg Lewis2005-05-122-0/+124
| | | | | | | | | | | | | | | | | | | hence the path for the shared libraries doesn't always work on FreeBSD. It definitely fails on FreeBSD 4.11 and FreeBSD 6-CURRENT under the tested environments. In fact, the dladdr(3) man page even warns of these problems. While there is work under way to fix this, it isn't available yet. Given that situation, switch to trying /proc/curproc/file, which is similar to what Linux does, and if that fails, drop back to checking argv[0] and iterating through $PATH as in jdk 1.4. Both these methods work correctly in testing. Reported by: das Reviewed by: maintainer timeout Notes: svn path=/head/; revision=135100
* . Ensure that when files are extracted that their fully resolved path liesGreg Lewis2005-05-113-0/+72
| | | | | | | | | | | | | | | in or below the current working directory. Fixes a security problem with jar(1). This fix may change to be compatible with whatever fix Sun applies when they release a fixed version of 1.5. . Bump PORTREVISION for this fix. Approved by: maintainer timeout Security: http://vuxml.FreeBSD.org/18e5428f-ae7c-11d9-837d-000e0c2e438a.html Notes: svn path=/head/; revision=135087
* Update to version 1.4.4.Archie Cobbs2005-05-112-5/+4
| | | | Notes: svn path=/head/; revision=135056
* Fix size mismatch. According to the submitter:Thierry Thomas2005-05-083-6/+3
| | | | | | | | | | | | | | | | It looks like IBM released an updated version of the NetRexx 2.05 zip file on Jan 14 2005, which includes modifications to the documentation, NetRexx[RC].jar files and the pinger and tablet zip (sample?) files. I could not find a CHANGELOG file nor the mailing list archives that would have provided info into the exact changes made without a version or revision number bump. PR: ports/80716 Submitted by: Linh Pham <question+fbsdports (at) closedsrc.org> Notes: svn path=/head/; revision=134877
* BROKEN: Incomplete pkg-plistKris Kennaway2005-05-072-0/+4
| | | | Notes: svn path=/head/; revision=134815
* Add eclipse-devel 3.1M6, an open extensible IDE for anything and nothingNorikatsu Shigemura2005-05-0731-0/+1104
| | | | | | | | | | in particular. PR: ports/79917 Submitted by: various members of freebsd-java Notes: svn path=/head/; revision=134751
* . Update to 1.3.2.Greg Lewis2005-05-032-6/+5
| | | | | | | Submitted by: "DAIGU" <daigu@pop02.odn.ne.jp> Notes: svn path=/head/; revision=134566
* . Ensure that when files are extracted that their fully resolved path liesGreg Lewis2005-05-023-1/+72
| | | | | | | | | | | | | | in or below the current working directory. Fixes a security problem with jar(1). This fix may change to be compatible with whatever fix Sun applies when they release the next version of 1.5. . Bump PORTREVISION for this fix. Security: http://vuxml.FreeBSD.org/18e5428f-ae7c-11d9-837d-000e0c2e438a.html Notes: svn path=/head/; revision=134505
* . Update to 1.5.0_03.Greg Lewis2005-04-296-254/+1194
| | | | Notes: svn path=/head/; revision=134363
* . Add $FreeBSD$.Greg Lewis2005-04-282-0/+4
| | | | Notes: svn path=/head/; revision=134332
* . Bump PORTREVISION for the previous fix for jar(1).Greg Lewis2005-04-271-8/+8
| | | | | | | . Don't build the plugin by default as it has security flaws. Notes: svn path=/head/; revision=134276
* . Ensure that when files are extracted that their fully resolved path liesGreg Lewis2005-04-272-0/+67
| | | | | | | | | | | in or below the current working directory. Fixes a security problem with jar(1). This fix may change to be compatible with whatever fix Sun applies when they release the next version of 1.5. Notes: svn path=/head/; revision=134275
* - Update to 3.2 [1]Herve Quiroz2005-04-275-55/+111
| | | | | | | | | | | | | | | | - Sort plist [1] - Update to bsd.java.mk 2.0 - Add two new launcher scripts: 'proguard' and 'proguard-gui' - Use FIND | INSTALL_DATA to install data files - Use %%DATADIR%% - Add $FreeBSD$ tag PR: 79735 [1] Submitted by: Manfred Riem <mriem@manorrock.org> [1] Approved by: maintainer timeout Notes: svn path=/head/; revision=134274
* - Upgrade to version 1.4.3.Archie Cobbs2005-04-253-7/+19
| | | | | | | - Change JAVA_BUILD from "yes" to "jre" Notes: svn path=/head/; revision=134159
* . Update description.Greg Lewis2005-04-251-2/+4
| | | | | | | Suggested by: hq Notes: svn path=/head/; revision=134145
* - Update to version 2005.04.15Herve Quiroz2005-04-192-10/+10
| | | | | | | | | | | - Add 'devel' category [1] PR: 80120 Submitted by: maintainer Reported by: portlint [1] Notes: svn path=/head/; revision=133715
* . Fix various problems with time zone handling including:Greg Lewis2005-04-181-0/+101
| | | | | | | | | | . /etc/localtime is a symlink. . /etc/localtime contains a time zone not recognised by the JDK. Submitted by: Kurt Miller <truk@optonline.net> Notes: svn path=/head/; revision=133601
* . Try to clarify that the BUGS section is talking about the Java VMGreg Lewis2005-04-181-3/+4
| | | | | | | | | | selection procedure used when ${PORTSDIR}/Mk/bsd.java.mk isn't present. . Fix a typo (JAVA_PREFERRED_PORT -> JAVA_PREFERRED_PORTS). Pointed out by: hq Notes: svn path=/head/; revision=133600
* . Update to 1.4.2_08.Greg Lewis2005-04-142-4/+4
| | | | Notes: svn path=/head/; revision=133344
* Upgrade to version 1.4.2.Archie Cobbs2005-04-143-15/+3
| | | | Notes: svn path=/head/; revision=133331
* . A big mdoc fixup kindly provided by the mdoc police. Any problems shouldGreg Lewis2005-04-124-33/+72
| | | | | | | | | | be attributed to my merging of the mdoc fixes with some content changes I had made. Submitted by: simon Notes: svn path=/head/; revision=133176
* . Yet more clarification of how the selection of the Java VM can beGreg Lewis2005-04-121-1/+4
| | | | | | | different depending on whether bsd.java.mk exists on the system. Notes: svn path=/head/; revision=133159
* . Fix some sentence breaks.Greg Lewis2005-04-122-6/+29
| | | | | | | | | . Add some more details on how javavmwrapper selects the VM. [2] Suggested by: hq [2] Notes: svn path=/head/; revision=133155
* . Document that the environment variables can also be a space delimitedGreg Lewis2005-04-121-9/+13
| | | | | | | | | list of values, not just a single value. Pointed out by: hq Notes: svn path=/head/; revision=133152
* . Install manual pages for javavmwrapper.Greg Lewis2005-04-115-1/+318
| | | | | | | | | . Bump PORTREVISION. PR: 27075 Notes: svn path=/head/; revision=133092
* . Ignore errors from the call to registervm, otherwise one sees a wholeGreg Lewis2005-04-111-2/+2
| | | | | | | slew of spurious errors when upgrading the port. Notes: svn path=/head/; revision=133091
* . Separate standard variables from variables local to this Makefile.Greg Lewis2005-04-111-1/+2
| | | | Notes: svn path=/head/; revision=133085
* BROKEN: Size mismatchKris Kennaway2005-04-101-0/+2
| | | | Notes: svn path=/head/; revision=132969
* . When linprocfs is not mounted the Linux JDK will output a warning message,Greg Lewis2005-04-082-0/+34
| | | | | | | | | | | | | | | unfortunately sending it to stdout. When using such a JDK to bootstrap this line ends up at the head of generated classes, leaving them uncompilable. Add a filter to the class generation to strip out such lines with egrep. A similar patch is present in the jdk14 port and prevents a semi-common class of error reports. Approved by: phantom (maintainer) Notes: svn path=/head/; revision=132777
* . Bump PORTREVISION, forgotten when doing the fixes prior to the portsGreg Lewis2005-04-082-6/+8
| | | | | | | | | | freeze. . Fix a typo and improve some grammar in some user output. Approved by: phantom (maintainer) Notes: svn path=/head/; revision=132768
* . Fix the build on FreeBSD 4.x by using <inttypes.h> rather than <stdint.h>Greg Lewis2005-04-076-0/+92
| | | | | | | | | (which FreeBSD 4.x lacks). Approved by: phantom (maintainer) Notes: svn path=/head/; revision=132721
* - Update to 2.05 [1]Herve Quiroz2005-04-055-31/+52
| | | | | | | | | | | | | | | - Since NetRexxC.cmd and NetRexxC.sh do same thing, only install .sh version and remove dependency on rexx-imc (and remove the patch for NetRexxC.cmd) [1] - Add a patch for NetRexxC.sh so the user is able to override JAVA_HOME at runtime [1] - Use FIND | {MKDIR,INSTALL_DATA} to install documentation - Add $FreeBSD$ tag in pkg-plist PR: 79564 [1] Submitted by: Sam Lawrance <boris@brooknet.com.au> [1] Notes: svn path=/head/; revision=132599