Ticket #12119: Portfile.rev

File Portfile.rev, 868 bytes (added by markd@…, 17 years ago)
Line 
1PortSystem              1.0
2name                    mailqfmt
3version                 0.6
4categories              mail
5maintainers             cbellot@sky.fr
6description             Postfix mailq file reformatter
7platforms               darwin
8master_sites            http://www.dt.e-technik.uni-dortmund.de/~ma/postfix/
9distfiles               ${name}.pl
10checksums               md5 e1d452850f59cd004d2d4930758a4a28
11depends_lib-append      port:p5-libwww-perl port:postfix
12
13variant apple_postfix {
14          depends_lib-delete    port:postfix
15}
16
17use_configure           no
18extract {
19          file copy ${distpath}/mailqfmt.pl ${workpath}/mailqfmt
20        }
21post-patch {
22          reinplace "s|/usr/bin/perl|${prefix}/bin/perl|g" \
23            ${workpath}/mailqfmt
24
25if { ![variant_isset apple_postfix] } {
26          reinplace "s|/usr/bin/mailq|${prefix}/bin/mailq|g" \
27            ${workpath}/mailqfmt
28   }
29        }
30build {}
31destroot {
32          xinstall -m 755 -d ${destroot}${prefix}/bin
33          xinstall -m 755 ${workpath}/mailqfmt ${destroot}${prefix}/bin/mailqfmt
34        }