| 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 roundcubemail |
|---|
| 7 | version 0.7 |
|---|
| 8 | categories www mail php |
|---|
| 9 | license GPL |
|---|
| 10 | maintainers mathiesen.info:macintosh |
|---|
| 11 | |
|---|
| 12 | description Roundcube webmail |
|---|
| 13 | long_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 | |
|---|
| 20 | homepage http://roundcube.net/ |
|---|
| 21 | |
|---|
| 22 | platforms darwin freebsd |
|---|
| 23 | depends_run port:php5-web \ |
|---|
| 24 | port:php5-mbstring \ |
|---|
| 25 | port:php5-sockets \ |
|---|
| 26 | port:php5-mysql \ |
|---|
| 27 | |
|---|
| 28 | master_sites sourceforge |
|---|
| 29 | |
|---|
| 30 | checksums sha1 89a8c08babb2b87e71ca0ca10c0635282870c9f0 \ |
|---|
| 31 | rmd160 fba15abdb1b060da7d2705a075069f2bb7aa2332 |
|---|
| 32 | |
|---|
| 33 | use_configure no |
|---|
| 34 | |
|---|
| 35 | build {} |
|---|
| 36 | supported_archs noarch |
|---|
| 37 | |
|---|
| 38 | destroot.violate_mtree yes |
|---|
| 39 | |
|---|
| 40 | destroot { |
|---|
| 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 | } |
|---|