Ticket #703: Portfile

File Portfile, 1.1 KB (added by blb@…, 21 years ago)

Portfile

Line 
1# $Id: $
2
3PortSystem 1.0
4name                            teTeX-texmf
5version                         2.0.2
6categories                      print textproc
7description                     TeX METAFONT (fonts, macros, etc) files
8long_description        auxiliary files needed for teTeX
9platforms                       darwin
10maintainers                     blb@pobox.com
11
12master_sites    ftp://cam.ctan.org/tex-archive/systems/unix/teTeX/2.0/distrib/ \
13                                ftp://dante.ctan.org/tex-archive/systems/unix/teTeX/2.0/distrib/
14 \
15                                ftp://tug.ctan.org/tex-archive/systems/unix/teTeX/2.0/distrib/
16
17checksums               md5 d3bdb96f9077e43b2115d3cc471743b3
18
19extract                 {}
20configure               {}
21build                   {}
22install                 {
23                        system "mkdir -p ${destroot}/${prefix}/share/texmf"
24                        system "cd ${destroot}/${prefix}/share/texmf && \
25                        gunzip -c ${distpath}/${distname}${extract.sufx} | \
26                        tar xf - "
27}
28
29post-install            {
30                        # Modify mktex.opt to force use of varfonts
31                        reinplace s|MT_FEATURES=appendonlydir|MT_FEATURES=appendonlydir:varfonts|g ${destroot}/${prefix}/share/texmf/web2c/mktex.cnf
32                        # Create a local texmf tree
33                        file mkdir ${destroot}/${prefix}/share/texmf.local/web2c
34                        # Create the texmf.macosx tree
35                        file mkdir ${destroot}/${prefix}/share/texmf.macosx/web2c
36}
37