mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
52 lines
1.6 KiB
Tcl
52 lines
1.6 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
|
|
name php5-web
|
|
version 5.3.5
|
|
categories lang php www
|
|
platforms any
|
|
maintainers ryandesign
|
|
license BSD
|
|
supported_archs noarch
|
|
|
|
homepage http://www.php.net/
|
|
|
|
description Meta-port for PHP web server support
|
|
|
|
long_description If you have a port for a web app that uses PHP, and \
|
|
you don't care (as you usually wouldn't) whether \
|
|
PHP is compiled as an Apache module or as a FastCGI \
|
|
binary, depend on ${name} so the user can choose.
|
|
|
|
depends_lib path:bin/php:php5
|
|
|
|
distfiles
|
|
|
|
use_configure no
|
|
|
|
build {
|
|
set found 0
|
|
foreach {desc file} "
|
|
{FastCGI binary} ${prefix}/bin/php-cgi
|
|
{Apache 2 module} ${prefix}/apache2/modules/libphp5.so
|
|
{Apache 1 module} ${prefix}/libexec/apache/libphp5.so
|
|
" {
|
|
if {[file exists ${file}]} {
|
|
ui_debug "OK: found ${desc} (${file})"
|
|
incr found
|
|
}
|
|
}
|
|
if {!${found}} {
|
|
ui_error "php5 is installed without web server support. Please reinstall it with one of the web server SAPI variants."
|
|
return -code error "incompatible php5 installation"
|
|
}
|
|
}
|
|
|
|
destroot {
|
|
xinstall -d ${destroot}${prefix}/share/doc/${name}
|
|
system "echo \"${long_description}\" > ${destroot}${prefix}/share/doc/${name}/README.txt"
|
|
}
|
|
|
|
livecheck.type none
|