Commit Graph

37 Commits

Author SHA1 Message Date
Greg Lewis
395ca6f9a8 Disable AoT except on amd64
This should be a no-op for all platforms except aarch64.  AoT is disabled
on aarch64 due to crashes in internal JDK tests for that feature.
2019-09-27 15:29:33 +00:00
Greg Lewis
d804e77edf Update to an 11.0.5 pre-release
This is mostly to pick up fixes that have gone into the BSD repo.
2019-09-20 02:26:34 +00:00
Greg Lewis
de71759143 Minor clean up
* Separate out compiler specifics from platform specifics.  This also
  removes a little duplication.
2019-09-03 19:39:00 +00:00
Greg Lewis
a8a4d62a92 Add support for aarch64
* Add aarch64 to ONLY_FOR_ARCHES on FreeBSD 12.0 and up.

PR:		239246
Submitted by:	Mikael Urankar <mikael.urankar@gmail.com>
2019-08-30 21:52:50 +00:00
Greg Lewis
24a7e726a2 Prepare for aarch64 support
* Add necessary configure arguments for aarch64
* Add patches needed to compile on aarch64.  These have been upstreamed but
  are not in a release yet.
2019-08-30 04:24:53 +00:00
Greg Lewis
e4d88a10b0 Remove guidance about needing procfs
* Remove portions of pkg-message that mention needing /proc mounted.
  This hasn't been the case for a while afaik (I don't have it mounted
  and haven't observed any related problems).
2019-08-28 15:34:32 +00:00
Greg Lewis
c1c56f1796 Add support for powerpc64
PR:		237208
2019-08-25 20:28:47 +00:00
Greg Lewis
2a60da4a4a Pet portlint 2019-08-20 18:05:26 +00:00
Greg Lewis
9dac406b78 Update cacerts
* Use the latest cacerts file from Oracle's public distribution of 11.0.4.
2019-08-20 18:03:28 +00:00
Mathieu Arnold
3bd0ac0d72 Convert to UCL & cleanup pkg-message (categories h-k) 2019-08-13 22:22:35 +00:00
Greg Lewis
dda3f471cf Update to 11.0.4+11.2 2019-08-13 04:41:40 +00:00
Greg Lewis
89a5e6cd1a Fix the build on PowerPC64
PR:		239624
Submitted by:	Curtis Hamilton <hamiltcl@verizon.net>
2019-08-04 23:04:33 +00:00
Greg Lewis
5aac9afa48 Register openjdk11 as a java provider with javavm
PR:		238092
Submitted by:	Tommy P <tommyhp2@gmail.com>
2019-07-31 16:31:52 +00:00
Gerald Pfeifer
ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
2019-07-26 20:46:53 +00:00
Greg Lewis
93dbf94b5e * Add a dependency on xrandr, since the latest version uses Xrandr.h
* Set NO_CCACHE to match configure being passed --disable-ccache

Fixes the build in poudriere and for people trying to use ccache

PR:		239387
Submitted by:	Jonathan Chen <jonc@chen.org.nz>
2019-07-24 22:41:40 +00:00
Greg Lewis
ddc3913842 Update to 11.0.4 2019-07-19 17:07:37 +00:00
Greg Lewis
2fbef85da7 Convert one missed /usr/local to ${LOCALBASE}
Submitted by:	jbeich@
2019-07-01 23:24:59 +00:00
Greg Lewis
dc5a916b1b Allow the JDK to be compiled with gcc.
This is required for powerpc64 support.
2019-07-01 21:18:18 +00:00
Antoine Brodin
e19903f0ae Clean up LIB_DEPENDS 2019-06-16 16:05:28 +00:00
Greg Lewis
9349169aad Update to 11.0.3.7.2 which includes powerpc64 support.
PR:		237208
2019-05-17 04:15:29 +00:00
Mathieu Arnold
bd3fd6f002 Use USE_GITHUB when appropriate. 2019-05-11 19:52:08 +00:00
Greg Lewis
5a5d4db763 . Update to 11.0.3. 2019-04-17 18:31:26 +00:00
Greg Lewis
51cf7dc135 Fix DTrace support for 32 bit platforms and re-enable it.
PR:		236876
2019-03-29 17:06:20 +00:00
Greg Lewis
40d8a17508 Temporarily disable DTRACE on i386
PR:		236876
2019-03-29 15:41:06 +00:00
Greg Lewis
8e56f4080e Remove unnecessary CPPFLAGS and LDFLAGS. 2019-03-29 05:58:56 +00:00
Greg Lewis
3445be9c57 . Update to 11.0.2.9.4
. Sort LIB_DEPENDS and USE_XORG
. Add a dependency in alsa-lib now that sound is supported on FreeBSD.
. Don't disable dtrace now that it is supported on FreeBSD.
. Less intrusive iconv change.
2019-03-29 01:05:26 +00:00
Jung-uk Kim
d98a910efa Refine r496923.
libinstrument.so and libjdwp.so do not need anything from $LOCALBASE but
libsplashscreen.so does.  For example,

% cd /usr/local/openjdk11
% bin/java -jar demo/jfc/SwingSet2/SwingSet2.jar
ld-elf.so.1: /usr/local/openjdk11/lib/libsplashscreen.so: Undefined symbol
"libiconv_open"

PR:		236759
2019-03-28 23:19:00 +00:00
Greg Lewis
17ca9c16ac Fixes for include path, jshell, and process issues.
* Put MD specific include files (e.g. jni_md.h) in a subdirectory named
  'freebsd' rather than 'bsd'. [1]
* Remove the necessity to always have /usr/local/include in the header
  paths and linker paths.  This allows jshell to use the system iconv.h
  rather than the third party one and link correctly. [2]
* Fix getting process commands and arguments on FreeBSD.
* Bump PORTREVISION.

All fixes need forward porting to openjdk12.

PR:		236754 [1], 236759 [2]
Submitted by:	Kurt Miller [2]
2019-03-26 20:48:04 +00:00
Greg Lewis
50a634ab39 . Fix permissions on jspawnhelper.
. Bump PORTREVISION.
2019-03-21 18:32:50 +00:00
Greg Lewis
5e8e130cbb Support i386 2019-03-21 17:22:38 +00:00
Greg Lewis
d2a6dd1a42 Update to 11.0.2.9.2 2019-03-20 20:58:59 +00:00
Greg Lewis
b52c7870ec Add pkgconfig to USES
Reported by:	Jonathan Chen <jonc@chen.org.nz>
2019-03-16 16:19:42 +00:00
Sunpoet Po-Chuan Hsieh
e7bf63f74a Update WWW
Approved by:	portmgr (blanket)
2019-03-15 21:42:08 +00:00
Greg Lewis
e44a4cbf25 Add a port of OpenJDK 11 2019-03-15 06:02:17 +00:00
Greg Lewis
4c705d4110 Removing openjdk11 temporarily to do a repo copy from openjdk8 first. 2019-03-15 05:56:34 +00:00
Sunpoet Po-Chuan Hsieh
1ce370a861 Update WWW
Approved by:	portmgr (blanket)
2019-03-13 16:11:33 +00:00
Greg Lewis
5567755703 Add a port of OpenJDK 11 2019-03-13 15:10:06 +00:00