mirror of
https://git.freebsd.org/ports.git
synced 2025-05-15 08:41:51 -04:00
- 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
18 lines
923 B
Groovy
18 lines
923 B
Groovy
--- buildSrc/build.gradle.orig 2017-09-08 16:56:55 UTC
|
|
+++ buildSrc/build.gradle
|
|
@@ -81,11 +81,10 @@ sourceSets {
|
|
getConfigurations().create("antlr3");
|
|
|
|
dependencies {
|
|
- compile group: "org.antlr", name: "antlr", version: "3.1.3"
|
|
- testCompile group: "junit", name: "junit", version: "4.8.2"
|
|
- antlr3 group: "org.antlr", name: "antlr-runtime", version: "3.1.3"
|
|
- antlr3 group: "org.antlr", name: "stringtemplate", version: "3.2"
|
|
- antlr3 group: "org.antlr", name: "antlr", version: "3.1.3"
|
|
+ compile files("/usr/local/share/java/classes/antlr-3.5.2-complete.jar")
|
|
+ testCompile files("/usr/local/share/java/classes/junit4.jar",
|
|
+ "/usr/local/share/java/classes/hamcrest.jar")
|
|
+ antlr3 files("/usr/local/share/java/classes/antlr-3.5.2-complete.jar")
|
|
}
|
|
|
|
// At the moment the ASM library shipped with Gradle that is used to
|