diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-07-09 20:35:56 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-07-09 20:35:56 +0800 |
commit | 37a4bca5a7518aed712e97c704ce578f664dfbb6 (patch) | |
tree | 8750c0eb5e2e0d23f2b7f8fe053b5cc1e7417bb6 /www/zope213/Makefile | |
parent | a84113b34303cac33eab14ee84d5d0d6d88a2e63 (diff) | |
download | freebsd-ports-gnome-37a4bca5a7518aed712e97c704ce578f664dfbb6.tar.gz freebsd-ports-gnome-37a4bca5a7518aed712e97c704ce578f664dfbb6.tar.zst freebsd-ports-gnome-37a4bca5a7518aed712e97c704ce578f664dfbb6.zip |
Corrects an information disclosure vulnerability in Zope2, due to Zope2's use
of the docutils module to parse and render "restructured text". Sites which
allow untrusted users to create restructured text as through-the-web
content should apply this hotfix.
PR: ports/99952
Submitted by: maintainer
Security: http://www.zope.org/Products/Zope/Hotfix-2006-07-05/Hotfix-2006-07-05/
Diffstat (limited to 'www/zope213/Makefile')
-rw-r--r-- | www/zope213/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/zope213/Makefile b/www/zope213/Makefile index ee52bb26e3da..2320db68bfea 100644 --- a/www/zope213/Makefile +++ b/www/zope213/Makefile @@ -7,11 +7,16 @@ PORTNAME= zope PORTVERSION= 2.9.3 +PORTREVISION= 1 CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ +MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ \ + http://www.zope.org/Products/Zope/Hotfix-2006-07-05/Hotfix-20060705/:hotfix_20060705 DISTNAME= Zope-${PORTVERSION} EXTRACT_SUFX= .tgz +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + Hotfix_20060705.tar.gz:hotfix_20060705 DIST_SUBDIR= zope +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= yasi@yasi.to COMMENT= An object-based web application platform @@ -73,6 +78,7 @@ post-install: ${MKDIR} ${ZOPEBASEDIR}/Products ${CP} ${FILESDIR}/Products_00readme-freebsd.txt \ ${ZOPEBASEDIR}/Products/00readme-freebsd.txt + ${TAR} xzf ${DISTDIR}/${DIST_SUBDIR}/Hotfix_20060705.tar.gz -C ${ZOPEBASEDIR}/Products/ ${FIND} ${ZOPEBASEDIR} -type f -print0 | ${XARGS} -0 -- ${CHMOD} a-w |