Ticket #29874: Portfile

File Portfile, 1.3 KB (added by BjarneDMat, 13 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id:$
3
4PortSystem          1.0
5
6name                postfixadmin
7version             2.3.3
8categories          www mail php
9license             GPLv2
10maintainers         mathiesen.info:macintosh
11
12description         Web Based Management tool for Postfix
13long_description    Postfix Admin is a Web Based Management tool created for Postfix. It is \
14                    a PHP based application that handles Postfix Style Virtual Domains and \
15                    Users that are stored in MySQL.
16homepage            http://postfixadmin.sourceforge.net/
17master_sites        sourceforge
18
19platforms           darwin freebsd
20depends             port:php5 \
21                    port:mysql5 \
22                    port:apache2 \
23                    port:postfix
24
25checksums           sha1    4417c73d7c4d0423fbcec8491bf7ca72184ce2cf \
26                    rmd160  3ac67e58f35669b859c25e479e3457bfa2b8f0d3
27
28use_configure       no
29
30build               {}
31supported_archs     noarch
32
33destroot.violate_mtree yes
34
35destroot {
36    set docpath ${destroot}${prefix}/www/${name}
37    xinstall -m 755 -d ${docpath}/html
38    eval file copy [glob ${workpath}/${distname}/*] ${docpath}/html
39}