Return-Path: X-Original-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 887FF9672 for ; Thu, 28 Jun 2012 19:00:14 +0000 (UTC) Received: (qmail 13761 invoked by uid 500); 28 Jun 2012 19:00:14 -0000 Delivered-To: apmail-incubator-flex-commits-archive@incubator.apache.org Received: (qmail 13737 invoked by uid 500); 28 Jun 2012 19:00:14 -0000 Mailing-List: contact flex-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-commits@incubator.apache.org Received: (qmail 13730 invoked by uid 99); 28 Jun 2012 19:00:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jun 2012 19:00:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jun 2012 19:00:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3793A23889D5; Thu, 28 Jun 2012 18:59:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1355112 - in /incubator/flex/trunk/ide/flashbuilder: makeApacheFlexForFlashBuilder.bat makeApacheFlexForFlashBuilder.sh Date: Thu, 28 Jun 2012 18:59:50 -0000 To: flex-commits@incubator.apache.org From: cframpton@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120628185951.3793A23889D5@eris.apache.org> Author: cframpton Date: Thu Jun 28 18:59:50 2012 New Revision: 1355112 URL: http://svn.apache.org/viewvc?rev=1355112&view=rev Log: Add downloads for swfobject,,textLayout.swc and osmf.swc to makeApacheFlexForFlashBuilder.sh. Add comment to bat file that this won't be done. Modified: incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.bat incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh Modified: incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.bat URL: http://svn.apache.org/viewvc/incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.bat?rev=1355112&r1=1355111&r2=1355112&view=diff ============================================================================== --- incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.bat (original) +++ incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.bat Thu Jun 28 18:59:50 2012 @@ -28,7 +28,8 @@ REM modified to reflect this. The A REM variables are not required because the locations of these pieces are known. REM REM Note: This script does not install the optional Adobe BlazeDS integration -REM or the Adobe embedded font support. +REM or the Adobe embedded font support nor osmf.swc, textLayout.swc and +REM the swfobject files. REM REM Usage: makeApacheFlexForFlashBuilder [sdk directory] REM Modified: incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh URL: http://svn.apache.org/viewvc/incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh?rev=1355112&r1=1355111&r2=1355112&view=diff ============================================================================== --- incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh (original) +++ incubator/flex/trunk/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh Thu Jun 28 18:59:50 2012 @@ -63,6 +63,11 @@ APACHE_FLEX_BIN_DISTRO_FILE=`basename "$ ADOBE_AIR_SDK_MAC_FILE=`basename "${ADOBE_AIR_SDK_MAC_URL}"` ADOBE_FLEX_SDK_FILE=`basename "${ADOBE_FLEX_SDK_URL}"` +echo +echo "This script will construct an Adobe Flex SDK for an IDE in '$FLEX_HOME'" +echo "You will need to answer questions throughout this process." +echo + function echo_adobe_flex_sdk_license() { echo @@ -150,6 +155,9 @@ echo "Downloading the Apache Flex SDK fr curl "$APACHE_FLEX_BIN_DISTRO_URL" --output "$tempDir/$APACHE_FLEX_BIN_DISTRO_FILE" tar xf "$tempDir/$APACHE_FLEX_BIN_DISTRO_FILE" -C "$FLEX_HOME" +# download swfobject, osmf.swc and textLayout.swc +ant -f "$FLEX_HOME"/frameworks/downloads.xml + # download the AIR SDK for Mac echo "Downloading the Adobe AIR SDK for Mac from $ADOBE_AIR_SDK_MAC_URL" curl "$ADOBE_AIR_SDK_MAC_URL" --output "$tempDir/$ADOBE_AIR_SDK_MAC_FILE" @@ -165,4 +173,7 @@ echo "Installing the frameworks config f cp -p -v "$FLEX_HOME"/ide/flashbuilder/config/*-config.xml "$FLEX_HOME/frameworks" # remove the zipped kits -rm -rf "$tempDir" \ No newline at end of file +rm -rf "$tempDir" + +# remove the stagging directory for downloaded software +rm -rf "$FLEX_HOME/in" \ No newline at end of file