summaryrefslogtreecommitdiff
path: root/java/openjdk7 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The output of tools like awk, date, sort, tr,... depends on the currentTijl Coosemans2017-01-181-3/+1
| | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=431796
* . Fix compilation with Clang 4.0Greg Lewis2017-01-152-1/+21
| | | | | | | | PR: 216016 Submitted by: jbeich@ Notes: svn path=/head/; revision=431605
* Add an X11 option to java/openjdk[78]Alan Somers2016-12-091-4/+18
| | | | | | | | | | | | | | | It defaults to on. Disabling it will remove X support from Java, and reduce X-related dependencies. PR: 210000 Reviewed by: brd Approved by: brd (ports) Approved by: glewis (maintainer timeout) Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6698 Notes: svn path=/head/; revision=428241
* Update cacerts file using the one included in 8u111 release.Alex Dupre2016-10-242-0/+1
| | | | | | | Notable change is the inclusion of Let's Encrypt CA. Notes: svn path=/head/; revision=424546
* ${RM} already has -f.Mathieu Arnold2016-10-211-2/+2
| | | | | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=424411
* Update to use Apache Ant 1.9.7.Jung-uk Kim2016-08-242-4/+4
| | | | Notes: svn path=/head/; revision=420766
* . Update to 7u111.Greg Lewis2016-08-203-1767/+2054
| | | | Notes: svn path=/head/; revision=420530
* More typosBaptiste Daroussin2016-07-311-1/+1
| | | | Notes: svn path=/head/; revision=419370
* Use the new @javavmBaptiste Daroussin2016-07-311-2/+1
| | | | Notes: svn path=/head/; revision=419367
* . Handle unsafe operations that access invalid memory more gracefully.Greg Lewis2016-06-132-0/+15
| | | | | | | | | | . Bump PORTREVISION for this fix. PR: 209599 Submitted by: Andrew Smith <iamasmith.home@gmail.com> Notes: svn path=/head/; revision=416828
* . Update to 7u101Greg Lewis2016-05-213-2016/+1054
| | | | Notes: svn path=/head/; revision=415601
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-10/+10
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412347
* 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) Notes: svn path=/head/; revision=410825
* . Update to 7u95.Greg Lewis2016-02-033-882/+1923
| | | | Notes: svn path=/head/; revision=407937
* . Update to 7u91Greg Lewis2015-12-142-4/+9
| | | | | | | PR: 204268 Notes: svn path=/head/; revision=403706
* . Move the large patches which contain the changes between updates of theGreg Lewis2015-09-0910-294686/+25
| | | | | | | | | JDK to being fetched remotely using PATCHFILES and PATCH_SITES. This cuts the size taken by openjdk7 in the ports repository. Notes: svn path=/head/; revision=396460
* Remove UNIQUENAME and LATEST_LINK.Mathieu Arnold2015-08-171-2/+0
| | | | | | | | | | | | | | | | | | | | UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336 Notes: svn path=/head/; revision=394508
* . Give openjdk7-jre a unique LATEST_LINK value.Greg Lewis2015-07-031-1/+1
| | | | Notes: svn path=/head/; revision=391255
* Add a slave port to create JRE-only package for java/openjdk7.Jung-uk Kim2015-07-021-10/+36
| | | | Notes: svn path=/head/; revision=391181
* Use sysctl(3) instead of procfs(5) when we need executable path from PID.Jung-uk Kim2015-07-023-0/+122
| | | | | | | MFH: 2015Q3 Notes: svn path=/head/; revision=391178
* Remove $FreeBSD$ from patches files in categories a-j.Mathieu Arnold2015-05-221-2/+0
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=387021
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=386312
* . Update to 7u80.Greg Lewis2015-04-283-867/+110288
| | | | Notes: svn path=/head/; revision=384884
* Fix build with GCC with recent head kernel by disabling PCH for GCC.Bryan Drewery2015-04-151-1/+6
| | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=384056
* 6 ports categories: Remove $PTHREAD_LIBSJohn Marino2015-03-241-1/+1
| | | | | | | | | Categories: cad, devel, java, x11-fm, biology, deskutils approved by: PTHREAD blanket Notes: svn path=/head/; revision=382111
* Properly use BLOCKING_IO_RETURN_INT() macro for NET_Accept().Jung-uk Kim2015-02-162-0/+17
| | | | Notes: svn path=/head/; revision=379126
* . Update to 7u76Greg Lewis2015-02-0211-136800/+233347
| | | | | | | | . Adopt a patchset strategy similar to the openjdk8 port, which keeps the patch files smaller and makes the BSD differences clearer. Notes: svn path=/head/; revision=378294
* . Fix window maximisation under Gnome 3.Greg Lewis2015-02-021-0/+11
| | | | | | | | PR: 196741 Submitted by: huanghwh@gmail.com Notes: svn path=/head/; revision=378291
* Switch some dependencies from a directory name or a file generated by ↵Antoine Brodin2015-01-241-2/+2
| | | | | | | | | pkg-install to a package name, as the former can't be attributed to a package Notes: svn path=/head/; revision=377795
* Allow building 10 years after 31 decembre 2004Antoine Brodin2014-12-301-0/+11
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=375863
* Turn off -Werror for Clang 3.5+ and revert r374780 for now.Jung-uk Kim2014-12-161-270/+0
| | | | Notes: svn path=/head/; revision=374824
* Add an upstream patch to remove adlc's unused class FileBuffRegion.Jung-uk Kim2014-12-161-0/+270
| | | | | | | | | | | https://bugs.openjdk.java.net/browse/JDK-8041620 Note this is an attempt to fix build with upcoming Clang 3.5. Obtained from: jdk9 Notes: svn path=/head/; revision=374780
* Fix symbol mapfile for libvm.so. Note FreeBSD still uses GNU nm(1).Jung-uk Kim2014-11-192-17/+36
| | | | Notes: svn path=/head/; revision=372824
* Cleanup plistAntoine Brodin2014-11-141-2/+2
| | | | Notes: svn path=/head/; revision=372560
* . Update to 7u71.Greg Lewis2014-11-013-2138/+13209
| | | | Notes: svn path=/head/; revision=372038
* The MAP_NORESERVE flag to mmap() has never been implemented in FreeBSD andJohn Baldwin2014-10-181-3/+30
| | | | | | | | | | | | is being removed. No portrev bump needed since the kernel will continue to accept this flag for old binaries even after support for it in new binaries is removed. PR: 193961 Approved by: portmgr (antoine) Notes: svn path=/head/; revision=371117
* . Update to 7u65.Greg Lewis2014-07-163-2239/+9703
| | | | Notes: svn path=/head/; revision=362066
* . Fix unpack200 on i386/amd64 by only swapping bytes when this is actuallyGreg Lewis2014-07-123-7/+30
| | | | | | | | | | | | | | | a big endian machine. [1] . Bump PORTREVISION for the fix. . Speed up the build on multi-core machines using the MAKE_JOBS trickery from the openjdk8 Makefile. . Enlist openjdk7 users as testers of ant 1.9.4. . Add a dependency on fontconfig. PR: 191735 [1] Requested by: Michael Schmiedgen <schmiedgen@takwa.de> [2] Notes: svn path=/head/; revision=361627
* Implement current and signal methods for sun.nio.ch.NativeThread. Note thisJung-uk Kim2014-06-272-0/+52
| | | | | | | | | | | 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> Notes: svn path=/head/; revision=359595
* . Add a pkg-message explaining that procfs and fdescfs may be required.Greg Lewis2014-06-101-0/+16
| | | | | | | | PR: 177779 Submitted by: navymaker@rambler-co.ru Notes: svn path=/head/; revision=357236
* Update to 7u60.Greg Lewis2014-06-074-2436/+54126
| | | | Notes: svn path=/head/; revision=356958
* - Fix printing services. When CUPS is used, ${LOCALBASE}/bin/lpr must beJung-uk Kim2014-05-214-2/+94
| | | | | | | | | | | | | | | | | 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). [1] - Use /proc/curproc/file to find its executable path if available. It fixes java/icedtea-web, for example. [2] PR: ports/178856 [1] PR: java/189905 [2] Notes: svn path=/head/; revision=354761
* . Handle spaces in CC, CXX or HOST_CC [1]Greg Lewis2014-05-091-3/+3
| | | | | | | | | | | | . Convert a space to a tab [2] . Pet portlint by changing /nonexistent to ${NONEXISTENT} [2] PR: 189385 [2] Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> [1] Takefu <takefu@airport.fm> [2] Notes: svn path=/head/; revision=353379
* Include bundled header files before others. For example, this fixes buildJung-uk Kim2014-04-301-0/+28
| | | | | | | | | | | | with conflicting header files from graphics/jpeg. Note OTHER_INCLUDES or OTHER_CPPFLAGS may be used instead. However, I think this is the least intrusive change. Also, note java/openjdk6 already has a similar fix and java/openjdk8 does not need it. Tested by: Jonathan Chen (jonc at chen dot org dot nz) Notes: svn path=/head/; revision=352670
* . Fix spawning external processes from the JVM. [1]Greg Lewis2014-04-295-91/+162
| | | | | | | | | | . Remove some patches that have been merged to the upstream repository. PR: 188979, 188980 [1] Obtained from: Kurt Miller (via the upstream bsd-port repo) [1] Notes: svn path=/head/; revision=352568
* Refine the patch again. No functional change.Jung-uk Kim2014-04-211-4/+3
| | | | Notes: svn path=/head/; revision=351730
* Refine the previous patch. No functional change.Jung-uk Kim2014-04-211-2/+3
| | | | Notes: svn path=/head/; revision=351715
* Fix build with clang.Jung-uk Kim2014-04-212-0/+35
| | | | Notes: svn path=/head/; revision=351714
* . Update to 7u55.Greg Lewis2014-04-204-27191/+17530
| | | | | | | | | | . Use version 1.9.3 of ant [1] . Don't insist on GCC since compilation with clang now works [2]. Obtained from: jkim@'s openjdk7 redport repo ([1], [2]) Notes: svn path=/head/; revision=351655
* . Update to the cacerts file included in the latest Linux distribution (7u55).Greg Lewis2014-04-201-0/+0
| | | | Notes: svn path=/head/; revision=351654