Ticket #29875: Portfile

File Portfile, 1.7 KB (added by BjarneDMat, 12 years ago)

Portfile for Roundcubemail 0.7

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                roundcubemail
7version             0.7
8categories          www mail php
9license             GPL
10maintainers         mathiesen.info:macintosh
11
12description         Roundcube webmail
13long_description    This project is a free and open source webmail solution with a desktop-like \
14                    user interface which is easy to install/configure and that runs on a standard \
15                    LAMPP server. The skins use the latest web standards such as XHTML and CSS 2. \
16                    Roundcube includes other sophisticated open-source libraries such as PEAR, \
17                    an IMAP library derived from IlohaMail the TinyMCE rich text editor, \
18                    Googiespell library for spell checking or the WasHTML sanitizer by Frederic Motte.
19
20homepage            http://roundcube.net/
21
22platforms           darwin freebsd
23depends_run         port:php5-web \
24                    port:php5-mbstring \
25                    port:php5-sockets \
26                    port:php5-mysql \
27
28master_sites        sourceforge
29
30checksums           sha1    89a8c08babb2b87e71ca0ca10c0635282870c9f0 \
31                    rmd160  fba15abdb1b060da7d2705a075069f2bb7aa2332
32
33use_configure       no
34
35build               {}
36supported_archs     noarch
37
38destroot.violate_mtree yes
39
40destroot {
41    set docpath ${destroot}${prefix}/www/${name}
42#    set docpath /Volumes/Bjarne/Sites/info/mathiesen/${name}
43    xinstall -m 755 -d ${docpath}/html
44    eval file copy [glob ${workpath}/${distname}/*] ${docpath}/html
45    exec chown -R bjarne:staff ${docpath}
46}