Ticket #7953: Portfile

File Portfile, 1.6 KB (added by vincent-opdarw@…, 18 years ago)

The Portfile

Line 
1# $Id: Portfile 11639 2006-03-24 02:40:57Z lefevre $
2
3PortSystem 1.0
4
5name            tetex-frogg
6version         0.4
7categories      print
8maintainers     vincent-opdarw@vinc17.org
9
10description     Little collection of French LaTeX/BiBTeX styles
11long_description        Little collection of French LaTeX/BiBTeX styles: \
12                        fr-plain.bst, frmath.sty, lettre.cls.
13
14distname        ${name}_${version}.orig
15worksrcdir      ${name}-${version}
16
17homepage        http://packages.debian.org/unstable/tex/tetex-frogg
18
19master_sites    http://ftp.debian.org/debian/pool/main/t/tetex-frogg
20checksums       ${distname}${extract.suffix} md5 a0371304008212bb53589a7b9363dd35 \
21                ${name}_${version}-2.diff.gz md5 54320efadcf71296cec62f6a0b408103
22
23patch_sites     http://ftp.debian.org/debian/pool/main/t/tetex-frogg
24patchfiles      ${name}_${version}-2.diff.gz
25patch.args      -p1
26
27use_configure   no
28build           {}
29
30destroot        {
31                  file mkdir ${destroot}${prefix}/share/texmf-dist/bibtex/bst/frbib
32                  file mkdir ${destroot}${prefix}/share/texmf-dist/tex/latex/misc
33                  xinstall -m 644 ${worksrcpath}/bst/fr-plain.bst ${destroot}${prefix}/share/texmf-dist/bibtex/bst/frbib/fr-plain.bst
34                  xinstall -m 644 ${worksrcpath}/sty/frmath.sty ${destroot}${prefix}/share/texmf-dist/tex/latex/misc/frmath.sty
35                  xinstall -m 644 ${worksrcpath}/lettre/inputs/default.ins ${destroot}${prefix}/share/texmf-dist/tex/latex/misc/default.ins
36                  xinstall -m 644 ${worksrcpath}/lettre/inputs/lettre.cls_2.346 ${destroot}${prefix}/share/texmf-dist/tex/latex/misc/lettre.cls_2.346
37                  system "ln -s lettre.cls_2.346 ${destroot}${prefix}/share/texmf-dist/tex/latex/misc/lettre.cls"
38                }
39
40post-activate   { system "mktexlsr" }