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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name postfixadmin |
---|
7 | version 2.3.3 |
---|
8 | categories www mail php |
---|
9 | license GPLv2 |
---|
10 | maintainers mathiesen.info:macintosh |
---|
11 | |
---|
12 | description Web Based Management tool for Postfix |
---|
13 | long_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. |
---|
16 | homepage http://postfixadmin.sourceforge.net/ |
---|
17 | master_sites sourceforge |
---|
18 | |
---|
19 | platforms darwin freebsd |
---|
20 | depends port:php5 \ |
---|
21 | port:mysql5 \ |
---|
22 | port:apache2 \ |
---|
23 | port:postfix |
---|
24 | |
---|
25 | checksums sha1 4417c73d7c4d0423fbcec8491bf7ca72184ce2cf \ |
---|
26 | rmd160 3ac67e58f35669b859c25e479e3457bfa2b8f0d3 |
---|
27 | |
---|
28 | use_configure no |
---|
29 | |
---|
30 | build {} |
---|
31 | supported_archs noarch |
---|
32 | |
---|
33 | destroot.violate_mtree yes |
---|
34 | |
---|
35 | destroot { |
---|
36 | set docpath ${destroot}${prefix}/www/${name} |
---|
37 | xinstall -m 755 -d ${docpath}/html |
---|
38 | eval file copy [glob ${workpath}/${distname}/*] ${docpath}/html |
---|
39 | } |
---|