mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
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:
parent
3df6d8d661
commit
a66b317496
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=451238
@ -109,6 +109,7 @@
|
||||
SUBDIR += openjdk8
|
||||
SUBDIR += openjdk8-jre
|
||||
SUBDIR += openjfx8-devel
|
||||
SUBDIR += openjfx8-scenebuilder
|
||||
SUBDIR += phpeclipse
|
||||
SUBDIR += proguard
|
||||
SUBDIR += sablevm
|
||||
|
36
java/openjfx8-scenebuilder/Makefile
Normal file
36
java/openjfx8-scenebuilder/Makefile
Normal 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>
|
3
java/openjfx8-scenebuilder/distinfo
Normal file
3
java/openjfx8-scenebuilder/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1506878786
|
||||
SHA256 (openjfx8-8u172-b00.tar.gz) = b6689302cb215b22b0b673d47b3738ac48a423149f2e047dbdebbc87fbefc8ac
|
||||
SIZE (openjfx8-8u172-b00.tar.gz) = 109884684
|
2
java/openjfx8-scenebuilder/files/scenebuilder.in
Normal file
2
java/openjfx8-scenebuilder/files/scenebuilder.in
Normal 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 "$@"
|
12
java/openjfx8-scenebuilder/pkg-descr
Normal file
12
java/openjfx8-scenebuilder/pkg-descr
Normal 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/
|
Loading…
Reference in New Issue
Block a user