summaryrefslogtreecommitdiff
path: root/java/jdk13 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* . Fix the plugin build when LOCALBASE is not /usr/local.Greg Lewis2003-10-281-1/+2
| | | | | | | | PR: 58618 Submitted by: harti Notes: svn path=/head/; revision=92472
* . Fix pre-everything target.Greg Lewis2003-10-161-1/+1
| | | | | | | | PR: 58148 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com> Notes: svn path=/head/; revision=91459
* . Use ${PTHREAD_LIBS} rather than -pthread.Greg Lewis2003-10-082-1/+30
| | | | | | | Suggested by: mi Notes: svn path=/head/; revision=90578
* . Make HotSpot compile with gcc 3.3.1.Greg Lewis2003-10-084-0/+151
| | | | | | | | Submitted by: Munehiro Matsuda <haro@h4.dion.ne.jp> Reminded by: mi Notes: svn path=/head/; revision=90577
* . Remove native_threads directories when native threads are not specifiedGreg Lewis2003-08-312-4/+8
| | | | | | | | | | | | | during the compile. The native threads java_vm binaries are compiled regardless of the settings and were causing problems with the packing list. . Fix packing list so that native_threads versions of java_vm are conditionalised. PR: 56007 Notes: svn path=/head/; revision=88226
* . Check for a setting of "-mcpu=k6" in CFLAGS and error if so. ThisGreg Lewis2003-08-301-2/+9
| | | | | | | | | | | setting will cause an internal compiler error in gcc 2.95.x when compiling the JDK. PR: 46269 Submitted by: Simon Barner <barner@in.tum.de> Notes: svn path=/head/; revision=88080
* . Add support for bootstrapping with the Diablo Caffe JDK. The bootstrapGreg Lewis2003-08-291-3/+6
| | | | | | | | | | | | | | order is now: . linux-blackdown-jdk13 iff WITH_LINUX_BOOTSTRAP is set. . A previous installation of this port, if it exists. . The Diablo Caffe JDK. That is, the Diablo Caffe JDK is now the default bootstrapper in the absence of a previous installation of this port. Notes: svn path=/head/; revision=88007
* . Add a script which checks if ${LINUX_BASE}/${WRKDIRPREFIX} isGreg Lewis2003-08-222-4/+31
| | | | | | | | | | | | | | (possibly indirectly) a symbolic link to ${WRKDIRPREFIX}. . Use this script in preference to the direct symbolic link check previously used, as it handles indirections which cause the same problem. . /compat/linux -> ${LINUXBASE} in the message output if the check detects a link. PR: 43602 Notes: svn path=/head/; revision=87507
* 1. Autodetect a previous jdk13 install and use that to bootstrap byGreg Lewis2003-08-021-20/+12
| | | | | | | | | | | | default if it exists. This can be overidden either using JDK13DIR or setting WITH_LINUX_BOOTSTRAP. 2. Don't create directories for new files, invoke patch with -p0. PR: 52195 [1] Submitted by: David Yeske <dyeske@yahoo.com> [1 - based on] Notes: svn path=/head/; revision=86195
* . Switch to using the appropriate Blackdown JDK for bootstrapping sinceGreg Lewis2003-07-211-2/+2
| | | | | | | | | it doesn't require user intervention to download and install. PR: 30576 Notes: svn path=/head/; revision=85308
* . Try to ensure that we get the correct version of some Netscape headerGreg Lewis2003-07-111-0/+13
| | | | | | | | | | files. This will hopefully fix some build problems people have been experiencing with bogus versions of these files being installed by Qt. PR: 54180 Notes: svn path=/head/; revision=84718
* . In the cases where we need gtar, its an EXTRACT_DEPENDS, not aGreg Lewis2003-06-151-2/+2
| | | | | | | BUILD_DEPENDS. Notes: svn path=/head/; revision=83001
* . Reorder the check for the source and patchset so that the failureGreg Lewis2003-06-151-11/+11
| | | | | | | messages are produced in the order that they were intended. Notes: svn path=/head/; revision=83000
* . Bump PORTREVISION for the recent fixes.Greg Lewis2003-05-061-1/+1
| | | | | | | Reminded by: lioux Notes: svn path=/head/; revision=80268
* . Remove an assert() which asserts that if isatty() is true thenGreg Lewis2003-05-061-0/+12
| | | | | | | | | | | | | | | | | | | ttyname() must not return NULL. This isn't entirely true according to the manual page (the device must be able to be found as well) and certainly appears to not necessarily be true in the package building environment on bento (plus at least the PR submitter's environment). Note that this assert() was, of course, only ever triggered when running in debug mode (which most people don't, but does happen during the build in some parts). Also note that there is a check for isatty() preceding the call for ttyname() and a NULL return from ttyname() is handled, so removing this assert should not create any problems. PR: 48164 Notes: svn path=/head/; revision=80210
* . Fix Math.pow() when the JDK is compiled with optimisation flags set.Greg Lewis2003-04-301-0/+176
| | | | | | | | | | There may be other Math methods which similarly fail under optimisation, these will be addressed by a more extensive change in patchset 9. PR: 48825 Notes: svn path=/head/; revision=79921
* . Now that we can use Classic and HotSpot, make classic (and hence greenGreg Lewis2003-04-221-0/+13
| | | | | | | threads) the default. This is the most stable combination. Notes: svn path=/head/; revision=79472
* . Fix the shell wrapper to cope with HotSpot and as a result remove theGreg Lewis2003-04-222-2/+81
| | | | | | | | | warning that the Classic VM is unusable with HotSpot. Submitted by: Munehiro Matsuda <haro@h4.dion.ne.jp> Notes: svn path=/head/; revision=79471
* 1. Clean up demo/jfc/SwingSet2/resources before the install. This shouldGreg Lewis2003-04-071-0/+4
| | | | | | | | | | | | not be installed, but appears to be on rare occasions for reasons unknown. 2. Add handling of share/doc/java, previously only done in pkg-plist. PR: 50092 (2) Submitted by: Munehiro Matsuda <haro@kgt.co.jp> (2) Notes: svn path=/head/; revision=78534
* . Fix the packing list:Greg Lewis2003-04-071-29/+30
| | | | | | | | | | | | | . Clean up for WITHOUT_PLUGIN. . Clean up for WITH_NATIVE_THREADS. . Add handling of jre/lib/ext, previously only done in Makefile. PR: 50092 Submitted by: Kimura Fuyuki <fuyuki@hadaly.org> Munehiro Matsuda <haro@kgt.co.jp> Notes: svn path=/head/; revision=78533
* Don't set IGNORE when PACKAGE_BUILDINGKris Kennaway2003-03-041-2/+2
| | | | Notes: svn path=/head/; revision=76825
* de-pkg-commentGreg Lewis2003-02-282-1/+1
| | | | Notes: svn path=/head/; revision=76665
* 1. Bump PORTREVISION for this and previous changes.Greg Lewis2003-02-282-1/+91
| | | | | | | | | | | | | | 2. Enable compiling the HotSpot JVM. This is experimental and there are a number of caveats with its use that are reported by the port. The flag to enable this is WITH_HOTSPOT. 3. Try to pick some OSVERSION settings appropriate for the current native threads implementation. PR: 47397 (2) Submitted by: Munehiro Matsuda <haro@h4.dion.ne.jp> (2) Notes: svn path=/head/; revision=76664
* . Updated version of native threads for FreeBSD. This uses recentlyGreg Lewis2003-02-281-0/+726
| | | | | | | | | | | | | | | committed enhancements to libc_r and is only suitable for very recent versions of FreeBSD. The big benefit is that it removes almost all the previous grovelling about in the pthreads internals. The change only comes into effect when WITH_NATIVE_THREADS is set. A separate Makefile commit will attempt to enforce appropriate OSVERSION settings for using it. Submitted by: fjoe Notes: svn path=/head/; revision=76662
* . Rename our internal gethostby{name,addr}_r functions to avoid collisions.Greg Lewis2003-02-281-0/+114
| | | | | | | | | | | | | | | | Currently gethostbyaddr_r collides with the implementation (in libc!) for FreeBSD 5.x which both uses a different prototype (as per the Linux version) and is marked temporary and not thread safe. Also, limit the scope of these internal implementations to this file. This fixes crashes in networked applications for FreeBSD 5.x. Some tweaks (making the functions static, naming, BSD ifdefs) by me. Submitted by: "Georg-W. Koltermann" <g.w.k@web.de> Notes: svn path=/head/; revision=76659
* . Respect LOCALBASE in the DEVTOOLS_PATH setting.Greg Lewis2003-02-281-0/+9
| | | | | | | | PR: 47668 Submitted by: Mike Meyer <mwm-dated-1044336154.329122@mired.org> Notes: svn path=/head/; revision=76656
* . Add missing include of <sys/time.h>, needed by <sys/resource.h> forGreg Lewis2003-02-281-0/+12
| | | | | | | | | FreeBSD 5.x. This fixes native threads compilation on FreeBSD 5.x. Submitted by: Munehiro Matsuda <haro@h4.dion.ne.jp> Notes: svn path=/head/; revision=76655
* . Be consistent about our compiler settings. Using gcc32 here was bothGreg Lewis2003-02-281-0/+13
| | | | | | | | inconsistent with the rest of the code and only relevant on 4.x (since 5.x has gcc 3.2.x as its default compiler). Notes: svn path=/head/; revision=76652
* . Resurrect patch accidentally removed in last commit.Greg Lewis2003-02-121-0/+18
| | | | Notes: svn path=/head/; revision=75385
* . Update to patchset 8.Greg Lewis2003-02-1212-1142/+2
| | | | Notes: svn path=/head/; revision=75384
* Be consistent. If we're going to explicitly use /sbin/sysctl to checkGreg Lewis2003-01-301-1/+1
| | | | | | | the value, then tell the user to use that to set the value too. Notes: svn path=/head/; revision=74272
* Use the full path to /sbin/sysctlKris Kennaway2003-01-301-1/+1
| | | | | | | Noticed by: 'make index' in crontab Notes: svn path=/head/; revision=74251
* Don't remove system directories share/java, share/java/classes, andKris Kennaway2002-11-101-3/+0
| | | | | | | share/doc Notes: svn path=/head/; revision=69861
* . Add optional (default: off) runtime dependencies for the font packagesGreg Lewis2002-10-311-0/+10
| | | | | | | necessary to support the different font.properties that are installed. Notes: svn path=/head/; revision=69210
* . Fix UDP packet broadcasting.Greg Lewis2002-10-312-1/+15
| | | | | | | | | . Bump PORTREVISION. Submitted by: daichi, Tetsuo Suzuki <tetsuo@ss-lab.net> Notes: svn path=/head/; revision=69202
* . Check for open-motif with libXm.so, which we actually use, instead ofGreg Lewis2002-10-291-2/+2
| | | | | | | libMrm.a, which isn't. Notes: svn path=/head/; revision=69076
* . In the informative message regarding downloading the necessary files,Greg Lewis2002-10-291-3/+3
| | | | | | | | | use ${DISTDIR} rather than /usr/ports/distfiles. Submitted by: Mike Meyer <mwm@mired.org> Notes: svn path=/head/; revision=69074
* . echo -> ${ECHO_MSG}Greg Lewis2002-10-251-8/+8
| | | | Notes: svn path=/head/; revision=68769
* . Catch up with additional font.properties files.Greg Lewis2002-10-251-0/+3
| | | | Notes: svn path=/head/; revision=68768
* . Chinese font.properties and make glue.Greg Lewis2002-10-252-2/+245
| | | | | | | Submitted by: Huang wen hui <hwh@ns.gddsn.org.cn> Notes: svn path=/head/; revision=68767
* . More XIM fixes for Japanese users (and presumably others with similarGreg Lewis2002-10-182-0/+64
| | | | | | | | | | character sets). . Bump PORTREVISION. Submitted by: daichi Notes: svn path=/head/; revision=68294
* . Link the Netscape 4 plugin against libintl to avoid a runtime linkGreg Lewis2002-10-181-0/+15
| | | | | | | | | | error. This may allow browsers which use Netscape 4 plugins (e.g. Konqueror) to make use of it. Code change by me, problem report by Dylan Carlson <absinthe@pobox.com>. Notes: svn path=/head/; revision=68293
* . Russian and Ukrainian font property files and appropriate build changes.Greg Lewis2002-10-183-0/+416
| | | | | | | Submitted by: mi Notes: svn path=/head/; revision=68291
* . Make the instructions for downloading the various source bits clearer.Greg Lewis2002-10-171-6/+26
| | | | | | | | | The instructions are based on text submitted in the PR (by grog). PR: 42942 Notes: svn path=/head/; revision=68216
* Not using IGNORE anymore to avoid package building.Ernst de Haan2002-10-101-5/+2
| | | | | | | | | | | | | | | | | | | .if defined(BATCH) || defined(PACKAGE_BUILDING) IGNORE= "You can not legally distribute binaries" .endif This was superfluous and inhibiting package builds of things that depend on the port. Having RESTRICTED and NO_CDROM is enough to ensure that a package will not appear on the FTP site or a CDROM (it will be built and used as a basis for other packages to build with, but will be deleted at the end of the build run). Requested by: kris Reviewed by: portmgr (silence) PR: 42758 Notes: svn path=/head/; revision=67730
* Unified one-line descriptions for JDK ports.Ernst de Haan2002-08-121-1/+1
| | | | Notes: svn path=/head/; revision=64418
* Changed the installation directory of the Sun JDK 1.3.x for Linux toErnst de Haan2002-08-101-1/+1
| | | | | | | | | linux-sun-jdk1.3.1. PR: 41424 Notes: svn path=/head/; revision=64324
* . Fix a typo in a message printed out to the user.Greg Lewis2002-08-081-1/+1
| | | | Notes: svn path=/head/; revision=64246
* Add a check in pre-build for a sysctl which will cause an error duringGreg Lewis2002-08-061-0/+9
| | | | | | | bootstrapping with the Linux JDK. Notes: svn path=/head/; revision=64108
* Improved font.properties.ja based on the Kochi fonts rather than theGreg Lewis2002-08-051-0/+308
| | | | | | | | | Watanabe/Wadalab fonts. Submitted by: daichi <daichi@ongs.co.jp> Notes: svn path=/head/; revision=64061