Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:42.2:Ports
fetchmsttfonts
fetchmsttfonts.sh.in
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fetchmsttfonts.sh.in of Package fetchmsttfonts
#!/bin/sh EULA="http://corefonts.sourceforge.net/eula.htm" POST_MESSAGE="/var/adm/update-messages/__NAME__-__VERSION__-__RELEASE__-1" FONTS=" \ dl.sourceforge.net/project/corefonts/the%20fonts/final/andale32.exe dl.sourceforge.net/project/corefonts/the%20fonts/final/andale32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/arial32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/arialb32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/comic32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/courie32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/georgi32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/impact32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/times32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/trebuc32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/verdan32.exe \ dl.sourceforge.net/project/corefonts/the%20fonts/final/webdin32.exe \ " SERVER=" \ jaist \ heanet \ kent \ nchc \ easynews \ waix \ internode \ internap \ " CURL_OPTIONS="-L -s --speed-limit 3500 --speed-time 15" if [ ! -f /usr/bin/id -o ! -f /usr/bin/cabextract -o ! -f /usr/sbin/fonts-config ]; then echo "Running in non-chrooted (install into directory) mode... Exit safely." exit 0 fi if [ "`id -u`" != "0" ]; then echo "error: You must be root to use this program!" exit 1 fi if [ ! -x /usr/bin/cabextract ]; then echo "error: cabextract missing! Please install package cabextract first." exit 2 fi if [ -f /etc/sysconfig/proxy ] ; then . /etc/sysconfig/proxy fi if test "x$PROXY_ENABLED" != "xno"; then if test -n "$HTTP_PROXY" ; then export http_proxy="$HTTP_PROXY" fi fi if [ -z $http_proxy ]; then echo echo "note: No proxy is used. Please set the environment variable \"http_proxy\"" echo "note: to your favorite proxy, if you want to use a proxy for the download." echo "note:" echo "note: bash: export http_proxy=\"http://proxy.example.com:3128/\"" echo "note: tcsh: setenv http_proxy \"http://proxy.example.com:3128/\"" fi echo "EULA:" echo -n " Fetching ... " curl $CURL_OPTIONS -o /usr/share/doc/corefonts/EULA.html $EULA || \ rm -f /usr/share/doc/corefonts/EULA.html echo "done" tmpname=`basename $0` tmpdir=`mktemp -d /tmp/$tmpname.XXXXXX` trap "rm -rf $tmpdir" EXIT if [ $? -ne 0 ]; then echo "$0: Can't create temp dir, exiting..." exit 4 fi cd $tmpdir echo echo "Trying to find the fastest server:" besttime=1000 for server in $SERVER; do echo -n " $server ... " start=${SECONDS:-$(date +%s)} curl $CURL_OPTIONS --connect-timeout 10 -o cabextract.rpm \ http://$server.dl.sourceforge.net/project/corefonts/cabextract/0.5/cabextract-0.5-1.i386.rpm if [ $? -ne 0 ]; then echo "too slow (aborted)" continue fi stop=${SECONDS:-$(date +%s)} time=$((stop - start)) echo "$time sec" if [ $time -lt $besttime ]; then besttime=$time useserver=$server fi done rm -f cabextract.rpm if [ -n "$useserver" ]; then echo "The winner is: >> $useserver <<" echo else echo "Connection too slow or no server available. Aborting ... " exit 5 fi for font in $FONTS; do for i in $useserver $SERVER; do archive=http://$i.$font file=`echo $archive|awk -F "/" '{print $NF}'` rm -f $file echo "$file ($archive):" echo -n " Fetching ... " curl $CURL_OPTIONS -o $file $archive if [ $? -ne 0 ]; then rm -f $file echo "failed ... deleted!" continue fi echo done echo -n " Extracting ... " cabextract -l $file >/dev/null 2>&1 if [ $? -ne 0 ]; then rm -f $file echo "failed ... deleted!" else cabextract $file >/dev/null 2>&1 echo "done" success=true break fi rm -f $file done done if [ "x$success" != "x" ]; then for i in *.[Tt][Tt][CFcf]; do lower=`echo $i|tr [:upper:] [:lower:]` test "$i" != "$lower" && mv $i $lower done chmod 644 *.tt[cf] mv -f *.tt[cf] /usr/share/fonts/truetype /usr/sbin/fonts-config echo "*** Fonts installed. ***" | tee $POST_MESSAGE else echo "*** No Fonts installed. ***" | tee $POST_MESSAGE fi test -f /usr/share/doc/corefonts/EULA.html && w3m -dump /usr/share/doc/corefonts/EULA.html | tee $POST_MESSAGE cd - >/dev/null
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor