Commit graph

1479 commits

Author SHA1 Message Date
Volker Stolz
bb902e96d2 - Unbreak: Add missing build-dependency on archivers/zip
- Fix compilation on 4.x
2004-10-25 13:56:34 +00:00
Herve Quiroz
5d95110b7e Use my FreeBSD address in MAINTAINER 2004-10-23 01:56:23 +00:00
Brian Feldman
52602010f0 The BSD patchset for the Sun JDK modeled its thread behavior mostly after
existing the Solaris base, and similarly to what happened with NSPR, made
a bad assumption on undefined behavior.  This broke locking in various
places in Java, for example, causing the the debugging support to be
totally broken.  It is worth someone who knows the Java codebase taking
a look to see what other things could have been broken by this on
FreeBSD 5.x+.

The assumption is that pthread_mutex_trylock(3) on a default-type
mutex will fail with EBUSY.  This assumption is wrong for our
libpthread, which returns EDEADLK if the owner thread is trying to
acquire the mutex again with trylock.  The behavior of performing a
locking operation on a self-locked default-type mutex is explicitly
undefined for pthread_mutex_lock(3).

The POSIX specification is still not very clear.  It defines
pthread_mutex_trylock(3) in terms of pthread_mutex_lock(3) yet
does not say what the defined behavior should be for a self-locked
pthread_mutex_trylock(3) for any of the various mutex types, so it is
ambiguous whether the result is clearly undefined or clearly to return
EBUSY.

It is a one line change whether or not to make libpthread return
EDEADLK in this case, where it seems that most implementations do not.

Reference:	http://www.opengroup.org/onlinepubs/009695399/functions/pthread_mutex_lock.html
2004-10-20 23:22:56 +00:00
Herve Quiroz
9c152ae646 - Upgrade to 1.0.10
- bsd.java.mk 2.0 compliant
- added 'devel' category
- Build from source
- Install documentation

Approved by:	glewis (mentor)
2004-10-20 12:03:41 +00:00
Herve Quiroz
1701946e54 - Update to 1.0 Final (bumped PORTEPOCH in this extend)
- re-enable jikes support
- Dynamic pkg-plist
- Use JAVALIBDIR

Approved by:	glewis (mentor)
2004-10-20 11:56:32 +00:00
Thierry Thomas
12adf818e2 Upgrade to 1.2.4.
PR:		ports/71728
Submitted by:	maintainer.
2004-10-19 22:26:07 +00:00
Alex Dupre
7952dcb847 Add langspec 2.0, the Java Language Specification. 2004-10-18 21:57:27 +00:00
Alex Dupre
95a6bb8fb7 Add jakarta-commons-httpclient 2.0.2, a package implementing the client
side of the HTTP standard.
2004-10-17 13:32:16 +00:00
Greg Lewis
c8e6445d77 . Bump PORTREVISION for the recent fixes. 2004-10-16 17:17:09 +00:00
Greg Lewis
7298661664 . Fix the Server VM for gcc 3.4 part 2/2.
The HotSpot code (ab)uses named enums as ints in a number of places.
  The problem with this is that according the the C++ spec, the compiler
  (essentially) only needs to use an integral type wide enough to hold
  the values defined in the enum.  Earlier versions of gcc appear to have
  just used an int whether they could have got away with a narrower type
  or not, hence the code worked as expected.  gcc 3.4 now appears to
  implement this part of the spec, so using an enum blindly as an int
  causes various problems due to overflow.

  In this case the enum, Bytecodes::Code, appears to be a genuine enum,
  its just assumed to be wide enough to hold an arbitrary int in various
  places in the code.  The correct fix would be to track down all those
  places in the code and fix them.  Since there are quite a lot of these
  places and 5.3 is close to release for now we just add a value to the
  enum set to INT_MAX, forcing the compiler to use at least an int for the
  type.

Sleuth work, discussion and code suggestions:	peadar
2004-10-16 17:16:40 +00:00
Greg Lewis
67fad41225 . Fix the Server VM for gcc 3.4 part 1/2.
The HotSpot code (ab)uses named enums as ints in a number of places.
  The problem with this is that according the the C++ spec, the compiler
  (essentially) only needs to use an integral type wide enough to hold
  the values defined in the enum.  Earlier versions of gcc appear to have
  just used an int whether they could have got away with a narrower type
  or not, hence the code worked as expected.  gcc 3.4 now appears to
  implement this part of the spec, so using an enum blindly as an int
  causes various problems due to overflow.

  This case is particularly bogus since the enums are merely to define
  a named integral type within a class (VMReg::Name doesn't even have
  any values enumerated in the declaration).  So, convert these two
  enums to simply be typedef'ed ints.

Sleuth work, discussion and code suggestions:	peadar
2004-10-16 17:12:22 +00:00
Greg Lewis
e3262fa4db . In the ReadChunk() function, change an assert() to be a "test for a
condition and return NULL".  Take account of the NULL in the
  appropriate place (which is somewhat worrisome in itself since
  ReadChunk() has always had the possibility of returning NULL).
  This makes loading a font file a little more resilient to specially
  crafted font data which can be used, for example, by an applet to
  crash the browser plugin by triggering the assert().  Such an applet
  was mentioned on Bugtraq:

  http://www.securityfocus.com/archive/1/367331/2004-06-26/2004-07-02/0

  and can be found at

  http://www.illegalaccess.org/cms/?q=node/view/9

  This change stops the browser plugin from crashing.
. Fix some warnings regarding formats in debugging printf's.
2004-10-16 17:00:27 +00:00
Greg Lewis
4e95ec3207 . At least on FreeBSD, O_SYNC and O_DSYNC aren't both defined
(for FreeBSD 4.x neither are defined and for FreeBSD 5.x
  O_DSYNC isn't defined).  This caused them to be defined to
  some bogus values.  In particular, O_SYNC would be defined
  as 0x800, which is O_EXCL (at least on FreeBSD 4.x).  The
  result being that the RandomAccessFile class would fail to
  open an existing file if you specified "s" as part of the mode.
  Fix this by defining O_SYNC and O_DSYNC to O_FSYNC if they
  aren't defined.
2004-10-16 16:58:12 +00:00
Dag-Erling Smørgrav
e3d20871bf I haven't used this in ages, and have no interest in maintaining it any
more.  Assign to java@FreeBSD.org.
2004-10-15 18:20:43 +00:00
Greg Lewis
0dd7a4ebd4 . Update to 1.5.0 release. 2004-10-14 22:24:49 +00:00
Jimmy Olgeni
cc8bb79250 Remove extra file from pkg-plist. 2004-10-12 08:58:15 +00:00
Kris Kennaway
0dfdc0a8ba Change BROKEN to IGNORE since the package builds but does not run
Approved by:	portmgr (self)
2004-09-29 04:37:50 +00:00
Herve Quiroz
ff987ccdc8 - Unbreak port (fixed distfile URL)
Reported by:	pointyhat
Approved by:	portmgr (marcus), glewis (mentor)
2004-09-20 17:47:06 +00:00
Kris Kennaway
7a6f05bb7a BROKEN on 5.x: Does not compile
Approved by:    portmgr (self)
2004-09-18 18:47:46 +00:00
Kris Kennaway
7583312a85 BROKEN: Unfetchable
Approved by:	portmgr (self)
2004-09-18 18:14:38 +00:00
Kris Kennaway
e94164afd4 BROKEN: Size mismatch
Approved by:	portmgr (self)
2004-09-18 18:13:49 +00:00
Kris Kennaway
c247e4be09 BROKEN on 5.x: Configure fails
Approved by:	portmgr (self)
2004-09-18 07:52:32 +00:00
Mark Linimon
3b6e943450 Clarify the legal status of java/eclipse-clay-core: you must read and
agree to the company's license requirement before downloading (although
the agreement mostly pertains to their software available for purchase).

PR:		ports/71510
Submitted by:	mitsuru at riken dot jp (maintainer)
Approved by:	portmgr (implicit)
2004-09-10 02:25:07 +00:00
Herve Quiroz
527ec1c785 Fix DOWNLOAD_URL.
Reported by:	Ronald Klop <ronald-freebsd8@klop.yi.org>
Approved by:	portmgr, glewis (mentor)
2004-09-09 18:38:25 +00:00
Norikatsu Shigemura
1961e8f62a Add eclipse-clay-core 1.0.5, a database design tool
for the Eclipse development environment.

PR:		ports-jp/14991
Submitted by:	Mitsuru Yoshida <mitsuru@riken.jp>
2004-09-03 21:12:04 +00:00
Norikatsu Shigemura
c44aa1025f Add eclipse-log4e 0.7.6, eclipse plugin to use logger easily
in Java projects.

PR:		java/71148
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-09-03 21:06:27 +00:00
Norikatsu Shigemura
ca0b6f741c Add eclipse-sqlexplorer 2.2.2, a visual database query
tool for Eclipse.

PR:		ports/70441
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-09-03 21:01:46 +00:00
Norikatsu Shigemura
21661e9634 Add eclipse-checkstyle 3.4.1.0, integrates the Checkstyle Java
code auditor into Eclipse.

PR:		ports/70146
Submitted by:	Jeremy Faulkner <gldisater@gldis.ca>
2004-09-03 20:54:27 +00:00
Norikatsu Shigemura
587a6943ba Add eclipse-quantum 2.4.1, database access and SQL editor
for the Eclipse IDE.

PR:		ports/70145
Submitted by:	Jeremy Faulkner <gldisater@gldis.ca>
2004-09-03 20:49:39 +00:00
Norikatsu Shigemura
67b40246dd Upgrade eclipse pmd plugin to support eclipse3.
PR:		java/71078
Submitted by:	Bruno Van Den Bossche <brvdboss@spymac.com>
2004-09-03 20:29:33 +00:00
Greg Lewis
6a5d768670 . JAVALIBDIR is more appropriate than JAVAJARDIR now we have it. 2004-09-03 16:23:01 +00:00
Herve Quiroz
d8c41246f7 - Fixed DISTNAME [1]
- Use LOCALBASE rather than PREFIX in RUN_DEPENDS
- Now bsd.java.mk 2.0 compliant
- Use CPIO rather than CP
- Use JAVAJARDIR and JAVASHAREDIR
- Removed pkg-plist (use dynamic plist and PORTDOCS)
- Honor NOPORTDOCS
- Honor hier(7): documentation in DOCSDIR and examples in EXAMPLESDIR [2]
- Honor "best practices for a Java library" from Porter's handbook, Java
  section: JARs in JAVAJARDIR. [2]
- SIZEify
- Added 'mail' category

PR:		71235 [1]
Submitted by:	Rainer Duffner <rainer@ultra-secure.de> [1]
Reviewed by:	glewis [2]
Approved by:	glewis (mentor)
2004-09-03 03:34:29 +00:00
Herve Quiroz
980a124186 - Fixed DISTNAME [1]
- Now bsd.java.mk 2.0 compliant
- Use CPIO rather than CP
- Use JAVAJARDIR and JAVASHAREDIR
- Removed pkg-plist (use dynamic plist and PORTDOCS)
- Honor NOPORTDOCS
- Honor hier(7): documentation in DOCSDIR and examples in EXAMPLESDIR
- Honor "best practices for a Java library" from Porter's handbook, Java
  section: JARs in JAVAJARDIR.
- Added 'devel' category
- SIZEify

Pointed out by:	Rainer Duffner <rainer@ultra-secure.de> [1]
Approved by:	glewis (mentor)
2004-09-03 03:29:23 +00:00
Greg Lewis
0d00dd7aa0 . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with it (as comments should be optional).
2004-09-02 02:58:38 +00:00
Greg Lewis
df960250af . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 21:53:56 +00:00
Greg Lewis
439bd1fde1 . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 21:43:57 +00:00
Greg Lewis
57b1fa568c . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 21:12:40 +00:00
Greg Lewis
cc59f5091e . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 20:54:42 +00:00
Greg Lewis
3586286fad . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Make the comment for the registervm call consistent with the conventional
  naming scheme and the one in Makefile.
. Add missing creation and deletion of %%PREFIX%%/share/doc/java for
  consistency with other JDK pkg-plists.
2004-09-01 19:55:48 +00:00
Greg Lewis
71a7d9476c . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Make the comment for the registervm call consistent with the conventional
  naming scheme and the one in Makefile.
. Add missing creation and deletion of %%PREFIX%%/share/doc/java for
  consistency with other JDK pkg-plists.
2004-09-01 19:36:11 +00:00
Greg Lewis
f276d55875 . Update to 1.4.2 GA.
. Make DISTNAME and COMMENT version change resistant.
. Prefix the comment passed to registervm with "Linux-" for consistency.
2004-09-01 19:13:43 +00:00
Greg Lewis
a6bed5ffd4 . Consistently prefix the comment in the call to registervm with "Linux-"
for Linux JDKs.
2004-09-01 18:06:07 +00:00
Greg Lewis
88c6789dea . Add missing creation and deletion of %%PREFIX%%/share/doc/java for
consistency with other JDK pkg-plists.
. Add a comment to the registervm call (also for consistency)
2004-09-01 18:01:42 +00:00
Greg Lewis
e3a7fa19f0 . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 16:43:48 +00:00
Greg Lewis
1dbf94cf0a . Add missing calls to registervm and unregistervm.
. Add missing creation and deletion of %%PREFIX%%/share/doc/java for
  consistency with other JDK pkg-plists.
2004-09-01 16:13:36 +00:00
Greg Lewis
4e84198dd0 . Add a missing call to registervm.
. Add missing creation and deletion of %%PREFIX%%/share/doc/java for
  consistency with other JDK pkg-plists.
2004-09-01 16:08:32 +00:00
Herve Quiroz
85d17abf1b Fix permissions issue caused by last commit.
Approved by:	glewis (mentor)
2004-09-01 15:38:42 +00:00
Herve Quiroz
672d6a7f88 - Now bsd.java.mk 2.0 compliant
- Cosmetic changes: removed some unnecessary variable
- Use CPIO rather than MKDIR/INSTALL_DATA
- Added 'textproc' category
- Use my FreeBSD address for maintainership purposes
- Removed my name from pkg-descr

Approved by:	glewis (mentor)
2004-09-01 13:41:33 +00:00
Herve Quiroz
e8e5afebd0 - Fixed MASTER_SITE_SUBDIR (binary and source releases are the same so this is
not really a fix)
- Now bsd.java.mk 2.0 compliant
- Cosmetic changes: ECHO_CMD -> ECHO_MSG and removed unnecessary variables
- Use CPIO rather than MKDIR/INSTALL_MAN/INSTALL_DATA
- Removed JAR file for pkg-plist
- Added 'devel' category
- Removed unnecessary 'post-install' target
- Updated homepage in pkg-descr
- Use my FreeBSD address for maintainership purposes

Approved by:	glewis (mentor)
2004-09-01 13:40:11 +00:00
Herve Quiroz
69160e4533 - Use MASTER_SITE_APACHE
- Now bsd.java.mk 2.0 compliant
- Cosmetic changes: ECHO_CMD -> ECHO_MSG and removed unnecessary variables
- Use CPIO rather than MKDIR/INSTALL_MAN
- Removed pkg-plist
- Added 'devel' category
- Removed unnecessary 'post-install' target
- Use my FreeBSD address for maintainership purposes

Approved by:	glewis (mentor)
2004-09-01 13:36:46 +00:00
Herve Quiroz
fd31d56c39 - Build from source
- Use USE_ANT
- Now bsd.java.mk 2.0 compliant
- Cosmetic changes: ECHO_CMD -> ECHO_MSG and removed unnecessary variables
- Use CPIO rather than MKDIR/INSTALL_MAN
- Removed pkg-plist
- Install LICENSE.txt
- SIZEify (!)
- Use my FreeBSD address for maintainership purposes
- Removed my name from pkg-descr

Approved by:	glewis (mentor)
2004-09-01 13:32:57 +00:00
Ying-Chieh Liao
4141ec7ce4 add classpath 0.10
A GNU project to create free core class libraries
2004-09-01 08:37:04 +00:00
Greg Lewis
7050420087 . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 05:52:27 +00:00
Greg Lewis
f68c92c00e . Teach the packing list that we don't care if we can't remove
%D/share/doc/java.
. Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 02:47:05 +00:00
Greg Lewis
764d167d8d . Clean up all the .orig files from patching and do it in post-patch rather
than do-install.  This fixes the packing list.
2004-09-01 02:46:00 +00:00
Greg Lewis
5fca0b0461 . Assume (un)registervm is in LOCALBASE _not_ PREFIX.
. Call unregistervm with the VM we registered, not the comment associated
  with (as comments should be optional).
2004-09-01 02:37:34 +00:00
Greg Lewis
c00804a6d7 . Fix the plugin build for gcc 3.4.
Submitted by:	Timo Geusch <freebsd@unixconsult.co.uk>
2004-08-31 19:52:25 +00:00
Greg Lewis
cde658701e . Assume (un)registervm is in LOCALBASE _not_ PREFIX. 2004-08-31 19:43:09 +00:00
Greg Lewis
274f5bb820 . Don't let find(1) descend into directories that may have already been
deleted.

PR:		71019
Submitted by:	Rainer Goellner <rainer@jabbe.de>
2004-08-31 19:41:41 +00:00
Ying-Chieh Liao
b74cf9717f add jcckit 1.0
Java Chart Construction Kit
2004-08-30 06:03:12 +00:00
Jimmy Olgeni
885c387de4 Fix typo. 2004-08-28 18:02:13 +00:00
Mark Linimon
7fc6db0a49 Update to 1.0M2.
PR:		ports/70053
Submitted by:	SUGIMURA Takashi <sugimura at jp dot FreeBSD dot org>
Approved by:	maintainer
2004-08-28 02:05:02 +00:00
Mark Linimon
9d2f43e294 Update to 1.0M2. While here, parameterize common parts of plist.
PR:		ports/70056
Submitted by:	SUGIMURA Takashi <sugimura at jp dot FreeBSD dot org>
Approved by:	maintainer
2004-08-28 02:00:14 +00:00
Mark Linimon
7e5b842f27 Update to 1.0M2. While here, parameterize plist.
PR:		ports/70057
Submitted by:	SUGIMURA Takashi <sugimura at jp dot FreeBSD dot org>
2004-08-28 01:26:38 +00:00
Volker Stolz
8aa4d05da5 - Update to 0.43
- Fix packaging

PR:		ports/70597
Submitted by:	Ronald Klop (maintainer)
2004-08-27 12:06:50 +00:00
Norikatsu Shigemura
be1e76ad6c Fix typo.
Pointy hat to:	myself
2004-08-22 09:08:22 +00:00
Mark Linimon
a39f5ffcf4 Update to 2.5.0.
By the way, in the future, you can put the Class as 'maintainer-update'.

PR:		ports/70796
Submitted by:	Gerrit Beine <tux at pinguru dot net> (maintainer)
2004-08-22 05:59:04 +00:00
Norikatsu Shigemura
2b0a84df37 Add eclipse-cdt 2.0, c/C++ IDE for Eclipse.
PR:		ports/69830
Submitted by:	Jeremy Faulkner <gldisater@gldis.ca>
Reviewed by:	hq
2004-08-21 23:11:06 +00:00
Greg Lewis
e8fea2e4e7 . The changes to make in -CURRENT to use MAKEFLAGS make us unable to
override the MAKEFLAGS ARCH value in the main HotSpot Makefile.  Fix
  this by passing in a blank MAKEFLAGS up front so there is nothing to
  (try to) override.

Submitted by:	truckman
Requested by:	kris
2004-08-18 07:06:03 +00:00
Kris Kennaway
c9330389ab Change BROKEN to IGNORE since the package builds but is apparently not
useful.
2004-08-17 10:25:48 +00:00
Herve Quiroz
1187b1ee26 - Update to 1.0b10
- Use USE_ANT
- Set USE_JIKES=no to forbid the use of Jikes to build the port
- Use %%JAVAJARDIR%%
- Use ${INSTALL_DATA} and ${CPIO} rather than ${CP} [1]
- Use ${ECHO_MSG} rather than ${ECHO}
- Add 'textproc' category
- Fix LOCALBASE/PREFIX issue with JAVAJARDIR [1]

PR:		68511
Submitted by:	me
Reviewed by:	glewis [1]
Approved by:	znerd (maintainer), glewis (mentor)
2004-08-16 12:30:48 +00:00
Herve Quiroz
68bcd073c1 - Update to 3.1
- Use USE_ANT
- Use %%JAVAJARDIR%%
- Use ${INSTALL_DATA} and ${CPIO} rather than ${CP} [1]
- ECHO_CMD -> ECHO_MSG
- Fix homepage in pkg-descr (and arrange the text a little)
- Add 'devel' category

PR:		70213
Submitted by:	me
Reviewed by:	glewis [1]
Approved by:	glewis (mentor), znerd (maintainer)
2004-08-14 16:09:15 +00:00
Greg Lewis
e551896df5 . Fix the build for gcc 3.4.
PR:		69853
Submitted by:	Jake Hamby <jhamby@anobject.com>
Approved by:	phantom (maintainer)
2004-08-12 21:54:01 +00:00
Volker Stolz
c059d83ae5 - Use bsd.java.mk-2.0 (reminded by hq@)
- Use PKGNAMESUFFIX
- Twiddle PLIST_FILES/pkg-plist to hopefully ease merging
2004-08-11 14:56:52 +00:00
Greg Lewis
16df5ea99e . Fix the main build for gcc 3.4. The HotSpot build may need some
additional patches.

  This patch is taken almost verbatim from PR 69853 which was
  submitted by Jake Hamby <jhamby@anobject.com>.  I've applied it to
  jdk13 rather than jdk14 though.
2004-08-10 20:30:30 +00:00
Greg Lewis
453f0beec3 . Set CC, CXX and CPP conditionally so that this port will respect them
if set in the port build.  Note that the HotSpot build will likely
  require additional changes for it to also respect these variables.
2004-08-10 20:28:44 +00:00
Greg Lewis
4d7fe23937 . Call unregistervm with the VM we registered, not the comment associated
with (as comments should be optional).
2004-08-10 20:27:17 +00:00
Norikatsu Shigemura
2438922ede Add eclipse-sysdeo-tomcat 3, sysdeo Tomcat Launcher plugin for Eclipse.
PR:		ports/69642
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-08-07 01:15:40 +00:00
Norikatsu Shigemura
5eeb24afe2 o Fix PORTNAME.
o Update to 3.0.1.

PR:		java/69751
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org> (maintainer)
Pointed out by:	Oliver Lietz <freebsd-java@oliverlietz.de>
2004-08-05 17:05:27 +00:00
Norikatsu Shigemura
d88db12376 o Fix build with KDE WITH_MOTIF. [1]
o Fix build on 4-stable. [2]
o Fix a problem expect using JDK1.4.2. [3]
o Respect CC/CXX. [4]
o Bump PORTREVISION Accordingly.

Reported by:	Jiawei Ye <leafy7382@gmail.com> [2]
		SUGIMURA Takashi <sugimura@jp.FreeBSD.org> [3]
		Jan-Peter Koopmann <Jan-Peter.Koopmann@seceidos.de> [4]
Submitted by:	Jeremy Faulkner <gldisater@gldis.ca> [1] [3]
		Fernan Aguero <fernan@iib.unsam.edu.ar> [2]
Reviewed by:	Panagiotis Astithas <past@ebs.gr> [1] [3] [4]
Pointy hat to:	myself [2]
2004-07-28 17:56:31 +00:00
Archie Cobbs
485354b0cc Use ${MASTER_SITE_GNU}. 2004-07-28 02:09:05 +00:00
Archie Cobbs
faa763a546 Add build fix for FreeBSD 4.x. 2004-07-27 00:10:49 +00:00
Archie Cobbs
77f152a835 Add port dependency on GTK stuff and configure classpath to include it. 2004-07-26 21:37:39 +00:00
Archie Cobbs
b0899ecbf5 Update to 1.1.6. 2004-07-26 21:18:24 +00:00
Archie Cobbs
3dc6d47ba5 Update to version 1.2.2. 2004-07-26 14:28:11 +00:00
Greg Lewis
28579f758e . Update to 1.2 [1]
. Don't define local copies of JAVASHAREDIR and JAVAJARDIR.
. Use %%JAVAJARDIR%% in the packing list now that bsd.java.mk supports it.

PR:		69525 [1]
Submitted by:	Anton Yudin <toha@toha.org.ua> (maintainer) [1]
2004-07-26 05:37:19 +00:00
Greg Lewis
38e5d3bacd . Update to 1.2.1 [1]
. Use %%JAVAJARDIR%% in the packing list now that bsd.java.mk supports it.

PR:		69525 [1]
Submitted by:	Anton Yudin <toha@toha.org.ua> (maintainer) [1]
2004-07-26 05:35:16 +00:00
Norikatsu Shigemura
61021d95bf Add eclipseme 0.4.5, a Eclipse J2ME plugin.
PR:		ports/69427
Submitted by:	Panagiotis Astithas <past@ebs.gr>
2004-07-25 08:08:17 +00:00
Norikatsu Shigemura
91522840e3 Add eclipse-lomboz 3, a J2EE developer tool build as a plugin
for the eclipse platform.

PR:		ports/68051
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
Reviewed by:	Panagiotis Astithas <past@ebs.gr>
2004-07-25 08:07:23 +00:00
Norikatsu Shigemura
d3692612e7 Add eclipse-vep-examples 1.0.0.20040628, Visual Editor Project
for the Eclipse IDE (examples).

Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-07-25 08:06:04 +00:00
Norikatsu Shigemura
8fefe01afa eclipse-xsd was absorbed by eclipse-emf. So remove it.
Reported by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-07-25 08:04:47 +00:00
Norikatsu Shigemura
d7d0072e93 Mark BROKEN. 2004-07-25 08:03:08 +00:00
Norikatsu Shigemura
961e0dff3d Mark BROKEN, and change MAINTAINER to java@.
Suggested by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-07-25 08:02:46 +00:00
Norikatsu Shigemura
cf3caa890b Update to 3.0.
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
Approved by:	maintainer timeout (1week)
2004-07-25 08:02:29 +00:00
Norikatsu Shigemura
26efa955de Update to 2.0.0.
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
Approved by:	maintainer timeout (1week)
2004-07-25 08:02:12 +00:00
Norikatsu Shigemura
af20bd4da1 Update to 1.0.0.20040628.
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
Approved by:	maintainer timeout (1week)
2004-07-25 08:01:56 +00:00
Norikatsu Shigemura
d8d6857d6a Mark BROKEN.
Suggested by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-07-25 08:01:43 +00:00
Norikatsu Shigemura
e7fea5b1ba Update to 3.0.
Submitted by:	SUGIMURA Takashi <sugimura@jp.FreeBSD.org>
2004-07-25 08:01:28 +00:00
Norikatsu Shigemura
4085ba54b4 Update to 3.0.
Submitted by:	Panagiotis Astithas <past@netmode.ntua.gr>
		Jeremy Faulkner <gldisater@gldis.ca>
		Torben Jager <Torben.Jaeger@t-online.de>
		Georg-W. Koltermann <gwk@rahn-koltermann.de>
Reviewed by:	java
2004-07-25 08:01:09 +00:00
Greg Lewis
e7cb4c46d4 . Add a port of jomp:
JOMP is a prototype OpenMP implementation for Java.

PR:		69057
Submitted by:	brueffer
2004-07-20 17:41:09 +00:00
Volker Stolz
f2e7d18249 - Install missing file
- Port cosmetics

PR:		ports/69151
Submitted by:	Herve Quiroz (maintainer)
2004-07-16 15:47:39 +00:00
Archie Cobbs
631138154b Update to version 1.2.1 2004-07-13 22:33:10 +00:00
Greg Lewis
e91906cecf . Add another MASTER_SITE.
Requested by:	kris
2004-07-13 20:32:32 +00:00
Greg Lewis
2d84fd6044 . Use %%JAVAJARDIR%% in the packing list now that bsd.java.mk sets it. 2004-07-12 22:21:51 +00:00
Greg Lewis
eabf820d76 . No need to add JAVAJARDIR to PLIST_SUB anymore as bsd.java.mk does it. 2004-07-12 22:18:01 +00:00
Thierry Thomas
1f7d4b3c10 Added support for the Standard Edition and the Professional Edition of
Poseidon for UML to the port.

It is possible to switch the edition using the knobs
POSEIDON_SE=yes for the Standard Edition or
POSEIDON_PE=yes for the Professional Edition.

The download mechanism also changed. The packages will be fetched
automatically from Gentleware's FTP server from now on.

PR:		ports/68929
Submitted by:	maintainer.
2004-07-12 21:07:27 +00:00
Ying-Chieh Liao
cc732345f5 upgrade to 5.0 2004-07-12 00:54:06 +00:00
Greg Lewis
905883fd2f . Use a more up to date browser plugin directory and respect ${X11BASE}
when doing do.
2004-07-09 18:03:44 +00:00
Oliver Eikemeier
ca6033a8a2 xp WWW (for vi users)
Reported by:	Nikolai Dershak <derja@gaz.cv.ua> (on ports@)
2004-07-09 08:48:49 +00:00
Ying-Chieh Liao
4c11817b20 add jgraph 4.0
The Java Graph Diagram Component
2004-07-09 04:04:03 +00:00
Ying-Chieh Liao
5c98e22332 add jgrapht 0.5.3
A Java class provides mathematical graph-theory objects and algorithms
2004-07-09 03:36:01 +00:00
Greg Lewis
4d324d51f4 . Set LATEST_LINK. 2004-07-06 22:07:38 +00:00
Greg Lewis
91a1e9451c . Set LATEST_LINK.
. Fix a typo in IGNORE.
2004-07-06 22:05:34 +00:00
Volker Stolz
0fa61ea67c Unbreak: USE_GCC=2.95
PR:		ports/66878
Submitted by:	Yen-Ming Lee
Approved by:	maintainer timeout
2004-07-06 14:52:45 +00:00
Archie Cobbs
e7f94d7e88 Update to version 1.2. 2004-07-06 13:43:40 +00:00
Archie Cobbs
882cbf45b9 New maintainer. 2004-07-05 21:52:55 +00:00
Kris Kennaway
561a46013b BROKEN on 5.x: does not run (libm is binary incompatible with 4.x) 2004-07-03 03:39:16 +00:00
Greg Lewis
dacf14741c . Update to 1.4.2_05. 2004-07-02 19:57:06 +00:00
Volker Stolz
850fb8b35c Update to 3.2.5
PR:		ports/68508
Submitted by:	maintainer
2004-06-30 15:54:18 +00:00
Greg Lewis
40a9affe64 . Update to 1.3.1 SR7. This update includes the updated certificates, so
there is no need for the extra cacerts file anymore.
2004-06-28 18:43:41 +00:00
Greg Lewis
db2c514e2c . Add an OPTION to compile with high optimisation.
PR:		66965
Submitted by:	Ronald Klop <ronald@cs.vu.nl> (maintainer)
2004-06-25 13:54:29 +00:00
Greg Lewis
2c5c22247c . Use bsd.java.mk 2.0 settings (ensures this port gets a native JDK, which
it needs).
. Use libtool 1.5 rather than 1.3

PR:		66965
Submitted by:	Ronald Klop <ronald@cs.vu.nl> (maintainer)
2004-06-25 04:43:48 +00:00
Greg Lewis
e324002963 . Update to 0.42. [1]
. Don't use jikes with this port (it breaks the build).

PR:		68174 [1]
Submitted by:	Ronald Klop <ronald@cs.vu.nl> (maintainer) [1]
2004-06-25 04:32:08 +00:00
Mark Linimon
920cd7661f Update to 2.4.1 and change maintainer's email address.
PR:		ports/67464
Submitted by:	Gerrit Beine <tux at pinguru dot net> (maintainer)
2004-06-23 04:59:34 +00:00
Greg Lewis
8a803ed816 . Update to 0.9.20. [1]
. Use JAVAJARDIR in the packing list while I'm here.

PR:		68168 [1]
Submitted by:	Sepherosa Ziehau <sepherosa@softhome.net> (maintainer) [1]
2004-06-22 05:23:03 +00:00
Greg Lewis
f671d86f79 . Add to PLIST_SUB, don't set it. Mea culpa. 2004-06-22 05:11:59 +00:00
Greg Lewis
929741a724 . Update to 0.9.5. [1]
. Use JAVAJARDIR in the packing list while I'm here.

PR:		68167 [1]
Submitted by:	Sepherosa Ziehau <sepherosa@softhome.net> (maintainer) [1]
2004-06-22 05:07:08 +00:00
Vanilla I. Shu
0b750913f6 Upgrade to 3.2.4.
PR:		ports/67917
Submitted by:	maintainer
2004-06-21 16:42:59 +00:00
Archie Cobbs
3bf4d0bf36 Use USE_LIBLTDL instead of depending on ltdl:${PORTSDIR}/devel/libltdl15.
Noticed by:	krion
2004-06-17 17:48:24 +00:00
Archie Cobbs
04b14f7d46 Upgrade to version 1.1.5.
Submitted by:	Roman Kennke <roman@ontographics.com>
2004-06-17 15:25:29 +00:00
Greg Lewis
5538f31e01 . Add missing terminating " to registervm arguments.
Submitted by:	bento via kris
2004-06-10 22:57:49 +00:00
Volker Stolz
94344e05ba Add sun-wtk 2.1, Sun J2ME Wireless Toolkit.
PR:		ports/66419
Submitted by:	Panagiotis Astithas <past@noc.ntua.gr>
2004-06-08 08:26:12 +00:00
Jimmy Olgeni
47ca4b0af3 Upgrade java requirement to 1.4+.
PR:		67593
Submitted by:	John Cochran <jdc(at)fiawol.org>
2004-06-05 08:35:16 +00:00
Ade Lovett
1a628ded35 Sync with new bsd.autotools.mk 2004-06-04 17:29:38 +00:00
Mark Linimon
fece26e2ad This should have been committed with the other 05/30/2004 changes.
Pass the pointy hat, please.

PR:             ports/67322
Submitted by:   Sepherosa Ziehau <sepherosa at softhome.org>
2004-06-04 16:15:15 +00:00
Dag-Erling Smørgrav
75a28f1683 Upgrade to 5.1. 2004-06-01 10:39:25 +00:00
Mark Linimon
1d0059865f Add "ant" build dependancy; correct ${PKGINSTALL} usage (picked up by
Andreas Kasparz <andy at interface-business.de>)

PR:		ports/67282
Submitted by:	Jonathan Chen <jonc at chen.org.nz> (maintainer)
2004-05-31 00:15:48 +00:00
Mark Linimon
1229c672c4 Upgrade to 0.9.18. Tweak original port a little according to ports'
CHANGES file.  Assign maintainership.

PR:		ports/67322
Submitted by:	Sepherosa Ziehau <sepherosa at softhome.org>
2004-05-30 03:41:00 +00:00
Mark Linimon
b5236d6bbb Upgrade java/jcommon to 0.9.3. Tweak the original port a little according
to ports' CHANGES file.  Assign maintainership.

PR:		ports/67323
Submitted by:	Sepherosa Ziehau <sepherosa at softhome.net>
2004-05-30 03:38:17 +00:00
Volker Stolz
44e2c83e66 Add jasmin 1.06, java Assembler Interface.
PR:		ports/62708
Submitted by:	Oliver Fischer
Tweaked by:	me
2004-05-28 15:19:03 +00:00
Pav Lucistnik
fcb1548297 - Add missed dependency on java/jakarta-commons-collections
PR:		ports/66982
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Approved by:	maintainer
2004-05-26 10:27:00 +00:00
Kris Kennaway
18710df4cf BROKEN: Configure fails with diablo-jdk13 (default). See
http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2004050402/openjit-1.1.16_1.log
2004-05-23 09:48:53 +00:00
Jimmy Olgeni
1af4a89cec Unbreak: unzip is needed to install this port. 2004-05-22 10:35:20 +00:00
Kris Kennaway
48bf311b1a BROKEN: Broken pkg-plist 2004-05-21 05:31:23 +00:00
Mark Linimon
ccf1a03312 Update to latest bsd.java.mk; remove pkg-plist; pacify portlint (including
its recommendation to use MASTER_SITE_APACHE_JAKARTA -- maintainer, I hope
that's ok.)

PR:		java/66061
Submitted by:	Dave Glowacki <dglo at glowacki.dyndns.org> (maintainer)
2004-05-18 01:37:03 +00:00
Mark Linimon
6b8521edc3 Update to 2.0.8, remove pkg-plist, update to latest bsd.java.mk.
PR:		ports/66060
Submitted by:	Dave Glowacki <dglo at glowacki.dyndns.org> (maintainer)
2004-05-18 01:28:19 +00:00
Mark Linimon
a7942e04b0 Change BROKEN to IGNORE when no configuration option is set. Should
only affect the build cluster.  (The maintainer has agreed that possibly
just picking one of the defaults would be better).

Approved by:	maintainer
2004-05-16 20:57:11 +00:00
Archie Cobbs
a11f4fc4f9 Upgrade to version 1.21. 2004-05-16 19:06:40 +00:00
Mark Linimon
fcc83fd470 Update to 1.4.
PR:		ports/66231
Submitted by:	Conor McDermottroe <ports@mcdermottroe.com> (maintainer)
2004-05-10 18:38:26 +00:00
Dag-Erling Smørgrav
1c39a1eabb shujit should only be used with jdk versions up to and including 1.3. 2004-05-06 20:42:32 +00:00
Tilman Keskinoz
5d7a71e16f Update to 3.4
PR:		66059
Submitted by:	Dave Glowacki <dglo@glowacki.dyndns.org>
2004-05-02 17:13:53 +00:00
Ernst de Haan
2a4bcaef5b - Removed pkg-plist (missed in last commit)
PR:		61357
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-20 19:50:07 +00:00
Ernst de Haan
0a85d28a37 - Fix PORTDOCS [1]
- bsd.java.mk 2.0 compliant
- Removed pkg-plist
- Done some cleanning (PLIST_SUB statement)

PR:		61357
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Reported by:	Oliver Eikemeier <eikemeier@fillmore-labs.com> [1]
2004-04-20 19:48:50 +00:00
Greg Lewis
d97ab57471 . Unbreak the build by setting ANT_INCLUDE_SHARED_JARS. Found during
bsd.java.mk testing on bento.

Done now to get this fixed for 4.10.

PR:		65614
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Hopefully not objected to by:	znerd
2004-04-20 19:38:19 +00:00
Archie Cobbs
1a2575b4ea Update to version 1.20. 2004-04-20 14:24:19 +00:00
Greg Lewis
b97389634f Add a port of jakarta-commons-discovery.
The Discovery Component is about discovering, or finding, implementations for
pluggable interfaces. It provides facilities intantiating classes in general,
and for lifecycle management of singleton (factory) classes.

Fundamentally, Discovery locates classes that implement a given Java interface.
The discovery pattern, though not necessarily this package, is used in many
projects including JAXP (SaxParserFactory and others) and commons-logging
(LogFactory). By extracting this pattern, other projects can (re)use it and
take advantage of improvements to the pattern as Discovery evolves.

Discovery improves over previous implementations by establishing facilities for
working within managed environments. These allow configuration and property
overrides without appealing to the global System properties (which are scoped
across an entire JVM).

PR:		65490
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-18 06:18:19 +00:00
Kirill Ponomarev
1bfc650214 - Fix plist 2004-04-17 15:42:09 +00:00
Greg Lewis
6554e5f610 . Fix packing list. [1]
. Remove bogus BUILD_DEPENDS (BUILD_DEPENDS and NO_BUILD?).

Submitted by:	bento via kris
2004-04-16 19:16:12 +00:00
Greg Lewis
8b76648e17 . Require JDK 1.4 or better (fixes bento build). [1, 2]
. Use MASTER_SITE_APACHE_JAKARTA. [1]
. bsd.java.mk 2.0 compliant. [1]
. Removed pkg-plist using PLIST_FILES. [1]
. Forced ANT to use the selected version of Java.

PR:		65617 [1], 65349 [2]
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
		Anton Yudin <toha@toha.org.ua>
Approved by:	Anton Yudin <toha@toha.org.ua> (maintainer)
2004-04-16 15:26:10 +00:00
Jimmy Olgeni
024cdc752e Upgrade to version 3.6.
Submitted by:	Conrad Sabatier <conrads(at)cox.net>
2004-04-16 13:51:23 +00:00
Ernst de Haan
2059d64391 Add jdk15-doc:
Java Development Kit 1.5 Documentation. Contains release information,
API documentation, guides to new features and tool documentation.

The documentation will be installed in ${PREFIX}/share/doc/jdk1.5/

WWW: http://java.sun.com/j2se/1.5/
2004-04-15 23:46:28 +00:00
Ernst de Haan
1312cea9fc Using PORTDOCS macro. 2004-04-15 23:43:26 +00:00
Ernst de Haan
4ab45882f5 Using PORTDOCS macro. 2004-04-15 23:27:41 +00:00
Ernst de Haan
583ef52daf Slightly improved phrasing of RESTRICTED. 2004-04-15 23:16:48 +00:00
Ernst de Haan
166deda508 - Removed non-existent download site metaverse.nl
- Fixed removal of files after deinstall [1]
- Using PORTDOCS macro

Reported by:	kris [1]
2004-04-15 23:14:26 +00:00
Ernst de Haan
fbda0a0a29 Removed unused DOWNLOAD_URL variable. 2004-04-15 23:10:25 +00:00
Ernst de Haan
6272e9dfa2 Made cp -R silent again, like previously. 2004-04-15 23:05:17 +00:00
Ernst de Haan
b9ee6e75d4 Cleverly determine version-related variable values
based on other variables.
2004-04-15 23:03:16 +00:00
Ernst de Haan
6cbcc623e3 - Removed non-existent download site metaverse.nl.
- Using PORTDOCS macro.
- Fixed issue with files staying being after deinstall [1].

Reported by:	kris [1]
2004-04-15 23:00:48 +00:00
Greg Lewis
fd6758b954 . Update to 1.4.1 SR2.
. SIZEify.
2004-04-15 22:55:14 +00:00
Ernst de Haan
4b17be02e3 Now consistent with other JDK ports. Also added WWW: line. 2004-04-15 22:42:30 +00:00
Ernst de Haan
ac6f62dc4e Removed non-existent master site metaverse.nl. 2004-04-15 22:40:29 +00:00
Ernst de Haan
9ab4692433 Removed non-existent metaverse.nl download site.
Added category: security.
2004-04-15 22:38:09 +00:00
Ernst de Haan
acb14315e0 ABA website seems to have disappeared. 2004-04-15 22:36:53 +00:00
Ernst de Haan
48dbfd72f4 Only using preferred download sites. 2004-04-15 22:32:33 +00:00
Ernst de Haan
4986d67f83 Homepage re-appeared. 2004-04-15 22:31:05 +00:00
Ernst de Haan
357cf67b9f No longer using non-existent metaverse.nl download site. 2004-04-15 22:29:28 +00:00
Ernst de Haan
4932a3ba74 - Update to JUMP 0.5
- Unbroken
- Using PORTDOCS macro
- Removed non-existent metaverse.nl download site
2004-04-15 22:07:40 +00:00
Ernst de Haan
ee5b9a9ffa Removed pkg-plist file. This was missed in the last commit. 2004-04-15 21:57:53 +00:00
Ernst de Haan
cc87d472ad Log:
- Use the PORTDOCS macro to build dynamically pkg-plist (no more
  Javadoc 1.3/1.4 issues hopefully, and pkg-plist is now one line
  long)
- Define the ANT_INCLUDE_SHARED_JARS variable so Ant now correctly
  gets JARs from ${JAVAJARDIR}

PR:		61357
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-15 21:17:26 +00:00
Ernst de Haan
fadcf89898 Log:
- Now using PORTDOCS macro for automated PLIST build (should fix the deinstall
  issue)
- Now using OPTIONS macro for dependency setting:
  - WITH_LOG4J:    Enable Jakarta Log4j log factory (default: on)
  - WITH_LOGKIT:   Enable Avalon LogKit log factory (default: off)
  - WITH_JDK14LOG: Enable JDK 1.4 log factory       (default: off)
- Changed Ant target 'dist' to 'compile' (to produce only JAR when NOPORTDOCS
  is set)
- Now using Ant target 'javadoc' (see above)
- Fixed an issue with shared JARs not in classpath (by setting
  ANT_INCLUDE_SHARED_JARS=YES)
- Now bsd.java.mk 2.0 compliant
- Fixed a bug with ant targets (adding rather than overwriting)
- Use JAVAJARDIR everywhere
- Fixed the ugly '*' in PORTDOCS
- ECHO -> ECHO_CMD
- Fixed indentation (previously 4 spaces)
- Use MASTER_SITE_APACHE_JAKARTA
- Removed the WRKSRC override stuff (it's the default value anyway)

PR:		63928
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-15 20:58:17 +00:00
Ernst de Haan
44aa7ae911 Log:
- Update to version 3.0
- Now using PORTDOCS macro for automated PLIST build (should fix the deinstall
  issue)
- Now using MASTER_SITE_APACHE_JAKARTA
- Now installs various additional docs: e.g. DEVELOPERS-GUIDE.html
- Now using JAVAJARDIR instead of JAVASHAREDIR/classes
- bsd.java.mk 2.0 compliant
- ECHO_CMD instead of ECHO
- Make JAVAJARDIR
- Echo doc files as they are installed
- Removed pkg-plist entirely (use PLIST_FILES)
- Changed the name of the installed JAR (no more version number in it as
  it is the case for other Java libraries)

PR:		64171
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-15 20:53:59 +00:00
Ernst de Haan
66aec4a7b0 Log:
- Now using JAVAJARDIR instead of PREFIX/share/java/classes
- Now using PORTDOCS macro (to reduce pkg-plist size and fix the apidocs
  deinstall issue with some JDKs)
- Now using PLIST_FILES macro (to reduce pkg-plist size)
- No longer installing JARs from 'lib' directory (but rather have them
  declared
  as run dependencies)
- No longer installing junk files (such as perl CVS commiter scripts)
- No longer installing class nor source files
- Now installing samples in EXAMPLESDIR
- Now installing README and such in DOCSDIR
- Will not install docs and samples when NOPORTDOCS is set
- Bumped PORTREVISION

PR:		64703
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-15 20:48:24 +00:00
Ernst de Haan
33bb1dbe0a Fixed LATEST_LINK. It referred to linux-blackdown-jdk13.
PR:		65127
Submitted by:	Kang Liu <liukang@bjpu.edu.cn>
2004-04-15 20:41:01 +00:00
Ernst de Haan
b26b1d3529 Improved description. In fact it related to jakarta-commons-validator.
PR:		65491
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-15 20:38:11 +00:00
Greg Lewis
32b76352de . Fix the port to work with both JDK 1.3 and JDK 1.4 by using the
PORTDOCS macro.  Also trims the pkg-plist considerably.

Hopefully not objected to by:	znerd
2004-04-15 16:26:43 +00:00
Greg Lewis
6735630176 . This port actually requires JDK 1.4 to build, JDK 1.3 won't cut it.
Maintainer informed.
2004-04-15 16:21:25 +00:00
Kris Kennaway
430ae1fcbd BROKEN: Checksum mismatch 2004-04-12 00:48:24 +00:00
Mark Linimon
035666ecaa Add SIZE info. Reminded by: kris. 2004-04-11 05:03:51 +00:00
Trevor Johnson
c0669efed5 Tidy up whitespace. 2004-04-10 17:26:55 +00:00
Trevor Johnson
f844f89eae Cram into 80 columns by 24 rows. 2004-04-10 17:11:02 +00:00
Thierry Thomas
a9d787e4d7 The submitter accepted to become the maintainer.
Thanks!

PR:		ports/65303
Approved by:	pav (mentor).
2004-04-09 21:48:02 +00:00
Greg Lewis
73afac411e . Update to 1.1b3
. Use PLIST_FILES and get rid of pkg-plist.
. Switch MASTER_SITES to MASTER_SITE_SOURCEFORGE_EXTENDED
. Cleaned up the Makefile.

PR:		65298
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr> (maintainer)
2004-04-09 17:56:05 +00:00
Thierry Thomas
c3ef36353e Add poseidon 2.2.1, a popular UML CASE tool.
PR:		65303
Submitted by:	gerrit@beine-computer.de
Approved by:	pav (mentor).
2004-04-09 17:43:25 +00:00
Ying-Chieh Liao
41fb7ad5de add jcalendar 1.1.4
Java Date Chooser
2004-04-07 08:37:29 +00:00
Norikatsu Shigemura
13dc50ac46 Fix build error by GNOME2.6. This is a temporary fix. 2004-04-06 16:50:30 +00:00
Greg Lewis
7e664ebc65 . Use new bsd.java.mk features [1]
. Respect NOPORTDOCS [1]
. Install documentation in DOCSDIR [1]
. Use PORTDOCS and PLIST_FILES so that pkg-plist is no longer required. [1]
. Use JAVAJARDIR [1]
. More informative install messages [1]
. SIZEify [1]
. More informative message regarding fetching the distfile.

PR:		65215
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-04-06 16:29:19 +00:00
Greg Lewis
8a785c78ac . Convert to the newer bsd.java.mk syntax.
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr> (maintainer)
2004-04-06 06:41:31 +00:00
Joe Marcus Clarke
731798cdcf Chase the glib20 update, and bump all affected ports' PORTREVISIONs. 2004-04-05 03:31:02 +00:00
Mark Linimon
80beeb084c Update to 2.3.3: updated to support CheckStyle 3.1; added compatibility fix
for older versions of XEmacs; many other minor bugfixes and improvements.
See lisp/ChangeLog for details.

Changes to the port involve respecting ANT_HOME, and, from the PR:

  One conceivably controversial thing I added was a
  second symlink from %%EMACS_VERSION_SITE_LISP%%/java to
  $PREFIX/share/java/jde.

  Otherwise jde cannot find the BeanShell jar files.

PR:		ports/64388
Submitted by:	David Bremner <bremner@unb.ca> (maintainer)
2004-04-04 16:08:41 +00:00