Initial .bep and .OptionalPAckageDescription files for PHP. It's not yet working, getting some configure errors, I suspect due to a missing dependency.

This commit is contained in:
Scott McCreary
2009-11-28 09:30:20 +00:00
parent 6b7ede4be6
commit 237193066b
4 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
DESCRIPTION="php - hypertext preprocessor"
HOMEPAGE="http://www.php.net"
SRC_URI="http://php.net/distributions/php-5.3.1.tar.bz2"
REVISION="1"
STATUS_HAIKU="broken"
DEPEND="libpcre, others TBD"
BUILD {
cd php-5.3.1
cat $(aclocal --print-ac-dir)/libtool.m4 > build/libtool.m4
autoreconf
./configure --prefix=/boot/common --enable-shared --enable-static
make
}
INSTALL {
cd php-5.3.1
make install
}