New port: java/openjfx8-scenebuilder

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/
This commit is contained in:
Tobias Kortkamp 2017-10-04 17:12:42 +00:00
parent 3df6d8d661
commit a66b317496
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=451238
5 changed files with 54 additions and 0 deletions

View File

@ -109,6 +109,7 @@
SUBDIR += openjdk8
SUBDIR += openjdk8-jre
SUBDIR += openjfx8-devel
SUBDIR += openjfx8-scenebuilder
SUBDIR += phpeclipse
SUBDIR += proguard
SUBDIR += sablevm

View File

@ -0,0 +1,36 @@
# $FreeBSD$
PORTNAME= openjfx8
DISTVERSION= 8u172-b00
CATEGORIES= java x11-toolkits devel
MASTER_SITES= https://github.com/t6/openjfx/releases/download/release/ \
http://hg.openjdk.java.net/openjfx/8u/rt/archive/${DISTVERSION}${EXTRACT_SUFX}?dummy=/
PKGNAMESUFFIX= -scenebuilder
MAINTAINER= tobik@FreeBSD.org
COMMENT= JavaFX Scene Builder
LICENSE= BSD3CLAUSE
BUILD_DEPENDS= openjfx8-devel>0:java/openjfx8-devel
RUN_DEPENDS= openjfx8-devel>0:java/openjfx8-devel
USE_ANT= yes
USE_JAVA= yes
JAVA_VERSION= 1.8+
ALL_TARGET= jar-sb
NO_ARCH= yes
PLIST_FILES= bin/scenebuilder \
${JAVAJARDIR}/SceneBuilderApp.jar \
${JAVAJARDIR}/SceneBuilderKit.jar
SUB_FILES= scenebuilder
WRKSRC= ${WRKDIR}/rt-${DISTVERSION}/apps/scenebuilder
do-install:
${INSTALL_DATA} ${WRKSRC}/SceneBuilderApp/dist/SceneBuilderApp.jar \
${WRKSRC}/SceneBuilderKit/dist/SceneBuilderKit.jar \
${STAGEDIR}${JAVAJARDIR}
${INSTALL_SCRIPT} ${WRKDIR}/scenebuilder ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1506878786
SHA256 (openjfx8-8u172-b00.tar.gz) = b6689302cb215b22b0b673d47b3738ac48a423149f2e047dbdebbc87fbefc8ac
SIZE (openjfx8-8u172-b00.tar.gz) = 109884684

View File

@ -0,0 +1,2 @@
#!/bin/sh
exec "%%LOCALBASE%%/bin/java" ${SCENEBUILDER_JAVA_ARGS} -cp "%%JAVAJARDIR%%/SceneBuilderKit.jar:%%JAVAJARDIR%%/SceneBuilderApp.jar" com.oracle.javafx.scenebuilder.app.SceneBuilderApp "$@"

View File

@ -0,0 +1,12 @@
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/