diff --exclude .svn -ru a/bitstream-vera/Portfile b/bitstream-vera/Portfile
a
|
b
|
|
21 | 21 | platforms darwin |
22 | 22 | checksums md5 52559ed969e74f5fca83e527163156df |
23 | 23 | |
24 | | patchfiles patch-local.conf |
25 | | |
26 | 24 | use_configure no |
| 25 | |
27 | 26 | build { |
28 | | reinplace "s|%FONTSDIR%|${prefix}/share/fonts|" \ |
29 | | ${worksrcpath}/local.conf |
30 | 27 | } |
| 28 | |
31 | 29 | destroot { |
32 | 30 | xinstall -d ${destroot}${prefix}/share/fonts |
33 | 31 | system "install -m 444 ${worksrcpath}/*.ttf \ |
… |
… |
|
35 | 33 | |
36 | 34 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
37 | 35 | xinstall -m 644 -W ${worksrcpath} COPYRIGHT.TXT README.TXT \ |
38 | | RELEASENOTES.TXT local.conf \ |
| 36 | RELEASENOTES.TXT \ |
39 | 37 | ${destroot}${prefix}/share/doc/${name} |
40 | 38 | } |
41 | | |
42 | | post-install { |
43 | | ui_msg "------------------------------------------------------------------ |
44 | | --------" |
45 | | ui_msg "Requires modifications to ${prefix}/etc/fonts/local.conf. " |
46 | | ui_msg "Replacement file provided at ${prefix}/share/doc/bitstream-vera/local.conf." |
47 | | ui_msg "------------------------------------------------------------------ |
48 | | --------" |
49 | | } |
50 | | |