From e089a860ea48cab784e33c922a6cc9bfb092aeba Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Mon, 3 Sep 2018 12:10:30 -0600 Subject: * WebAlpine: Update configuration files and add script to download yui_2.9.0.zip (there is no web version anymore). In addition add sample gmail and gmx configuration files. --- web/cgi/alpine/2.0/lib/README | 6 ++++++ web/cgi/alpine/2.0/lib/yui | 2 +- web/cgi/alpine/2.0/lib/yui.sh | 15 +++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 web/cgi/alpine/2.0/lib/README create mode 100755 web/cgi/alpine/2.0/lib/yui.sh (limited to 'web/cgi') diff --git a/web/cgi/alpine/2.0/lib/README b/web/cgi/alpine/2.0/lib/README new file mode 100644 index 00000000..87176808 --- /dev/null +++ b/web/cgi/alpine/2.0/lib/README @@ -0,0 +1,6 @@ +If you are interested in building web Alpine, you must download the +yui library, and install it in this directory. In order to help you +with this process, the script "yui.sh" does this job for you. + +The script uses the wget and unzip programs, which you must have +installed, and an internet connection to download the yui library. diff --git a/web/cgi/alpine/2.0/lib/yui b/web/cgi/alpine/2.0/lib/yui index 7f792d58..96704473 120000 --- a/web/cgi/alpine/2.0/lib/yui +++ b/web/cgi/alpine/2.0/lib/yui @@ -1 +1 @@ -yui-2.7.0 \ No newline at end of file +yui-2.9.0 \ No newline at end of file diff --git a/web/cgi/alpine/2.0/lib/yui.sh b/web/cgi/alpine/2.0/lib/yui.sh new file mode 100755 index 00000000..1e42bb87 --- /dev/null +++ b/web/cgi/alpine/2.0/lib/yui.sh @@ -0,0 +1,15 @@ +#!/bin/sh +if test ! -d "yui-2.9.0" ; then + rm -rf yui + echo "Downloading yui_2.9.0.zip. Wait...." + wget -q http://yui.github.io/yui2/archives/yui_2.9.0.zip + echo "Unpacking yui_2.9.0.zip..." + unzip -q yui_2.9.0.zip + echo "Removing yui_2.9.0.zip" + rm -f yui_2.9.0.zip + echo "Renaming yui to yui-2.9.0" + mv yui yui-2.9.0 + echo "Creating symbolic link yui to yui-2.9.0" + ln -s yui-2.9.0 yui +fi + -- cgit v1.2.3-54-g00ecf