Ticket #11033: Portfile

File Portfile, 1.0 KB (added by tristan@…, 17 years ago)

archivemail portfile

Line 
1PortSystem          1.0
2
3name                archivemail
4categories          python mail
5version             0.7.0
6platforms           darwin
7
8description         archive and compress old email
9long_description    \
10    archivemail is a tool written in Python for archiving and \
11    compressing old email in mailboxes. It can move messages older \
12    than the specified number of days to a separate mbox format \
13    mailbox that is compressed with gzip, or optionally just delete \
14    old email.
15
16homepage            http://archivemail.sourceforge.net
17master_sites        sourceforge
18checksums           sha1 fcba04b7ae748d54b8ebcbecb0aad08c4f58e927
19
20depends_lib         bin:python:python24
21
22use_configure        no
23build                {}
24
25destroot.cmd         ${prefix}/bin/python setup.py install
26destroot.destdir     --prefix=${prefix} --root=${destroot} --install-data=${prefix}/share
27post-destroot        {
28                       system "gzip -9 ${destroot}${prefix}/share/man/man1/archivemail.1"
29                     }