Current time: 05-21-2012, 05:54 PM Hello There, Guest! (LoginRegister)


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
כיצד להוסיף את גופני מיקרוסופט
06-28-2009, 09:22 AM (This post was last modified: 03-03-2010 01:55 AM by KDulcimer.)
Post: #1
כיצד להוסיף את גופני מיקרוסופט
שלום לכולם/ן
ובכן לעיתים אנחנו מוצאים כי הפונטים של מיקרוסופט חסרים במערכת
ואנחנו רוצים להתקין אותם מסיבת הרגל/נוחות
לכן אני מצרף סקריפט מוצלח מאוד שיבצע את התקנת הפונטים והשלמת כל החוסרים
של מערכת חלונות להתקנה על מערכת לינוקס.

הסקריפט
יש להעתיק ולהדביק את הסקריפט כולו לתוך הטרמינל וללחוץ אינטר
Code:
# This is the msttcorefonts spec file as distributed from
# http://corefonts.sourceforge.net/.

%define name msttcorefonts

# nowdays most (all?) distributions seems to use this. Oh the joys of the FHS
%define ttmkfdir /usr/bin/ttmkfdir

%define fontdir /usr/share/fonts/%{name}

Summary: TrueType core fonts for the web
Name: %{name}
Version: 2.0
Release: 1
License: Spec file is GPL, binary rpm is gratis but non-distributable
Group: User Interface/X
BuildArch: noarch
BuildRoot: /var/tmp/%{name}-root
BuildPrereq: %{ttmkfdir}
BuildPrereq: wget
BuildPrereq: cabextract
Prereq: /usr/sbin/chkfontpath
Packager: Noa Resare <noa@resare.com>

%description
The TrueType core fonts for the web that was once available from
http://www.microsoft.com/typography/fontpack/. The src rpm is cleverly
constructed so that the actual fonts are downloaded from Sourceforge's site
at build time. Therefore this package technically does not 'redistribute'
the fonts, it just makes it easy to install them on a linux system.

%prep
mkdir -p %{name}/downloads
cd %{name}/downloads

# this is the sourceforge mirrorlist as of 2006-04-30. If someone spots changes
# over at sourcforge, feel free to email me and I'll update the list
mirrors="easynews+heanet+superb-west+internap+switch+ufpr+surfnet+umn+kent+mesh+superb-east+jaist"
mirror_count=12

andale32_md5="cbdc2fdd7d2ed0832795e86a8b9ee19a  andale32.exe"
arial32_md5="9637df0e91703179f0723ec095a36cb5  arial32.exe"
arialb32_md5="c9089ae0c3b3d0d8c4b0a95979bb9ff0  arialb32.exe"
comic32_md5="2b30de40bb5e803a0452c7715fc835d1  comic32.exe"
courie32_md5="4e412c772294403ab62fb2d247d85c60  courie32.exe"
georgi32_md5="4d90016026e2da447593b41a8d8fa8bd  georgi32.exe"
impact32_md5="7907c7dd6684e9bade91cff82683d9d7  impact32.exe"
times32_md5="ed39c8ef91b9fb80f76f702568291bd5  times32.exe"
trebuc32_md5="0d7ea16cac6261f8513a061fbfcdb2b5  trebuc32.exe"
webdin32_md5="230a1d13a365b22815f502eb24d9149b  webdin32.exe"
verdan32_md5="12d2a75f8156e10607be1eaa8e8ef120  verdan32.exe"
wd97vwr32_md5="efa72d3ed0120a07326ce02f051e9b42  wd97vwr32.exe"

download_files="andale32.exe arial32.exe arialb32.exe comic32.exe courie32.exe georgi32.exe impact32.exe times32.exe trebuc32.exe webdin32.exe verdan32.exe wd97vwr32.exe"


failures=0

function set_mirror {
       local r m
       r=`expr $RANDOM % $mirror_count + 1`
       m=`echo $mirrors |cut -d+ -f$r`
       mirror="http://${m}.dl.sourceforge.net/sourceforge/corefonts/"

}

function check_file {
       matches=
       if [ ! -r $1 ]
       then
               echo "$1 does not exist"
               return
       fi
       local variable_name=`basename $1 .exe`_md5
       local stored_checksum
       eval stored_checksum=\$$variable_name
       local computed_checksum=`md5sum $1`
       if [ "$stored_checksum" = "$computed_checksum" ]
       then
               matches=yes
       else
               rm $1
               matches=
       fi
}

function download {
       wget --timeout=5 -O "$2" $1$2
}

set_mirror
for f in $download_files
do
       check_file $f
       while [ ! $matches ]
       do
               download $mirror $f
               check_file $f
               if [ ! $matches ]
               then
                       echo "failed to download $mirror$f"
                       failures=`expr $failures + 1`
                       if [ $failures -gt 5 ]
                       then
                               echo "failed to download too many times."
                               exit
                       fi
                       set_mirror
               fi
       done
done


%build

font_files="andale32.exe arial32.exe arialb32.exe comic32.exe courie32.exe georgi32.exe impact32.exe times32.exe trebuc32.exe webdin32.exe verdan32.exe"

cd %{name}

rm -rf cab-contents fonts

mkdir cab-contents
mkdir fonts

for i in $font_files
do
    if [ -f downloads/$i ]
    then
        cabextract --lowercase --directory=cab-contents downloads/$i
    fi
    cp cab-contents/*.ttf fonts
    rm -f cab-contents/*
done

cabextract --lowercase --directory=cab-contents downloads/wd97vwr32.exe
cabextract --lowercase --directory=cab-contents cab-contents/viewer1.cab
cp cab-contents/*.ttf fonts

cd fonts

%{ttmkfdir} > fonts.dir

%install
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
cd %{name}/fonts
mkdir -p $RPM_BUILD_ROOT/%{fontdir}
cp *.ttf fonts.dir $RPM_BUILD_ROOT/%{fontdir}

%clean
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT

%post
if test $1 -eq 1
then
    /usr/sbin/chkfontpath --add %{fontdir}
fi
# something has probably changed, update the font-config cache
if test -x /usr/bin/fc-cache
then
    /usr/bin/fc-cache
fi

%preun
if test $1 -eq 0
then
    /usr/sbin/chkfontpath --remove %{fontdir}
fi

%files
%attr(-,root,root) %{fontdir}
%dir %{fontdir}

%changelog
* Sun May 07 2006 Noa Resare <noa@resare.com> 2.0-1
- checksums downloads
- random mirror
- use redistributable word 97 viewer as source for tahoma.ttf

* Mon Mar 31 2003 Daniel Resare <noa@resare.com> 1.3-4
- updated microsoft link
- updated sourceforge mirrors

* Mon Nov 25 2002 Daniel Resare <noa@resare.com> 1.3-3
- the install dir is now deleted when the package is uninstalled
- executable permission removed from the fonts
- executes fc-cache after install if it is available

* Thu Nov 07 2002 Daniel Resare <noa@resare.com> 1.3-2
- Microsoft released a new service-pack. New url for Tahoma font.

* Thu Oct 24 2002 Daniel Resare <noa@resare.com> 1.3-1
- removed python hack
- removed python hack info from description
- made tahoma inclusion depend on define
- added some info on the ttmkfdir define

* Tue Aug 27 2002 Daniel Resare <noa@resare.com> 1.2-3
- fixed spec error when tahoma is not included

* Tue Aug 27 2002 Daniel Resare <noa@resare.com> 1.2-2
- removed tahoma due to unclear licensing
- parametrized ttmkfdir path (for mandrake users)
- changed description text to reflect the new microsoft policy

* Thu Aug 15 2002 Daniel Resare <noa@resare.com> 1.2-1
- changed distserver because microsoft no longer provides them

* Tue Apr 09 2002 Daniel Resare <noa@resare.com> 1.1-3
- fixed post/preun script to actually do what they were supposed to do

* Tue Mar 12 2002 Daniel Resare <noa@resare.com> 1.1-2
- removed cabextact from this package
- added tahoma font from ie5.5 update

* Fri Aug 25 2001 Daniel Resare <noa@metamatrix.se>
- initial version
בהצלחה לכולם/ן
הסקריפט עבד עבורי מצויין

[Image: israelremixteam.png]
[Image: 2dv2aut.jpg]
Admin-Amir - Blog
Admin-Amir - Blog-2
Admin-Amir -" IsraelRemixTeam" - Forum
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 3 Guest(s)

 


Contact Us | TinyMe Linux | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication