1 | # $Id: Portfile,v 1.4 2005/08/11 21:33:30 rshaw Exp $ |
---|
2 | PortSystem 1.0 |
---|
3 | PortGroup perl5 1.0 |
---|
4 | |
---|
5 | perl5.setup MHonArc 2.6.15 |
---|
6 | maintainers machowtos@mac.com |
---|
7 | description MHonArc |
---|
8 | |
---|
9 | long_description A Perl program for converting mail or news messages into \ |
---|
10 | HTML archives, converting individual messages into \ |
---|
11 | HTML documents, and also MIME support. |
---|
12 | |
---|
13 | homepage http://www.mhonarc.org/ |
---|
14 | |
---|
15 | checksums md5 fa90cc83645125df476232eed2422656 |
---|
16 | platforms darwin |
---|
17 | |
---|
18 | master_sites http://www.cpan.org/modules/by-authors/Earl_Hood |
---|
19 | |
---|
20 | use_configure no |
---|
21 | build {} |
---|
22 | |
---|
23 | destroot { |
---|
24 | xinstall -m 755 -d ${destroot}${perl5.archlib} |
---|
25 | system "cd ${worksrcpath} && perl install.me \ |
---|
26 | -prefix=${destroot} \ |
---|
27 | -binpath ${destroot}${prefix}/bin \ |
---|
28 | -libpath ${destroot}${perl5.archlib} \ |
---|
29 | -docpath ${destroot}${prefix}/share/doc/mhonarc \ |
---|
30 | -manpath ${destroot}${prefix}/man" |
---|
31 | } |
---|
32 | |
---|