aboutsummaryrefslogtreecommitdiff
path: root/java/openjdk6/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* MFH: r420883Jung-uk Kim2016-08-261-2/+2
| | | | | | | | | Update to b40. Approved by: ports-secteam (junovitch) Notes: svn path=/branches/2016Q3/; revision=420936
* Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled ↵Dmitry Marakasov2016-05-231-1/+1
| | | | | | | | | by default anyway and don't need to be listed Approved by: portmgr blanket Notes: svn path=/head/; revision=415742
* Update to b39.Jung-uk Kim2016-05-061-2/+2
| | | | | | | MFH: 2016Q2 Notes: svn path=/head/; revision=414705
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-11/+11
| | | | | | | | 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 b38.Jung-uk Kim2016-01-251-3/+3
| | | | | | | | | - Use Apache Ant 1.9.6 to build. MFH: 2016Q1 Notes: svn path=/head/; revision=407245
* The old URL for jtreg disappeared.Jung-uk Kim2015-11-191-4/+3
| | | | | | | | Noticed by: ohauer MFH: 2015Q4 Notes: svn path=/head/; revision=401961
* Update to b37.Jung-uk Kim2015-11-171-2/+2
| | | | | | | MFH: 2015Q4 Notes: svn path=/head/; revision=401795
* - Update to b36.Jung-uk Kim2015-07-301-3/+2
| | | | | | | | | - Fix default core file location in crash report. MFH: 2015Q3 Notes: svn path=/head/; revision=393281
* Use sysctl(3) instead of procfs(5) when we need executable path from PID.Jung-uk Kim2015-07-021-0/+1
| | | | | | | MFH: 2015Q3 Notes: svn path=/head/; revision=391178
* - Update to b35.Jung-uk Kim2015-06-301-3/+2
| | | | | | | - Optimize fontconfig.properties. Notes: svn path=/head/; revision=390990
* Fix build without precompiled headers and apply r384056 to java/openjdk6.Jung-uk Kim2015-05-201-7/+12
| | | | | | | | | | http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7154517 Obtained from: OpenJDK project [1] MFH: 2015Q2 Notes: svn path=/head/; revision=386893
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-3/+2
| | | | | | | | | | | | | | | | | | | | | | - 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
* Tidy up default fontconfig.properties.Jung-uk Kim2015-03-241-1/+1
| | | | Notes: svn path=/head/; revision=382173
* Catch up with font directory changes.Jung-uk Kim2015-03-241-1/+1
| | | | Notes: svn path=/head/; revision=382061
* Switch some dependencies from a directory name or a file generated by ↵Antoine Brodin2015-01-241-3/+3
| | | | | | | | | pkg-install to a package name, as the former can't be attributed to a package Notes: svn path=/head/; revision=377795
* Update to b34.Jung-uk Kim2015-01-241-10/+7
| | | | Notes: svn path=/head/; revision=377775
* Turn off -Werror for Clang 3.5+ and revert r374780 for now.Jung-uk Kim2014-12-161-0/+3
| | | | Notes: svn path=/head/; revision=374824
* - Update to b33.Jung-uk Kim2014-10-171-17/+5
| | | | | | | - Update TimeZoneNames to tzdata2014g. Notes: svn path=/head/; revision=371027
* - Update to b32.Jung-uk Kim2014-07-171-4/+4
| | | | | | | | - Update TimeZoneNames to tzdata2014b. - Enlist openjdk6 users as testers of ant 1.9.4. Notes: svn path=/head/; revision=362118
* Implement current and signal methods for sun.nio.ch.NativeThread. Note thisJung-uk Kim2014-06-271-1/+1
| | | | | | | | | | | 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
* USE_XZ --> USES=tar:xz.Dmitry Sivachenko2014-06-101-2/+1
| | | | Notes: svn path=/head/; revision=357294
* Mark it as unsafe for parallel build.Jung-uk Kim2014-06-061-3/+2
| | | | Notes: svn path=/head/; revision=356867
* Fix printing services. When CUPS is used, ${LOCALBASE}/bin/lpr must be usedJung-uk Kim2014-05-211-2/+3
| | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=354759
* Fix couple of mis-merges.Jung-uk Kim2014-04-171-1/+1
| | | | Notes: svn path=/head/; revision=351489
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=351411
* Update to b31.Jung-uk Kim2014-04-161-3/+3
| | | | Notes: svn path=/head/; revision=351372
* Add an upstream patch to fix yet another fallout from HotSpot 23 merge.Jung-uk Kim2014-03-121-1/+1
| | | | | | | | https://java.net/jira/browse/OPENJDK6-29 http://hg.openjdk.java.net/jdk6/jdk6/jdk/rev/04e4c3ec6516 Notes: svn path=/head/; revision=348006
* Fix missing symbols after re-appearance of converters/libiconv on 10+. ThisJung-uk Kim2014-03-111-11/+10
| | | | | | | | | 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. Notes: svn path=/head/; revision=347893
* - Sync. extremely outdated sun.util.resources.TimeZoneNames to the latestJung-uk Kim2014-03-031-7/+5
| | | | | | | | | 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. Notes: svn path=/head/; revision=346976
* - Update to b30.Jung-uk Kim2014-01-231-4/+11
| | | | | | | | - Implement sigset(2) for libjsig. All supported FreeBSD releases have it. - Turn UseMembar back on by default until we find better solution. Notes: svn path=/head/; revision=340870
* Build with Apache Ant 1.9.3.Jung-uk Kim2014-01-081-1/+1
| | | | Notes: svn path=/head/; revision=339177
* Revert lang/openjdk6 to b28.Mathieu Arnold2014-01-041-12/+5
| | | | | | | With hat: portmgr-lurker Notes: svn path=/head/; revision=338646
* Part 2 at removing now useless FETCH_ARGS redifitionBaptiste Daroussin2014-01-031-1/+0
| | | | Notes: svn path=/head/; revision=338513
* Mark as forbidden, the port is now trigering a nasty FreeBSD bug!Baptiste Daroussin2013-12-271-0/+2
| | | | | | | A fix is being investigated Notes: svn path=/head/; revision=337714
* - Update to b29.Jung-uk Kim2013-12-241-4/+10
| | | | | | | | | | - Tidy up signal handler. - Disable a Linux-specific hack. - Do not create stack guard for Java threads. - Implement thread CPU time. Notes: svn path=/head/; revision=337396
* If /var/db/zoneinfo exists, use the file to determine timezone rather thanJung-uk Kim2013-12-111-1/+1
| | | | | | | | | 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. Notes: svn path=/head/; revision=336136
* Add multiple security patches and improvements from IcedTea6.Jung-uk Kim2013-12-041-1/+1
| | | | | | | | | http://icedtea.classpath.org/hg/icedtea6/rev/e98b0ef70b26 Obtained from: IcedTea Project Notes: svn path=/head/; revision=335646
* - Add throw() to all user-defined operator new()s within HotSpot becauseJung-uk Kim2013-11-091-2/+2
| | | | | | | | | | | | 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). Notes: svn path=/head/; revision=333271
* - Do not crash when unsupported options are specified. [1]Jung-uk Kim2013-11-051-1/+1
| | | | | | | | | - Micro-optimize and tidy up some patches. PR: java/183656 [1] Notes: svn path=/head/; revision=332909
* - Turn off UseMembar by default. This workaround is not necessary any more.Jung-uk Kim2013-10-251-1/+1
| | | | | | | | - Add few minor patches related to thread ID that were mis-merged. - Add couple of minor HotSpot patches from upstream while I am here. Notes: svn path=/head/; revision=331642
* Allow overriding linker flags for standard C++ libraries and zlib.Jung-uk Kim2013-10-221-2/+11
| | | | Notes: svn path=/head/; revision=331315
* Allow adding extra patches from slave ports.Jung-uk Kim2013-10-161-1/+1
| | | | Notes: svn path=/head/; revision=330538
* Build with Apache Ant 1.9.2.Jung-uk Kim2013-10-141-1/+1
| | | | Notes: svn path=/head/; revision=330343
* Simplify compiler detection. COMPILER_TYPE must be defined since r330336.Jung-uk Kim2013-10-141-1/+1
| | | | Notes: svn path=/head/; revision=330338
* - Do not allow selecting both DEBUG and FASTDEBUG options. [1]Jung-uk Kim2013-10-121-8/+13
| | | | | | | | | | | - 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] Notes: svn path=/head/; revision=330107
* - Fix few mis-merges against HotSpot 23 and tie up some loose ends.Jung-uk Kim2013-10-101-39/+26
| | | | | | | | - Fix build with libiconv. This problem was introduced in r330018. - Update CA list to Oracle Java 7u40. An expired CA was removed. Notes: svn path=/head/; revision=330035
* - Remove redundant bsd.port.pre.mk.Jung-uk Kim2013-10-101-4/+2
| | | | | | | | | - Convert LIB_DEPENDS to new formats. Submitted by: bar Notes: svn path=/head/; revision=330018
* Update to Build b28.Jung-uk Kim2013-10-091-52/+46
| | | | Notes: svn path=/head/; revision=329926
* Fix test option.Jung-uk Kim2013-10-081-2/+3
| | | | Notes: svn path=/head/; revision=329761