diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-23 07:56:26 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-23 07:56:26 +0000 |
commit | efa70d8ad1e9c5d2e86f1e540140c66fc6de8813 (patch) | |
tree | 149cd2584b4c424e8d9ae532fcae0a3184e78642 /www/horde2/Makefile | |
parent | 9449ac804cda97b4e73e29659b1f2c7fba8b28cc (diff) | |
download | FreeBSD-ports-efa70d8ad1e9c5d2e86f1e540140c66fc6de8813.zip FreeBSD-ports-efa70d8ad1e9c5d2e86f1e540140c66fc6de8813.tar.gz |
www/horde2: fixing Apache segfaults.
There is a bug in Horde: the logger (PEAR::Log) is instanciated
without a '&', and PHP does not handle this error, letting
Apache childs segfaulting.
Also removed the *.orig files from the pkg-plist and let them be
removed via post-patch.
PR: ports/55192
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'www/horde2/Makefile')
-rw-r--r-- | www/horde2/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/www/horde2/Makefile b/www/horde2/Makefile index 11dc437..438b930 100644 --- a/www/horde2/Makefile +++ b/www/horde2/Makefile @@ -7,7 +7,7 @@ PORTNAME= horde PORTVERSION= 2.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ ftp://ftp.au.horde.org/pub/horde/ \ @@ -121,6 +121,15 @@ pre-install: fi .endif +post-patch: + @${RM} ${WRKSRC}/po/translation.php.orig + @${RM} ${WRKSRC}/lib/Horde.php.orig + @${RM} ${WRKSRC}/scripts/db/README.orig + @${RM} ${WRKSRC}/scripts/set_perms.sh.orig + @${RM} ${WRKSRC}/config/horde.php.dist.orig + @${RM} ${WRKSRC}/config/registry.php.dist.orig + @${RM} ${WRKSRC}/config/mime_drivers.php.dist.orig + do-install: @${MKDIR} ${HORDEDIR} .for REP in ${SUB_DIRS} |