notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: java/openjdk6/Makefile

Number of commits found: 164 (showing only 100 on this page)

1 | 2  »  

Tuesday, 20 Aug 2019
07:47 glewis search for other commits by this committer
Set an expiration date

* Java 6 public releases ended April 2013, and extended support on
  December 2018.  With upstream support ending, this is marked as
  deprecated and users are encouraged to upgrade to openjdk8.
* Provide an expiration date set one month from now (2019-09-20).

PR:	234792
Original commitRevision:509411 
Sunday, 18 Feb 2018
00:34 glewis search for other commits by this committer
. Update to b45.
Original commitRevision:462201 
Wednesday, 27 Sep 2017
05:03 jkim search for other commits by this committer
Use java/bootstrap-openjdk6 to bootstrap.
Original commitRevision:450711 
Sunday, 3 Sep 2017
02:28 glewis search for other commits by this committer
. Update to b44.
Original commitRevision:449169 
Tuesday, 30 May 2017
00:47 glewis search for other commits by this committer
. Update to b43.
Original commitRevision:442038 
Wednesday, 18 Jan 2017
22:22 jkim search for other commits by this committer
Update to b41.
Original commitRevision:431831 
13:20 tijl search for other commits by this committer
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user.  Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables.  LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well.  The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.

Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).

PR:		215882
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:431796 
Monday, 24 Oct 2016
08:53 ale search for other commits by this committer
Update cacerts file using the one included in 8u111 release.

Notable change is the inclusion of Let's Encrypt CA.
Original commitRevision:424546 
Friday, 21 Oct 2016
12:51 mat search for other commits by this committer
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:424411 
Thursday, 25 Aug 2016
23:31 jkim search for other commits by this committer
Update to b40.

MFH:		2016Q3
Original commitRevision:420883 
Wednesday, 24 Aug 2016
06:20 jkim search for other commits by this committer
Update to use Apache Ant 1.9.7.
Original commitRevision:420766 
Sunday, 31 Jul 2016
12:49 bapt search for other commits by this committer
Fix typo
Original commitRevision:419369 
12:43 bapt search for other commits by this committer
Use the new @javavm
Original commitRevision:419367 
Monday, 23 May 2016
20:35 amdmi3 search for other commits by this committer
Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by
default anyway and don't need to be listed

Approved by:	portmgr blanket
Original commitRevision:415742 
Friday, 6 May 2016
14:27 jkim search for other commits by this committer
Update to b39.

MFH:		2016Q2
Original commitRevision:414705 
Friday, 1 Apr 2016
14:08 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412347 
Friday, 11 Mar 2016
11:53 tijl search for other commits by this committer
Combine print/cups-base, print/cups-client and print/cups-image into
print/cups and update it to 2.1.3.  Also remove print/cups-pstoraster,
improve print/cups-filters, print/foomatic-* and update print/hplip to
3.16.2.

Long description:

First some background.  When you hand a file to cups it sets up a chain of
filter programs that converts the file to something a printer understands.
Each filter has a cost associated with it and cups tries to find the
cheapest chain.  Costs used to be configured in such a way that files were
first converted to PostScript.  This could then be manipulated further (e.g.
putting multiple pages on one sheet) before finally being sent to a
PostScript printer or another filter like pstoraster which produces a raster
format understood by non-PostScript printer drivers.  Nowadays most filters
have been moved from cups to cups-filters and they have been configured to
use PDF as an intermediate format instead of PostScript.

Merging of cups-base, cups-client and cups-image into print/cups:
- cups-image provides a library to work with the cups raster format.  It is
  only used to implement filters and printer drivers and these only exist
  in the context of a cups server so there's no need to separate this from
  cups-base.
- cups-client provides a library that allows applications to print via cups.
  It is possible to use the library to access a remote cups server without
  running a local cups server, but such a setup is discouraged and the
  configuration file to set this up has been marked deprecated.  It is
  better to run a local cups server and let that talk to the remote cups
  server because then you have the benefits of local job queuing in case the
  remote server is down or busy.  Given this and the fact that without
  filters cups-base is now smaller than it used to be it makes sense to
  merge the ports.  The patch also adds options IPPTOOL, DOCS and NLS which
  when disabled make the new cups package smaller than the current
  cups-client package.  Merging the ports also prevents problems with
  options like ZEROCONF being configured differently in both ports.
- print/cups was a metaport that depended on cups-base and some filters.
  There isn't really a need for such a metaport so cups-base can be renamed
  to cups.  The filters can be depended on by printer drivers such as hplip
  if they need them.

Additional changes to the new print/cups:
- Clean up the patches.  They seem to have been regenerated with post-patch
  changes included.
- Add a patch to prevent intermediate conversion to PDF when a PostScript
  file is sent to a PostScript printer when cups-filters is installed.
- Fix the PAM configuration file.
- Add a patch to let the server search /usr/local/share/ppd like on Linux so
  other ports don't have to add links to it.
- Remove ulpt(4) helper scripts.  The port uses libusb with ugen(4).
- Remove support for mDNSResponder.  cups-filters only supports Avahi.
- Combine ICONS and XDG_OPEN options into an X11 option to support WITHOUT_X11.
- Optionally depend on colord for ICC profile support.
- Various smaller changes.

Changes to print/cups-filters:
- Let the cups_browsed rc.d script depend on cupsd and avahi_daemon instead
  of LOGIN.
- Development of foomatic-filters has been moved to cups-filters so let this
  port install foomatic related files and add foomatic-filters to CONFLICTS.
- Fix location of liblouis tables.
- Add patch to fix ICC support.

Changes to print/cups-pstoraster:
This port is essentially an old version of Ghostscript plus a cups filter.
It's no longer developed.  This commit removes it and changes existing
dependencies to print/cups-filters which depends on print/ghostscript* and
includes a gstoraster filter that can handle both PostScript and PDF.

Changes to print/foomatic-db*:
Remove old MASTER_SITES and dependencies and eliminate PKGNAMEPREFIX.

Changes to print/foomatic-filters:
Install beh backend with its original name again and add cups-filters to
CONFLICTS.

Changes to print/hplip:
- Stop installing hpijs/foomatic-rip support.  This is no longer supported
  upstream.
- Stop installing hpcups PPDs.  These are now automatically generated.  The
  bundled PPDs are generated for an older version of cups.
- Rename the QT option to X11 to support WITHOUT_X11.
- Simplify the patches now that ports are installed in a staging area.
- Add a patch to set SO_REUSEPORT (next to SO_REUSEADDR) on the mDNS socket
  like avahi-daemon does.  This fixes Zeroconf support for HP network
  printers.

PR:		207746
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:410825 
Monday, 25 Jan 2016
23:16 jkim search for other commits by this committer
- Update to b38.
- Use Apache Ant 1.9.6 to build.

MFH:		2016Q1
Original commitRevision:407245 
Thursday, 19 Nov 2015
20:34 jkim search for other commits by this committer
The old URL for jtreg disappeared.

Noticed by:	ohauer
MFH:		2015Q4
Original commitRevision:401961 
Tuesday, 17 Nov 2015
00:54 jkim search for other commits by this committer
Update to b37.

MFH:		2015Q4
Original commitRevision:401795 
Thursday, 30 Jul 2015
22:55 jkim search for other commits by this committer
- Update to b36.
- Fix default core file location in crash report.

MFH:		2015Q3
Original commitRevision:393281 
Thursday, 2 Jul 2015
18:18 jkim search for other commits by this committer
Use sysctl(3) instead of procfs(5) when we need executable path from PID.

MFH:		2015Q3
Original commitRevision:391178 
Tuesday, 30 Jun 2015
20:12 jkim search for other commits by this committer
- Update to b35.
- Optimize fontconfig.properties.
Original commitRevision:390990 
Wednesday, 20 May 2015
21:05 jkim search for other commits by this committer
Fix build without precompiled headers and apply r384056 to java/openjdk6.

http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7154517

Obtained from:	OpenJDK project [1]
MFH:		2015Q2
Original commitRevision:386893 
Thursday, 14 May 2015
10:15 mat search for other commits by this committer
MASTER_SITES cleanup.

- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386312 
Tuesday, 24 Mar 2015
21:17 jkim search for other commits by this committer
Tidy up default fontconfig.properties.
Original commitRevision:382173 
00:56 jkim search for other commits by this committer
Catch up with font directory changes.
Original commitRevision:382061 
Saturday, 24 Jan 2015
15:07 antoine search for other commits by this committer
Switch some dependencies from a directory name or a file generated by
pkg-install
to a package name,  as the former can't be attributed to a package
Original commitRevision:377795 
00:02 jkim search for other commits by this committer
Update to b34.
Original commitRevision:377775 
Tuesday, 16 Dec 2014
21:37 jkim search for other commits by this committer
Turn off -Werror for Clang 3.5+ and revert r374780 for now.
Original commitRevision:374824 
Friday, 17 Oct 2014
05:00 jkim search for other commits by this committer
- Update to b33.
- Update TimeZoneNames to tzdata2014g.
Original commitRevision:371027 
Thursday, 17 Jul 2014
04:03 jkim search for other commits by this committer
- Update to b32.
- Update TimeZoneNames to tzdata2014b.
- Enlist openjdk6 users as testers of ant 1.9.4.
Original commitRevision:362118 
Friday, 27 Jun 2014
18:41 jkim search for other commits by this committer
Implement current and signal methods for sun.nio.ch.NativeThread.  Note this
fixes a test case in the following Apache Solr bug report.

https://issues.apache.org/jira/browse/SOLR-6204

Reported by:	Dawid Weiss <dawid.weiss@gmail.com>
Original commitRevision:359595 
Tuesday, 10 Jun 2014
11:29 demon search for other commits by this committer
USE_XZ --> USES=tar:xz.
Original commitRevision:357294 
Friday, 6 Jun 2014
23:40 jkim search for other commits by this committer
Mark it as unsafe for parallel build.
Original commitRevision:356867 
Wednesday, 21 May 2014
19:57 jkim search for other commits by this committer
Fix printing services.  When CUPS is used, ${LOCALBASE}/bin/lpr must be used
to print a generated PostScript file.  When lpd(8) is used, lpr(1) from base
must be used.  Also, status command for lpc(8) requires a printer name.  If
no argument is specified, i.e., "/usr/sbin/lpc status", then it displays the
command usage, i.e., "usage: status  {all | printer ...}".  Unfortunately,
"usage" is interpreted as a printer name because ":" is included.  Add "all"
and adjust an expression for grep(1).

PR:		ports/178856
Original commitRevision:354759 
Thursday, 17 Apr 2014
18:24 jkim search for other commits by this committer
Fix couple of mis-merges.
Original commitRevision:351489 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
Original commitRevision:351411 
01:43 jkim search for other commits by this committer
Update to b31.
Original commitRevision:351372 
Wednesday, 12 Mar 2014
20:56 jkim search for other commits by this committer
Add an upstream patch to fix yet another fallout from HotSpot 23 merge.

https://java.net/jira/browse/OPENJDK6-29
http://hg.openjdk.java.net/jdk6/jdk6/jdk/rev/04e4c3ec6516
Original commitRevision:348006 
Tuesday, 11 Mar 2014
17:18 jkim search for other commits by this committer
Fix missing symbols after re-appearance of converters/libiconv on 10+.  This
actually fixes java/icedtea-web because libsplashscreen.so was looking for
libiconv_open() and libiconv_close() from libiconv instead of iconv_open()
and iconv_close() from libc.  Tidy up compiler/linker flags while I am here.
Original commitRevision:347893 
Monday, 3 Mar 2014
23:45 jkim search for other commits by this committer
- Sync. extremely outdated sun.util.resources.TimeZoneNames to the latest
tzdata 2013i from the upstream.  Note we are not updating zoneinfo data here
as it can be updated via java/java-zoneinfo.
- Fix build with Clang 3.4 and other miscellaneous issues while I am here.
Original commitRevision:346976 
Thursday, 23 Jan 2014
23:34 jkim search for other commits by this committer
- Update to b30.
- Implement sigset(2) for libjsig.  All supported FreeBSD releases have it.
- Turn UseMembar back on by default until we find better solution.
Original commitRevision:340870 
Wednesday, 8 Jan 2014
21:21 jkim search for other commits by this committer
Build with Apache Ant 1.9.3.
Original commitRevision:339177 
Saturday, 4 Jan 2014
14:33 mat search for other commits by this committer
Revert lang/openjdk6 to b28.

With hat:	portmgr-lurker
Original commitRevision:338646 
Friday, 3 Jan 2014
01:13 bapt search for other commits by this committer
Part 2 at removing now useless FETCH_ARGS redifition
Original commitRevision:338513 
Friday, 27 Dec 2013
11:50 bapt search for other commits by this committer
Mark as forbidden, the port is now trigering a nasty FreeBSD bug!
A fix is being investigated
Original commitRevision:337714 
Tuesday, 24 Dec 2013
23:11 jkim search for other commits by this committer
- Update to b29.
- Tidy up signal handler.
- Disable a Linux-specific hack.
- Do not create stack guard for Java threads.
- Implement thread CPU time.
Original commitRevision:337396 
Wednesday, 11 Dec 2013
01:18 jkim search for other commits by this committer
If /var/db/zoneinfo exists, use the file to determine timezone rather than
iterating over all files under /usr/share/zoneinfo.  All supported FreeBSD
versions create the file with tzsetup(8).  This change usually improves
java.util.TimeZone performance because we only need to test just one file.
Original commitRevision:336136 
Wednesday, 4 Dec 2013
23:20 jkim search for other commits by this committer
Add multiple security patches and improvements from IcedTea6.

http://icedtea.classpath.org/hg/icedtea6/rev/e98b0ef70b26

Obtained from:	IcedTea Project
Original commitRevision:335646 
Saturday, 9 Nov 2013
00:11 jkim search for other commits by this committer
- Add throw() to all user-defined operator new()s within HotSpot because
Clang does not support "-fcheck-new".  Note it is a backport of S8021954
(http://hg.openjdk.java.net/hsx/hotspot-rt/hotspot/rev/9758d9f36299).
- Re-implement signal_name() with sys_signame(3) and adjust the comments.
- Re-implement ThreadCritical with PTHREAD_MUTEX_RECURSIVE.
- Fix DEBUG build with Clang on i386.  Clang does not support "-gstabs".
- Limit allocatable physical memory per getrlimit(2).
Original commitRevision:333271 
Tuesday, 5 Nov 2013
21:16 jkim search for other commits by this committer
- Do not crash when unsupported options are specified. [1]
- Micro-optimize and tidy up some patches.

PR:		java/183656 [1]
Original commitRevision:332909 
Friday, 25 Oct 2013
22:53 jkim search for other commits by this committer
- Turn off UseMembar by default.  This workaround is not necessary any more.
- Add few minor patches related to thread ID that were mis-merged.
- Add couple of minor HotSpot patches from upstream while I am here.
Original commitRevision:331642 
Tuesday, 22 Oct 2013
20:17 jkim search for other commits by this committer
Allow overriding linker flags for standard C++ libraries and zlib.
Original commitRevision:331315 
Wednesday, 16 Oct 2013
20:40 jkim search for other commits by this committer
Allow adding extra patches from slave ports.
Original commitRevision:330538 
Monday, 14 Oct 2013
19:09 jkim search for other commits by this committer
Build with Apache Ant 1.9.2.
Original commitRevision:330343 
17:45 jkim search for other commits by this committer
Simplify compiler detection.  COMPILER_TYPE must be defined since r330336.
Original commitRevision:330338 
Saturday, 12 Oct 2013
00:31 jkim search for other commits by this committer
- Do not allow selecting both DEBUG and FASTDEBUG options. [1]
- Re-enable -Werror for HotSpot build with GCC.
- Revert couple of unnecessary local changes to reduce diff.
- Add inactive pages as availble memory.  Note it is a cosmetic change.

PR:		ports/182907 [1]
Original commitRevision:330107 
Thursday, 10 Oct 2013
21:59 jkim search for other commits by this committer
- Fix few mis-merges against HotSpot 23 and tie up some loose ends.
- Fix build with libiconv.  This problem was introduced in r330018.
- Update CA list to Oracle Java 7u40.  An expired CA was removed.
Original commitRevision:330035 
16:49 jkim search for other commits by this committer
- Remove redundant bsd.port.pre.mk.
- Convert LIB_DEPENDS to new formats.

Submitted by:	bar
Original commitRevision:330018 
Wednesday, 9 Oct 2013
20:36 jkim search for other commits by this committer
Update to Build b28.
Original commitRevision:329926 
Tuesday, 8 Oct 2013
06:53 jkim search for other commits by this committer
Fix test option.
Original commitRevision:329761 
05:44 jkim search for other commits by this committer
Use echo correctly.
Original commitRevision:329757 
05:35 jkim search for other commits by this committer
Remove few lines added for testing at the last minute.  This fixes plist.
Original commitRevision:329756 
00:03 jkim search for other commits by this committer
- Support staging.
- Fix fastdebug installation.
- Update jtreg version to Build b05.
- Refine r327353.  Use an extra patch instead.
- Install proper license file.  OpenJDK6 has GPLv2 + "Classpath" exception.
Original commitRevision:329749 
Friday, 20 Sep 2013
19:48 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
java)
Original commitRevision:327738 
Sunday, 15 Sep 2013
18:55 madpilot search for other commits by this committer
- Add missing iconv USES

PR:		java/182100
Submitted by:	m.viey@wanadoo.fr
Approved by:	portmgr (bapt, implicit)
Original commitRevision:327353 
Friday, 6 Sep 2013
02:06 jkim search for other commits by this committer
Fix build with libc++.
Original commitRevision:326457 
Wednesday, 4 Sep 2013
18:06 madpilot search for other commits by this committer
- Make ports use the libc provided iconv implementation on 10-CURRENT
  after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc

Reviewed by:	bapt
Approved by:	portmgr (bapt)
Discussed with:	bapt, bsam (who both contributed ideas and code)
Original commitRevision:326307 
Friday, 26 Jul 2013
05:27 jkim search for other commits by this committer
Bump revision for openjdk6-jre to catch up with the master port change.
Original commitRevision:323679 
Thursday, 25 Jul 2013
15:32 bapt search for other commits by this committer
Fix excessive memory consumption on head amd64, this prevent the package
building cluster from dying when building java ports.

This bug is referenced upstream here:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6636110

Submitted by:	dim
With hat:	portmgr
Original commitRevision:323651 
Monday, 22 Jul 2013
21:59 jkim search for other commits by this committer
- Add couple of upstreamed IcedTea6 patches for consistency.
- Disable test_gamma by default.
Original commitRevision:323500 
Tuesday, 16 Jul 2013
21:12 jkim search for other commits by this committer
Fix openjdk6-jre build.
Original commitRevision:323127 
21:07 jkim search for other commits by this committer
Add multiple security patches and improvements from IcedTea6 1.12.6.

http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-July/023941.html

Obtained from:	IcedTea Project
PR:		ports/180541
Original commitRevision:323126 
Wednesday, 10 Jul 2013
07:00 bapt search for other commits by this committer
Convert from USE_MOTIF to USES=motif
While here:
- Trim headers
- Convert USE_GMAKE to USES=gmake
- Remove indefinite article from comment
Original commitRevision:322622 
Wednesday, 8 May 2013
22:47 jkim search for other commits by this committer
Style change after r317320.  We do not need a temporary variable any more.
Original commitRevision:317715 
Saturday, 4 May 2013
14:06 bdrewery search for other commits by this committer
- When DISABLE_MAKE_JOBS or MAKE_JOBS_UNSAFE is set, also set
  MAKE_JOBS_NUMBER to 1. This makes it safe to do -j${MAKE_JOBS_NUMBER}
  without any extra logic.
- Cleanup ports working around the empty MAKE_JOBS_NUMBER
- This also fixes several ports that were expecting MAKE_JOBS_NUMBER
  to always have a number

Reviewed by:	bapt
Spotted by:	John Marino <draco@marino.st>
With hat:	portmgr
Original commitRevision:317320 
Monday, 29 Apr 2013
08:57 bapt search for other commits by this committer
Rely on bsdtar to autodetermine the format of the distfiles when possible

For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.

Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
Original commitRevision:316786 
Thursday, 25 Apr 2013
20:03 jkim search for other commits by this committer
Add multiple security patches from IcedTea6 1.12.5.

http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-April/022985.html

Obtained from:	IcedTea Project
Original commitRevision:316529 
Wednesday, 6 Mar 2013
01:01 jkim search for other commits by this committer
Add multiple security patches from IcedTea6 1.12.4.

http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-March/022145.html

Obtained from:	IcedTea Project
Original commitRevision:313493 
00:50 jkim search for other commits by this committer
Add multiple security patches from IcedTea6 1.12.3.

http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-February/021858.html
http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-February/021998.html

Obtained from:	IcedTea Project
Original commitRevision:313491 
Monday, 11 Feb 2013
23:45 jkim search for other commits by this committer
Add a patch to fix MulticastSocket.setInterface().

http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/bfa676f5b5db

Submitted by:	oliver
Original commitRevision:312083 
Thursday, 8 Nov 2012
21:52 jkim search for other commits by this committer
Make sure to unset 'OS' environment variable.  Some shell sets it and causes
HotSpot build failure.

PR:		ports/173434
Feature safe:	yes
Original commitRevision:307205 
Wednesday, 31 Oct 2012
20:49 jkim search for other commits by this committer
- Remove registervm from build dependency.  This hack is no longer necessary
as javavmwrapper is fixed now (r306536).
- Remove an empty directory, which was missed in the previous commit.

Feature safe:	yes
Original commitRevision:306764 
Monday, 29 Oct 2012
06:13 glewis search for other commits by this committer
. Update to build 27.

Feature safe:	yes
Original commitRevision:306592 
Thursday, 25 Oct 2012
21:03 jkim search for other commits by this committer
Move .endif to a better place.  No functional change.

Feature safe:	yes
Original commitRevision:306397 
Tuesday, 23 Oct 2012
17:40 jkim search for other commits by this committer
Bump PORTREVISION for the new cacerts.

Feature safe:	yes
Original commitRevision:306320 
Monday, 22 Oct 2012
23:43 jkim search for other commits by this committer
Remove more environment variables.  These variables are never meant to be
overridden by the user.

Feature safe:	yes
Original commitRevision:306294 
20:29 jkim search for other commits by this committer
Remove a bogus environment variable, especially for i386.  This fixes build
under certain conditions.

Feature safe:	yes
Original commitRevision:306287 
Friday, 19 Oct 2012
22:43 jkim search for other commits by this committer
- Add 2012/10/16 security patches from IcedTea6 1.11.5. [1]

http://icedtea.classpath.org/hg/release/icedtea6-1.11/rev/d9564350faa6
http://blog.fuseyism.com/index.php/2012/10/19/security-icedtea-1-10-10-1-11-15-2-1-3-2-2-3-2-3-3-released/

- Completely turn off parallel build by default and remove parallel build
hack for HotSpot.  There were several reports that it fails to build under
certain environment, ports/162991 for example.  Users can still do parallel
build by setting FORCE_MAKE_JOBS (and MAKE_JOBS_NUMBER if desired).
- Implement os::available_memory().  Now it is consistent with "vm.vmtotal"
sysctl(3) MIB rather than bogus (physical memory / 4).
- Prefer sysconf(_SC_NPROCESSORS_CONF) over HW_NCPU sysctl MIB to get the
number of installed processors.  There is no functional difference except
for CURRENT, which obtains the information from ELF aux vector.
- Prefer sysconf(_SC_PHYS_PAGES) * sysconf(_SC_PAGESIZE) over HW_USERMEM
sysctl MIB to get size of physical memory.  Although it looks more logical
to find currently available memory, it has an inevitable side-effect, i. e.,
it changes dynamically depending on current wired page count.  Therefore,
it is unpredictable and not too useful some times.  For example, launcher
uses the parameter to determine initial heap size and machine class for i386.
Now it is more consistent with other places (and Linux JDK/JREs, including
the ones we have in ports tree).
- Implement os::active_processor_count() using cpuset_getaffinity(2).  For
example, Runtime.getRuntime().availableProcessors() now returns number of
available processors for the current process as it should.
- Sync. launchers (java_md.c) for HotSpot and JDK as much as possible for
maintainability.  As a good side-effect, launcher for i386 can now determine
machine class based on the current hardware configuration.  Previously,
client VM was always chosen by default.
- Fix CounterGet(), which is only used for debugging launcher.
- Add swap info for os::print_memory_info().

Obtained from:	IcedTea project [1]
Feature safe:	yes
Original commitRevision:306138 
Friday, 12 Oct 2012
00:42 jkim search for other commits by this committer
Add a port to self-bootstrap OpenJDK6.  Note the initial distfiles were
bootstrapped with pre-built openjdk6 packages from FreeBSD build clusters
on clean 7.4-RELEASE installation, and the ports tree was checked out at
r305682.

Feature safe:	yes
Original commitRevision:305745 
Wednesday, 10 Oct 2012
19:55 jkim search for other commits by this committer
- Explicitly set registervm as build dependency.  When BOOTSTRAPJDKDIR is
manually set, this dependency may not be fulfilled.
- Consistently use WRKSRC over WRKDIR where it makes sense.  Although they
are actually the same directory, there is no reason to confuse users.

Feature safe:	yes
Original commitRevision:305682 
Tuesday, 9 Oct 2012
20:59 jkim search for other commits by this committer
Update to build 26.
Original commitRevision:305604 
17:47 jkim search for other commits by this committer
- Sanitize user, group and permission.  Inspired by openjdk7.
- Add a slave port to create JRE-only package.
Original commitRevision:305596 
Wednesday, 26 Sep 2012
23:24 jkim search for other commits by this committer
Use fdescfs(5) and procfs(5) consistently.
Original commitRevision:304938 
Tuesday, 18 Sep 2012
22:30 jkim search for other commits by this committer
- Override GCC used by HotSpot SA. [1]
- Fix build with GCC 4.5+ on i386. [2]
- Convert to the new header format.

Submitted by:	Claude Buisson (clbuisson at orange dot fr) [1]
Obtained from:	OpenJDK7 [2]
	http://hg.openjdk.java.net/jdk7/hotspot/hotspot/rev/da880ba4edf9
Original commitRevision:304470 
20:53 jkim search for other commits by this committer
- Honor CC, CXX, and CPP. [1]
- Fix build with clang.

PR:	ports/151042 [1]
Original commitRevision:304460 
Friday, 7 Sep 2012
22:16 jkim search for other commits by this committer
- Enlist openjdk6 users as testers of ant 1.8.4 as well.
- Set JAVACMD environment variable to point to bootstrap JDK for ant.  When
it is unset or empty, ant sets it by executing `which java`, which may be
different from bootstrap JDK.
Original commitRevision:303832 
19:27 jkim search for other commits by this committer
- Update security patch to fix CVE-2012-0547 and CVE-2012-1682.
- Catch up with icedtea.classpath.org server changes for distfiles.
Original commitRevision:303821 
Wednesday, 13 Jun 2012
19:17 jkim search for other commits by this committer
- Fix multiple security vulnerabilities. [1]
- Drop version suffixes from LIB_DEPENDS.
- Use the new options framework.

Obtained from:  IcedTea Project [1]
http://icedtea.classpath.org/hg/icedtea6/rev/9aff0fc60733
Original commit

Number of commits found: 164 (showing only 100 on this page)

1 | 2  »