The fcsh (Flex Compiler Shell) utility provides a shell environment

that you use to compile Flex applications, modules, and component
libraries. It works very similarly to the mxmlc and compc command line
compilers, but it compiles faster than the mxmlc and compc
command-line compilers.

WWW: http://labs.adobe.com/wiki/index.php/Flex_Compiler_Shell
This commit is contained in:
Jun Kuriyama 2007-12-18 22:48:53 +00:00
parent a36c6b651f
commit dbd175948d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=204047
6 changed files with 59 additions and 0 deletions

View File

@ -315,6 +315,7 @@
SUBDIR += fistgen
SUBDIR += flatzebra
SUBDIR += flex-sdk
SUBDIR += flex_compiler_shell
SUBDIR += flexjson
SUBDIR += flick
SUBDIR += florist

View File

@ -0,0 +1,35 @@
# New ports collection makefile for: Flex Compiler Shell
# Date created: 1 Dec 2007
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= flex_compiler_shell
PORTVERSION= 0.20070123
CATEGORIES= devel java
MASTER_SITES= http://download.macromedia.com/pub/labs/flex_compiler_shell/
DISTNAME= flex_compiler_shell_012307
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Adobe Flex Compiler Shell
RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \
mxmlc:${PORTSDIR}/devel/flex-sdk
RESTRICTED= Redistribution is not allowed
USE_ZIP= YES
USE_JAVA= YES
JAVA_VERSION= 1.4+
WRKSRC= ${WRKDIR}
NO_BUILD= YES
SUB_FILES= fcsh
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/fcsh ${PREFIX}/bin/
${INSTALL_DATA} ${WRKSRC}/lib/fcsh.jar ${JAVAJARDIR}/flex-sdk/
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/FlexCompilerShell-license.txt ${DOCSDIR}/
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (flex_compiler_shell_012307.zip) = 8882dd729d33f22e981603d8d09ad4b4
SHA256 (flex_compiler_shell_012307.zip) = 65983a10d9cf0192b103066283eaa18ec7d84052bfd8a18a01066d3d45f04d16
SIZE (flex_compiler_shell_012307.zip) = 72443

View File

@ -0,0 +1,9 @@
#!/bin/sh
[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%"
[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/flex-sdk"
[ -z "${FLEX_HOME}" ] && FLEX_HOME=${PREFIX}/share/flex-sdk
VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false"
java $VMARGS "-Dapplication.home=$FLEX_HOME" -jar "$JAVAJARDIR/fcsh.jar"

View File

@ -0,0 +1,7 @@
The fcsh (Flex Compiler Shell) utility provides a shell environment
that you use to compile Flex applications, modules, and component
libraries. It works very similarly to the mxmlc and compc command line
compilers, but it compiles faster than the mxmlc and compc
command-line compilers.
WWW: http://labs.adobe.com/wiki/index.php/Flex_Compiler_Shell

View File

@ -0,0 +1,4 @@
bin/fcsh
%%JAVAJARDIR%%/flex-sdk/fcsh.jar
%%DOCSDIR%%/FlexCompilerShell-license.txt
@dirrm %%DOCSDIR%%