/graphics/fbm/

>
aboutsummaryrefslogtreecommitdiffstats
path: root/java
Commit message (Collapse)AuthorAgeFilesLines
* Update to 2017.2.4.vanilla2017-10-143-75/+310
| | | | | Submitted by: 222827 Reported by: maintainer
* Remove WANT_GNOME and HAVE_GNOME.mat2017-10-122-3/+0
| | | | | | Approved by: bapt kwm Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12643
* For ports that are explicitly enabled on armv6, also enable themlinimon2017-10-111-1/+2
| | | | | | | on armv7. This has not been tested with an -exp run but should "do no harm". PR: 221894 (partial)
* java/intellij: Update to version 2017.2.5.bsam2017-10-103-6/+6
|
* Update to 1.2.2.vanilla2017-10-062-4/+4
|
* New port: java/openjfx8-scenebuildertobik2017-10-055-0/+54
| | | | | | | | | | | | | | | JavaFX Scene Builder provides a visual layout environment that lets you quickly design user interfaces for JavaFX applications without needing to write any code. It allows simple drag-and-drop positioning of GUI components onto a JavaFX scene. As you build the layout of your UI, the FXML code for the layout is automatically generated. It provides a simple yet intuitive interface that can help even non-programmers to quickly prototype interactive applications that connect GUI components to the application logic. WWW: http://openjdk.java.net/projects/openjfx/
* Make sure that java/openjfx8-devel can load libavcodec.so.57 andtobik2017-10-042-0/+12
| | | | unlock support for more media formats.
* java/openjfx8-devel: Update to 8u172-b00tobik2017-10-0436-120/+1782
| | | | | | | | | | | | | | | | - Move to the regular OpenJFX 8 repository [1], add all *BSD specific patches to the port, and stop using the repository at [2]. This should make port contributions and updates a lot easier going forward. - Bump PORTEPOCH and start using version numbers based on the tags from [1] - Prepare the port for supporting multiple audio backend options - Fix PREFIX/LOCALBASE confusion and get all Java dependencies from LOCALBASE and not from PREFIX - Respect CC and CXX during the WebKit build. Clang in FreeBSD 10.3 segfaults while building it now, so make sure we use Clang from devel/llvm40 via compiler:c++14-lang instead. [1] http://hg.openjdk.java.net/openjfx/8u/rt/ [2] https://bitbucket.org/tobik/openjfx-rt
* Clean up X11 option handling. No functional change.jkim2017-10-041-24/+14
|
* Fix java/openjdk8-jre build after r444448.jkim2017-10-041-3/+3
| | | | PR: 222750
* Update arm distfiles to sync. with amd64 and i386.jkim2017-10-034-66/+12
|
* Unbreak fetch. This is sort of an exception to the MASTER_SITE_SUBDIRtruckman2017-09-301-0/+1
| | | | for APACHE_COMMONS_SOURCE.
* New port jakarta-commons-lang3.truckman2017-09-294-0/+54
| | | | | | | | | | | | | | This is a repo-copy of jakarta-commons-lang, updated to revision 3.4. It can co-exist with jakarta-commons-lang. The newest version upstream is actually 3.6, but support for using apache-ant to build was dropped between 3.4 and 3.5. Apache OpenOffice 4.2.0 will require 3.3+. Add NO_ARCH. Modernize by using option helpers. Get rid of the JDK_API!= stuff, which looks like it no longer did anything useful.
* Synchronize COMMENT with java/bootstrap-openjdk8.jkim2017-09-291-1/+1
|
* Set DEPRECATED and EXPIRATION_DATE.jkim2017-09-291-3/+5
| | | | | Use java/bootstrap-openjdk6 to bootstrap java/openjdk6 and java/openjdk7 and use java/bootstrap-openjdk8 to bootstrap java/openjdk8.
* Use java/bootstrap-openjdk6 to bootstrap.jkim2017-09-291-3/+3
|
* Use java/bootstrap-openjdk8 to bootstrap.jkim2017-09-291-25/+17
|
* Add bootstrap JDK for OpenJDK8.jkim2017-09-2910-0/+280
| | | | | | PR: 210283 PR: 221897 PR: 222460
* Make sure to disable IcedTea patches when we build distfiles next time.jkim2017-09-291-1/+1
|
* Add a missing runtime dependency.jkim2017-09-271-1/+2
|
* Use java/bootstrap-openjdk6 to bootstrap.jkim2017-09-271-3/+3
|
* Add bootstrap JDK for OpenJDK6.jkim2017-09-278-0/+226
| | | | java/bootstrap-openjdk will be used for OpenJDK7 and OpenJDK8 later.
* devel/icu: update to 59.1jbeich2017-09-251-1/+1
| | | | | | | | | - Temporarily keep C++98 working in consumers for Clang's default -std= Changes: http://site.icu-project.org/download/59 PR: 218788 Submitted by: takefu@airport.fm, dcarmich@dcarmichael.net (early version) Exp-run by: antoine
* Reset maintainership on Dominic Fandrey's ports.adamw2017-09-242-2/+2
| | | | With hat: portmgr
* java/openjfx8-devel: Unbreak build with ICU 59.1tobik2017-09-222-1/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | modules/web/src/main/native/Source/JavaScriptCore/API/JSStringRef.cpp:40:13: error: no matching function for call to 'create' return &OpaqueJSString::create(chars, numChars).leakRef(); ^~~~~~~~~~~~~~~~~~~~~~ modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:48:32: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const LChar *' (aka 'const unsigned char *') for 1st argument static Ref<OpaqueJSString> create(const LChar* characters, unsigned length) ^ modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:53:32: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const UChar *' (aka 'const char16_t *') for 1st argument static Ref<OpaqueJSString> create(const UChar* characters, unsigned length) ^ modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:43:32: note: candidate function not viable: requires 0 arguments, but 2 were provided static Ref<OpaqueJSString> create() ^ modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:58:53: note: candidate function not viable: requires 1 argument, but 2 were provided JS_EXPORT_PRIVATE static RefPtr<OpaqueJSString> create(const String&); ^ modules/web/src/main/native/Source/JavaScriptCore/API/JSStringRef.cpp:65:35: error: no matching function for call to 'createWithoutCopying' return OpaqueJSString::create(StringImpl::createWithoutCopying(chars, numChars)).leakRef(); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ modules/web/src/main/native/Source/WTF/wtf/text/StringImpl.h:385:50: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const UChar *' (aka 'const char16_t *') for 1st argument WTF_EXPORT_STRING_API static Ref<StringImpl> createWithoutCopying(const UChar* characters, unsigned length); ^ modules/web/src/main/native/Source/WTF/wtf/text/StringImpl.h:386:50: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const LChar *' (aka 'const unsigned char *') for 1st argument WTF_EXPORT_STRING_API static Ref<StringImpl> createWithoutCopying(const LChar* characters, unsigned length); ^ modules/web/src/main/native/Source/JavaScriptCore/API/JSStringRef.cpp:90:12: error: cannot initialize return object of type 'const JSChar *' (aka 'const unsigned short *') with an rvalue of type 'const UChar *' (aka 'const char16_t *') return string->characters(); ^~~~~~~~~~~~~~~~~~~~ modules/web/src/main/native/Source/WTF/wtf/unicode/java/UnicodeJava.h:21:18: error: typedef redefinition with different types ('uint16_t' (aka 'unsigned short') vs 'char16_t') typedef uint16_t UChar; ^ /usr/local/include/unicode/umachine.h:347:22: note: previous definition is here typedef char16_t UChar; PR: 218788, 222270 Submitted by: jbeich Reviewed by: jbeich Obtained from: WebKit (rebased)
* java/intellij: Update to version 2017.2.4.bsam2017-09-143-14/+14
|
* Bump PORTREVISION for ports depending on the canonical version of GCCgerald2017-09-114-4/+4
| | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
* . Update to 7u151.glewis2017-09-094-782/+793
|
* Fix available memory calculation on head after r309017.jkim2017-09-072-6/+26
| | | | | Note PORTREVISION is not bumped because it only affects a kernel without "options COMPAT_FREEBSD11".
* Fix available memory calculation on head after r309017.jkim2017-09-071-47/+51
| | | | | Note PORTREVISION is not bumped because it only affects a kernel without "options COMPAT_FREEBSD11".
* . Update to b44.glewis2017-09-032-3/+6
|
* The src tree is splitting 32-bit arm support into 'armv6' and the newlinimon2017-09-011-7/+9
| | | | | | | | 'armv7'. This patch adds armv7 support. It should provide no regression on any existing architecture. PR: 221896 Approved by: maintainer
* java/intellij: Update to version 2017.2.3.bsam2017-08-313-14/+14
|
* . Update to 8u144.glewis2017-08-286-729/+804
|
* Require at least Gradle 4.0 for building java/openjfx8-develtobik2017-08-261-1/+1
| | | | | | This will prevent build problems when there is an older Gradle version installed in the build environment. Using older Gradle versions is not supported and leads to hard to decode build failures.
* java/openjfx8-develtobik2017-08-253-0/+27
| | | | | | | - Enable OpenGL Prism backend by default on FreeBSD too - Add missing platform check. FreeBSD is "a form of Linux or Solaris" too. Submitted by: Gareth Wyn Roberts <g.w.roberts@glyndwr.ac.uk> (via mail)
* java/intellij-pycharm -> devel/pycharm-ce: Disconnect the former and connect ↵bsam2017-08-241-1/+0
| | | | the latter.
* java/intellij-pycharm -> devel/pycharm-ce: Rename to reflect upstream andbsam2017-08-247-2328/+0
| | | | use a more appropriate origin (devel for development tools, IDEs).
* Update to version 1.58eugen2017-08-232-4/+4
| | | | | | | | | | | | | | | The main focus in this release is on features. Considerable work has been done on improving the TLS/DTLS API and the BCJSSE. Support for ECGOST3410-2012 has been added for both signing and key agreement/exchange. The DSTU-7564 digest and DSTU-7624 (Kalyna) cipher have also been added. Support for XMSS and XMSS^MT has been added to the BCPQC provider and certificate support for the BCPQC algorithms is much improved. Further details on other additions and bug fixes can be found in the release notes at: https://www.bouncycastle.org/releasenotes.html
* java/intellij: Update to version 2017.2.2.bsam2017-08-193-15/+17
|
* java/intellij-pycharm: Update to version 2017.2.1.bsam2017-08-142-4/+4
|
* Update to 8u144.jkim2017-08-114-10/+10
| | | | MFH: 2017Q3
* Fixup GH_TAGNAME usage, and minor cleanup.mat2017-08-102-5/+5
| | | | Sponsored by: Absolight
* Update to 1.5.6 release.ale2017-08-093-9/+11
| | | | | PR: 220592 Submitted by: Gerrit Beine <mail+freebsd@gerritbeine.de>
* java/intellij: Update to version 2017.2.1.bsam2017-08-033-13/+13
|
* java/intellij-pycharm: Update to version 2017.2.bsam2017-07-293-12/+157
|
* java/intellij: Update to version 2017.2.bsam2017-07-263-420/+106
|
* java/openjfx8-devel: Update to a more recent snapshottobik2017-07-238-68/+108
| | | | | | | | | | | - Add new default options MEDIA and WEBKIT to enable building of the media and web modules - Take back maintainership Running e.g. AsciidocFX on FreeBSD should be possible now. PR: 218014 Reported by: Dr. Jochen Raßler <jochen.rassler@gmail.com>, mr (via mail)
* java/intellij-pycharm: Update to version 2017.1.5.bsam2017-07-183-5/+6
|
* Fix build of java/openjfx8-devel with Gradle 4.0tobik2017-07-131-2/+6
| | | | | | PR: 220322 Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11565
* Remove an unnecessary runtime dependency for NPAPI plugin support.jkim2017-07-121-2/+3
| | | | | PR: 220648 MFH: 2017Q3
* Add missing Pango symbolstobik2017-07-112-1/+12
| | | | | | | | | | | | | | | | | | | | | Currently Pango functions are hidden behind __linux__ and not compiled in as part of the build. Not all JavaFX applications are affected by this, but applications that do advanced text layout that require Pango internally cause an UnsatisfiedLinkError at runtime. Caused by: java.lang.UnsatisfiedLinkError: com.sun.javafx.font.freetype.OSPango.pango_ft2_font_map_new()J at com.sun.javafx.font.freetype.OSPango.pango_ft2_font_map_new(Native Method) at com.sun.javafx.font.freetype.PangoGlyphLayout.layout(PangoGlyphLayout.java:88) at com.sun.javafx.text.PrismTextLayout.shape(PrismTextLayout.java:834) at com.sun.javafx.text.PrismTextLayout.layout(PrismTextLayout.java:1064) at com.sun.javafx.text.PrismTextLayout.ensureLayout(PrismTextLayout.java:223) ... PR: 220566 Submitted by: Stefan Ehmann <shoesoft@gmx.net> Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11545 MFH: 2017Q3
* Fix build of java/bouncycastle15 on armv6:eugen2017-07-112-0/+42
| | | | | | | | | | | | | remove fork="true" in javac and fork="yes" in junit tasks (ant/bc+-build.xml) Original report: If java/bouncycastle15 is build on armv6 with openjdk18, the build stops with This command is not for general use and should only be run as the result of a call to ProcessBuilder.start() or Runtime.exec() in a java application PR: 220612 Submitted by: Gerrit Beine <mail+freebsd@gerritbeine.de> (based on) Approved by: az (mentor)
* java/intellij: Update to 2017.1.5.bsam2017-07-102-5/+5
|
* Add a new ALSA default option to make it possible to disable ALSAtobik2017-06-271-5/+10
| | | | | | | | | support and build the JDK without an ALSA dependency PR: 219125 Reviewed by: jbeich Approved by: mat (mentor), java (maintainer timeout, 6+ weeks) Differential Revision: https://reviews.freebsd.org/D11331
* Scrub mention of armv6hf from ARCHS. It was never in a released version.linimon2017-06-272-2/+2
| | | | | | | While here, sort ARCHS and pet portlint. Reviewed by: imp Approved by: portmgr (tier-2 blanket)
* Fix WWWsunpoet2017-06-271-1/+1
| | | | Approved by: portmgr (blanket)
* Fix WWWsunpoet2017-06-271-1/+1
| | | | Approved by: portmgr (blanket)
* qa: add check for NO_ARCHdbn2017-06-191-0/+2
| | | | | | | | | | | | | | | | | | If NO_ARCH is set then check that no FreeBSD elf(5) files are in $STAGEDIR. If an elf(5) file is bundles as part of the package, but is not meant to be run directly (i.e. the elf(5) file is a payload, and not compiled) then those files can be added to NO_ARCH_IGNORE to avoid the check from failing, Changes to ports: - Ports that have NO_ARCH set, but actually compile files have had NO_ARCH removed. - Ports that have elf(5) payloads have had those files added to NO_ARCH_IGNORE. - R-cran ports that do not set USES=cran:compiles have NO_ARCH set, PR: 218976 Reviewed by: antoine, mat Approved by: portmgr
* java/intellij-pycharm: Update to version 2017.1.4bsam2017-06-142-4/+4
|
* java/intellij: Update to version 2017.1.4bsam2017-06-072-5/+5
|
* java/intellij-pycharm: Update to version 2017.1.3bsam2017-05-312-4/+4
|
* Fix compilation with Clang 4.0.jkim2017-05-311-0/+11
|
* Fix compilation with Clang 4.0.jkim2017-05-311-0/+11
|
* . Update to b43.glewis2017-05-302-6/+13
|
* . Update to 7u141.glewis2017-05-303-927/+808
|
* . Update to 7u131.glewis2017-05-295-2692/+2533
|
* . Update to the 8u131 docs.glewis2017-05-272-4/+4
|
* Mark some ports failing on armv6, for errors classified as "???".linimon2017-05-273-0/+6
| | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* Mark some ports failing on armv6. In cases where the error messagelinimon2017-05-263-2/+8
| | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* java/intellij: Update to version 2017.1.3bsam2017-05-253-6/+10
|
* Revision bump of all ports with USE_GL after consolidation of mesa-libsrezny2017-05-234-3/+4
| | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845
* Update java/bouncycastle15 upto 1.57eugen2017-05-212-4/+4
|
* Mark some ports failing on power64. In cases where the error messagelinimon2017-05-211-0/+1
| | | | | | | | | was a stub, provide a real one. While here, pet portlint. Reported by: swills Approved by: portmgr (tier-2 blanket)
* Mark some ports failing on power64. In cases where the error messagelinimon2017-05-141-0/+2
| | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* java/intellij: Update Idea 171.4249.32 -> 171.4249.39bsam2017-05-112-4/+5
|
* Pass maintainership to submittersunpoet2017-05-101-1/+1
| | | | | PR: 219180 Submitted by: Jov <amutu@amutu.com>
* java/intellij-pycharm: Update to version 2017.1.2.bsam2017-05-053-4/+6
| | | | | PR: 219083 Submitted by: Christian Sturm <reezer@reezer.org>
* Provide error messages for some ports failing on aarch64, and, in alinimon2017-05-021-0/+3
| | | | | | | | few cases, other tier-2 archs. While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* Chase ffmpeg 3.3 update (ABI changes)riggs2017-04-251-0/+1
| | | | | PR: 218658 Submitted by: riggs
* java/intellij: Update to version 2017.1.2.bsam2017-04-233-13/+14
|
* Update to 8u131.glewis2017-04-196-1469/+1094
|
* . Update to 8u131glewis2017-04-192-4/+4
|
* . Update to 8u131.glewis2017-04-192-6/+6
|
* java/intellij: Update to version 2017.1.1, use no-jdk distfile.bsam2017-04-143-15/+15
|
* java/intellij-pycharm: Update to version 2017.1.1.bsam2017-04-143-132/+79
|
* Merge fixes for JDK-6900441 and JDK-8029453 from Linux sources.jkim2017-04-143-1/+303
|
* Merge fix for JDK-6900441 from Linux source.jkim2017-04-143-0/+309
| | | | | | | | | | | | | | http://bugs.java.com/view_bug.do?bug_id=6900441 While we are at it, merge fix for JDK-8029453. http://bugs.java.com/view_bug.do?bug_id=8029453 Note JDK-8029453 only affects us when "-XX:WorkAroundNPTLTimedWaitHang=0" is forcibly set. Reported by: 张泽鹏 (redraiment at gmail dot com) Tested by: 张泽鹏 (redraiment at gmail dot com)
* Update to 5.3.3 release.ale2017-04-132-4/+4
|
* java/java-checkstyle: Update version 7.0=>7.6bofh2017-04-122-4/+4
|
* - Remove obsolete OSVERSION conditionamdmi32017-04-121-5/+1
| | | | Approved by: portmgr blanket
* Make defining both PORTVERSION and DISTVERSION a DEV_ERROR.mat2017-04-111-6/+6
| | | | | | | | | | | | | | | | | There are two cases: - The upstream versionning is compatible with our versionning, or using DISTVERSION's magic leads to a compatible PORTVERSION, use DISTVERSION. If it is possible to use DISTVERSIONPREFIX and DISTVERSIONSUFFIX to make it compatible, use them. - The upstream versionning is not compatible with our versionning, and DISTVERSION's magic does not lead to a correct PORTVERSION, then set PORTVERSION to the equivalent of our versionning, and set DISTNAME. It is possible to use a third variable where you store upstream's version and use it to compute PORTVERSION and/or DISTNAME, like the dns/bind9* ports do. Sponsored by: Absolight
* new port: java/lightweight-java-profilerjmd2017-04-029-0/+158
| | | | | | | | A port of the lightweight-java-profiler (ljp). ljp acts as a bare-bones agentlib to produce profiling stacks that can be digested, e.g., by Brendan Gregg's flamegraph scripts. Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10194
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andgerald2017-04-013-3/+3
| | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
* java/intellij-pycharm: Update to version 2017.1.bsam2017-03-283-11/+974
|
* java/intellij: Update to version 2017.1.bsam2017-03-283-34/+56
|
* java/intellij-pycharm: Update to version 2016.3.3.bsam2017-03-272-4/+4
|
* . Update to 2017b.glewis2017-03-273-4/+5
|
* java/intellij: Update to version 2016.3.5.bsam2017-03-152-5/+5
|
* Update to 1.4.vanilla2017-03-142-3/+6
|
* Switch MAINTAINER to my new account for my ports.eugen2017-03-121-1/+1
| | | | | | | | | Reviewed by: az M devel/py-application/Makefile M devel/py-xcaplib/Makefile M java/bouncycastle15/Makefile M net/py-msrplib/Makefile
* . Update to 2017a.glewis2017-03-022-4/+4
|
* Remove expired ports:rene2017-02-287-102/+0
| | | | | | | | | | | | | | | 2017-02-28 textproc/rubygem-nokogiri14: Use textproc/rubygem-nokogiri instead 2017-02-28 textproc/rubygem-liquid2: Use textproc/rubygem-liquid instead 2017-02-28 www/rubygem-rack14: Use www/rubygem-rack or www/rubygem-rack16 instead 2017-02-28 www/rubygem-mechanize26: Use www/rubygem-mechanize instead 2017-02-28 www/rubygem-net-http-persistent25: Use www/rubygem-net-http-persistent2 instead 2017-02-28 devel/rubygem-builder32: Use devel/rubygem-builder instead 2017-02-28 www/rubygem-net-http-digest_auth11: Use www/rubygem-net-http-digest_auth instead 2017-02-28 devel/rubygem-bson1: Use devel/rubygem-bson instead 2017-02-28 devel/rubygem-minitest4: Use devel/rubygem-minitest instead 2017-02-28 java/jdk16-doc: Should have been removed with linux-sun-jdk16 (2014-05-11) 2017-02-28 java/jdk7-doc: Should have been removed with linux-sun-jdk17 (2016-04-24) 2017-02-28 textproc/rubygem-sass-rails4: Use textproc/rubygem-sass-rails5 instead
* Update MAINTAINER to tobik@FreeBSD.org for my portstobik2017-02-153-3/+3
| | | | | Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9610
* Actually add the patchbapt2017-02-123-0/+60
| | | | Reported by: antoine
* Fix build with libc++ (is_const is already defined by some libc++ headers)bapt2017-02-121-3/+1
| | | | This make the port work without the gcc dependency
* java/jdk(16|7)-doc: Deprecate and remove 28 FEB 2017marino2017-02-112-0/+6
| | | | | The associated jdk ports were removed years ago. The documentation should have been removed with them then.
* Remove expired ports:rene2017-02-0824-5229/+0
| | | | | | 2017-02-07 java/jboss7: Unsupported, replaced by wildfly 2017-02-07 java/jboss71: Unsupported, replaced by wildfly 2017-02-07 java/jboss72: Unsupported, replaced by wildfly
* Fix build with GCC. It was broken by r430424.jkim2017-02-031-1/+1
| | | | PR: 216738
* java/intellij: Update to version 2016.3.4.bsam2017-02-023-6/+6
|
* Fix distinfo.jkim2017-01-311-1/+3
| | | | PR: r216595
* . Update to 8u121.glewis2017-01-295-650/+1182
|
* . Update to 8u121.glewis2017-01-292-4/+4
|
* . Fix @javavm directive.glewis2017-01-291-1/+1
|
* . Update to 8u121.glewis2017-01-293-160/+161
| | | | . Fix @javavm directive.
* Update WWW: SF redirects to https://sourceforge.net/projects/<PROJECT_NAME>/sunpoet2017-01-211-1/+1
|
* Update to 5.3.2 release.ale2017-01-192-5/+5
|
* Update to b41.jkim2017-01-193-264/+16
|
* The output of tools like awk, date, sort, tr,... depends on the currenttijl2017-01-187-14/+7
| | | | | | | | | | | | | | | | | | 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)
* Upgrade java/wildfly10 to 10.1.0.olgeni2017-01-163-1184/+329
| | | | | | | | | | | - Move installation directory to /usr/local/wildfly10. - Fix directory permissions and ownership (root:wheel everywhere except config.) - Remove all @dir entries which are now unnecessary. - Add upgrade notice to UPDATING. PR: 212052 Submitted by: olgeni Approved by: maintainer
* . Fix compilation with Clang 4.0glewis2017-01-163-1/+23
| | | | | PR: 216016 Submitted by: jbeich@
* . Fix compilation with Clang 4.0glewis2017-01-162-1/+21
| | | | | PR: 216016 Submitted by: jbeich@
* Fix ports using PREFIX in their depends instead of LOCALBASE.mat2017-01-142-5/+5
| | | | | With hat: portmgr Sponsored by: Absolight
* Update Eclipse CDT to 9.0.1 and assign port to submitter.tijl2017-01-1313-459/+944
| | | | | PR: 213649 Submitted by: Michael Zhilin <mizhka@gmail.com>
* - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOLamdmi32017-01-111-4/+0
| | | | Approved by: portmgr blanket
* Rename java/wildfly100 to java/wildfly10.olgeni2017-01-118-4/+4
| | | | | PR: 212052 Submitted by: olgeni
* java/intellij-rubymine: create portswills2017-01-11