- Update to 2.15.5

- Connect to build

PR:		114757
Submitted by:	Josh Paetzel <josh@tcbug.org>
This commit is contained in:
Martin Wilke 2007-08-05 08:20:03 +00:00
parent 803cff8129
commit 849dbd144d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=197105
5 changed files with 27 additions and 42 deletions

View File

@ -1760,6 +1760,7 @@
SUBDIR += perltidy
SUBDIR += pharmacy
SUBDIR += php-dbg
SUBDIR += php-dbg2
SUBDIR += php-xdebug
SUBDIR += php4-dio
SUBDIR += php4-gettext

View File

@ -1,45 +1,29 @@
# New ports collection makefile for: dbg_php4
# Date created: Sun Jan 26 20:47:49 GMT 2003
# Whom: Jens Rehsack <rehsack@liwing.de>
# New ports collection makefile for: php-dbg2
# Date created: 19 July 2007
# Whom: Josh Paetzel <josh@tcbug.org>
#
# $FreeBSD$
#
PORTNAME= dbg
PORTVERSION= 2.11.30
PORTNAME= dbg2
PORTVERSION= 2.15.5
CATEGORIES= devel
MASTER_SITES= http://dd.cron.ru/dbg/dnld/
MASTER_SITES= SF
PKGNAMEPREFIX= php-
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
DISTNAME= dbg-${PORTVERSION}
MAINTAINER= josh@tcbug.org
COMMENT= Debugger for PHP4
COMMENT= Debugger for PHP
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_PHP= yes
USE_PHPIZE= yes
DEFAULT_PHP_VER=4
IGNORE_WITH_PHP=5
CONFIGURE_ARGS= --enable-dbg=shared --with-dbg-profiler
#CONFIGURE_ENV= with_dbg_trace=1
PKGMESSAGE= ${WRKDIR}/pkg-message
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700042
BROKEN= Does not compile with GCC 4.2
.endif
post-build:
@${SED} "s|%%PREFIX%%|${PREFIX}|g;s|%%PHP_EXT_DIR%%|${PHP_EXT_DIR}|g" \
${.CURDIR}/pkg-message > ${PKGMESSAGE}
do-install:
@${MKDIR} ${PREFIX}/lib/php/${PHP_EXT_DIR}
@${INSTALL_DATA} ${WRKSRC}/modules/dbg.so \
${PREFIX}/lib/php/${PHP_EXT_DIR}
DEFAULT_PHP_VER=5
CONFIGURE_ARGS= --enable-dbg=shared --with-dbg-profiler \
--with-php-config=${PREFIX}/bin/php-config \
--prefix=${PREFIX}/lib/php/${PHP_EXT_DIR}
PKGMESSAGE= pkg-message
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (dbg-2.11.30-src.tar.gz) = a148221edf3d39bfe4af25ebbe7d5fbd
SHA256 (dbg-2.11.30-src.tar.gz) = 0727581bbd0e1e7bc17fcac23608878449dacda8c6d3200a964291d19c9c1f9b
SIZE (dbg-2.11.30-src.tar.gz) = 39409
MD5 (dbg-2.15.5.tar.gz) = 1183c5d87635adf77b416787e4916965
SHA256 (dbg-2.15.5.tar.gz) = 84dc46495610cd6ca96ff32578ee5df75aad672228cb63d593e72796bd11d77a
SIZE (dbg-2.15.5.tar.gz) = 252533

View File

@ -1,4 +1,4 @@
The DBG Php Debugger is a comprehensive software tool that helps you
debugging your php scripts.
WWW: http://dd.cron.ru/dbg/
WWW: http://dd.cron.ru/dbg/

View File

@ -5,21 +5,21 @@ This product includes DBG PHP Debugger, Copyright(C) 1999, 2000, 2001,
The php debugger has been installed successful.
Add a line containing
extension=dbg.so
extension=dbg.so
to your %%LOCALBASE%%/etc/php/extensions.ini to load it.
If you have the Zend Optimizer installed, add the line
zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/dbg.so
zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/dbg.so
to your [zend] section in the php.ini file, too.
Add following section to enable/disable whatever you need from the debugger:
[Debugger]
debugger.enabled=on
debugger.profiler_enabled=on
debugger.enable_session_cookie=on
debugger.JIT_enabled=on
debugger.JIT_port=7869
[Debugger]
debugger.enabled=on
debugger.profiler_enabled=on
debugger.enable_session_cookie=on
debugger.JIT_enabled=on
debugger.JIT_port=7869
*****************************************************************************