# -*- 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 # $Id$ PortSystem 1.0 name ZendFramework version 1.12.1 categories www lang license BSD maintainers snc openmaintainer description A framework for developing PHP web applications long_description This is a port of the Zend Framework. The Zend Framework \ aims to provide an architecture for developing entire \ applications with no other library dependencies. This code \ will always be actively developed, tested, and supported \ by Zend and the PHP Collaboration Project. homepage http://framework.zend.com/ platforms darwin freebsd master_sites dist_subdir ZendFramework subport ZendFramework1 { conflicts ZendFramework2 revision 0 master_sites http://packages.zendframework.com/releases/${name}-${version}/ checksums rmd160 4612e0c23b11c9bb4908c21f46f3cbf429244ea4 \ sha256 d9c6427b6374712a93d48ce406af9e51e5abb71e7732a3bf1f248df6c2259c40 livecheck.regex {Zend Framework (1\.\d+\.\d+) Full} } subport ZendFramework2 { conflicts ZendFramework1 version 2.0.6 revision 0 master_sites http://packages.zendframework.com/releases/${name}-${version}/ extract.suffix .tgz checksums rmd160 ed1f5a6cc84adf5a672de416ba5efcbe56def8e4 \ sha256 bb352f8387b8d6399d37141392abc96164c6c6c7fbb299d089ae41c0d10a18bf livecheck.regex {Zend Framework (2\.\d+\.\d+) Full} } if {${name} != ${subport}} { foreach php {php5 php53 php54} { eval [subst { variant ${php} conflicts manual_extensions description "Use ${php}" { depends_run port:${php}-apc port:${php}-calendar port:${php}-curl port:${php}-dba port:${php}-exif port:${php}-ftp port:${php}-gd port:${php}-gettext port:${php}-gmp port:${php}-iconv port:${php}-imap port:${php}-mbstring port:${php}-mcrypt port:${php}-memcache port:${php}-mssql port:${php}-mysql port:${php}-odbc port:${php}-openssl port:${php}-pcntl port:${php}-posix port:${php}-postgresql port:${php}-soap port:${php}-sockets port:${php}-SPL_Types port:${php}-sqlite port:${php}-tidy port:${php}-wddx port:${php}-xmlrpc port:${php}-xsl port:${php}-zip } }] } if {![variant_isset php5] && ![variant_isset php53] && ![variant_isset php54] && ![variant_isset manual_extensions]} { default_variants +php5 } variant manual_extensions conflicts php5 php53 php54 description {Let me pick my own php extensions} { depends_run path:bin/php:php5 } set zf_main_dir ${prefix}/www/${name} set zf_doc_dir ${prefix}/share/doc/${name} use_configure no build {} destroot { # Copy everything to www. copy ${worksrcpath} ${destroot}${zf_main_dir} # Link the CLI Zend Tool into bin. ln -s ${zf_main_dir}/bin/zf.sh ${destroot}${prefix}/bin ln -s ${zf_main_dir}/bin/zf.sh ${destroot}${prefix}/bin/zf # Link the documentation into share/doc. xinstall -d ${destroot}${zf_doc_dir} foreach f [glob ${worksrcpath}/*.txt] { ln -s ${zf_main_dir}/[file tail ${f}] ${destroot}${zf_doc_dir} } } notes "If this is your first install, you might want to add \ ${zf_main_dir}/library to the include_path in your php.ini \ (e.g. include_path = \".:${zf_main_dir}/library\"). \ \n\nIf you want to use the extra ZendX components \ you might want to add ${zf_main_dir}/extras/library too \ (e.g. include_path = \".:${zf_main_dir}/library:${zf_main_dir}/extra/library\")." livecheck.type regex livecheck.url http://framework.zend.com/downloads/latest } else { replaced_by ZendFramework1 PortGroup obsolete 1.0 livecheck.type none }