summaryrefslogtreecommitdiff
path: root/java/openjdk8 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* . Update to 8u92.Greg Lewis2016-05-176-3382/+6995
|
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-15/+15
| | | | | With hat: portmgr Sponsored by: Absolight
* . Update to 8u77.Greg Lewis2016-03-272-3/+9
|
* Combine print/cups-base, print/cups-client and print/cups-image intoTijl Coosemans2016-03-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* . Update to 8u72.Greg Lewis2016-01-318-7856/+973
|
* . Unreak CCACHEGreg Lewis2016-01-212-0/+22
| | | | | PR: 205751 Submitted by: chris@chrullrich.net
* - Partially implement getThreadUserTime() using getrusage(2). Note we canJung-uk Kim2016-01-052-20/+58
| | | | | | | | | | | only get usage for the current thread. Return -1 if the requested function is not supported, i.e., user time for other threads, rather than crash. [1] - Properly implement os::elapsedVTime() using getrusage(). Basically, it is taken from Linux version. - Temporarily revert r403748 to fix bootstrapping with earlier OpenJDK8. [2] PR: 205523, 205843 [1] PR: 205544 [2]
* . Stub implementation of OperatingSystemImpl.Greg Lewis2016-01-022-1/+46
| | | | PR: 205229
* Fix the previous commit. We do not support getThreadUserTime().Jung-uk Kim2015-12-231-1/+1
| | | | PR: 205523
* Implement ThreadMXBean.getThreadCpuTime(), etc.Jung-uk Kim2015-12-233-0/+90
| | | | | PR: 205523 Submitted by: will (via bsd-port-dev@openjdk.java.net)
* Fix build with fmake.Jung-uk Kim2015-12-151-1/+1
| | | | Reported by: antoine
* Build compilefontconfig.jar and javazic.jar with bootstrap jar. OriginallyJung-uk Kim2015-12-141-2/+2
| | | | | | it was intended to test the newly built JVM, it is not cross-build friendly. Submitted by: Eugene M. Zheganin (emz at norma dot perm dot ru)
* Build with sjavac when we are self-hosting to improve build speed.Jung-uk Kim2015-12-141-0/+4
|
* Allow java/openjdk7 for bootstrapping java/openjdk8. Although we cannotJung-uk Kim2015-12-141-4/+3
| | | | build OpenJDK7 for ARM yet, there is no need to disallow it at all.
* Respect CC, CPP and CXX with full paths.Jung-uk Kim2015-12-141-1/+1
| | | | PR: 203747
* Respect CC, CPP and CXX with full paths.Jung-uk Kim2015-12-141-0/+12
| | | | PR: 203747
* . Update to 8u66.Greg Lewis2015-12-134-2116/+4678
|
* Restore jtreg disappeared in r396353.Jung-uk Kim2015-12-111-0/+2
| | | | PR: 205234
* Work around build failures with Poudriere. We have to limit max heap sizeJung-uk Kim2015-12-101-0/+6
| | | | when building 32-bit targets on a 64-bit host for some unknown reason.
* Fix regression introduced in r372338, i.e., mis-merged fix for JDK-8031581.Jung-uk Kim2015-12-102-1/+24
| | | | PR: 205192
* Add an upstream patch to fix build for some 32-bit platforms, i.e.,Jung-uk Kim2015-12-091-0/+28
| | | | | | java.lang.OutOfMemroryError. http://hg.openjdk.java.net/jdk8u/jdk8u/rev/f398f28e3112
* Update giflib to 5.1.1Antoine Brodin2015-12-031-0/+1
| | | | PR: 204492
* Add support for armv6hf. Tested on Raspberry Pi 2 Model B.Jung-uk Kim2015-10-151-5/+5
|
* Clean up and modernize the port. No functional change.Jung-uk Kim2015-09-292-66/+142
|
* . Add support for armv6.Greg Lewis2015-09-294-7/+148
| | | | | | PR: 201308 Submitted by: mikael.urankar@gmail.com Reviewed by: sbruno
* Do not build unnecessary targets to reduce build time.Jung-uk Kim2015-09-161-0/+7
|
* . Switch to xz for the new remote patches to decrease download size.Greg Lewis2015-09-092-27/+27
|
* . Move the large patches which contain the changes between updates of theGreg Lewis2015-09-0811-1143912/+28
| | | | | | JDK to being fetched remotely using PATCHFILES and PATCH_SITES. This cuts the size taken by openjdk8 in the ports repository.
* . Update to 8u60.Greg Lewis2015-09-074-983/+285491
|
* Fix few more mismerges in the previous update.Jung-uk Kim2015-07-203-16/+20
|
* Tidy up couple of problems in the previous update.Jung-uk Kim2015-07-203-5/+16
|
* . Update to 8u51.Greg Lewis2015-07-1914-980/+10892
|
* . The test target wants jtreg binaries to be found one directory up. AllowGreg Lewis2015-07-051-0/+3
| | | | that to be the case.
* . Fix BSD detection in the langtools test infrastructure.Greg Lewis2015-07-051-0/+11
|
* - Fix broken preprocessor directives.Jung-uk Kim2015-07-024-1/+148
| | | | | | - Use sysctl(3) instead of procfs(5) when we need executable path from PID. MFH: 2015Q3
* Fix the previous commit. Forgot to remove #'s before committing. :-(Jung-uk Kim2015-05-191-2/+2
|
* Do not use static libjli for stable/10 and head. This complements PR193009.Jung-uk Kim2015-05-194-44/+134
| | | | | | Re-apply r381431 while I am here. Submitted by: Kurt Miller <kurt@intricatesoftware.com>
* . Update to 8u45.Greg Lewis2015-05-065-549/+46187
|
* Fix build with GCC with recent head kernel by disabling PCH for GCC.Bryan Drewery2015-04-151-0/+5
| | | | | | | | | | | | | | The case for this is a recent head kernel building an older branch that uses GCC in a jail. This is discussed at https://lists.freebsd.org/pipermail/svn-src-all/2015-March/101722.html It may be possible to fix GCC to do the right thing with mmap(2) but it would not be simple to make ports use a fixed GCC on older releases and without needlessly building a ports compiler when the system one would otherwise be fine without PCH. With hat: portmgr
* Set rpath for libawt_xawt.so as we do for libawt.so and libawt_headless.so.Jung-uk Kim2015-04-013-49/+55
| | | | Optimize fontconfig.properties while I am here.
* Tidy up default fontconfig.properties.Jung-uk Kim2015-03-242-57/+61
|
* Catch up with font directory changes.Jung-uk Kim2015-03-242-16/+17
|
* Clean up patches again. No functional change.Jung-uk Kim2015-03-162-44/+2
|
* . Update to 8u40.Greg Lewis2015-03-155-1069/+344804
|
* - Revert all damages done in r372338 and r379049.Jung-uk Kim2015-02-277-115/+25
| | | | | | - Really fix non-release builds. [1] PR: 193009 [1]
* Properly use BLOCKING_IO_RETURN_INT() macro for NET_Accept().Jung-uk Kim2015-02-162-0/+17
|
* Remove redundant linker options added in r379049.Jung-uk Kim2015-02-161-2/+2
|
* . Fix the DEBUG build.Greg Lewis2015-02-152-6/+60
| | | | | PR: 193009 Submitted by: Brian Gardner (openjdk@getsnappy.com)
* . Attempt to fix the build on 8.x amd64 by telling the HotSpot compilationGreg Lewis2015-02-051-0/+1
| | | | | | not to treat warnings as errors. Reported by: mat@
* . Update to 8u31.Greg Lewis2015-02-024-603/+36135
|