To install VFlib 3, following libraries are (optionally) required: FreeType, T1Lib, kpathsea. Install them before you compile VFlib 3. These external libraries are optional and therefore VFlib 3 can be compiled not to use such libraries. But in such a case, you cannot use TrueType, Type1 fonts and searching TeX fonts is very limited. So, I strongly recommend to use such libraries.
%
below is a prompt of a shell.)
% gzip -cd < web2c-7.2.tar.gz | tar xvf -
% cd web2c-7.2
configure
script.
% ./configure
make
to compile.
% make
% su Password: XXXXXXX (type the password for root user) # make install # exit %
% cd ..
% gzip -cd < freetype-1.2.tar.gz | tar xvf - % cd freetype-1.2 % ./configure % make % su # make install # exit % cd ..
% gzip -cd < t1lib-1.3.tar.gz | tar xvf - % cd T1Lib-1.3 % ./configure % make % su # make install # exit % cd ..
% gzip -cd < VFlib3-3.6.14.tar.gz | tar xvf - % cd VFlib3-3.6.14 % ./configure-siteNote
% ./configure --with-kpathsea \ --with-kpathsea-includedir=/usr/local/include \ --with-kpathsea-libdir=/usr/local/lib \ --with-freetype \ --with-freetype-includedir=/usr/local/include \ --with-freetype-libdir=/usr/local/lib \ --with-t1lib \ --with-t1lib-includedir=/usr/local/include \ --with-t1lib-libdir=/usr/local/lib [RETURN]But it is long to type; a script configure-site invokes configure with these options. If youd don't like settings in
configure-site
,
modify it according to your system environment, or
manually run configure
with options.
% make % su # make install # exit % cd ..
% gzip -cd < TeX-Guy-1.3.1.tar.gz | tar xvf - % cd TeX-Guy-1.3.1 % ./configure-site % make % su # make install # exit % cd ..