- use PKGNAMESUFFIX instead LATEST_LINK - whitespace cleanup - svn mv */bugzilla to */bugzilla40 - add vuxml entry 4.4.1, 4.2.7, and 4.0.11 Security Advisory Wednesday Oct 16th, 2013 Summary ======= Bugzilla is a Web-based bug-tracking system used by a large number of software projects. The following security issues have been discovered in Bugzilla: * A CSRF vulnerability in process_bug.cgi affecting Bugzilla 4.4 only can lead to a bug being edited without the user consent. * A CSRF vulnerability in attachment.cgi can lead to an attachment being edited without the user consent. * Several unfiltered parameters when editing flagtypes can lead to XSS. * Due to an incomplete fix for CVE-2012-4189, some incorrectly filtered field values in tabular reports can lead to XSS. All affected installations are encouraged to upgrade as soon as possible. [1] even bugzilla40 gets upstream fixes an upgrade to bugzilla42/44 is recommend Security: vid e135f0c9-375f-11e3-80b7-20cf30e32f6d CVE-2013-1733 CVE-2013-1734 CVE-2013-1742 CVE-2013-1743
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bugzilla
|
|
PORTVERSION= 4.4
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= http://bug-ja.org/releases/4.4/ \
|
|
LOCAL
|
|
MASTER_SITE_SUBDIR= tota/bugzilla-ja
|
|
DISTNAME= Bugzilla-ja-${PORTVERSION}-template
|
|
|
|
MAINTAINER= bugzilla@FreeBSD.org
|
|
COMMENT= Japanese localization for Bugzilla
|
|
|
|
RUN_DEPENDS= bugzilla44>=${PORTVERSION}:${PORTSDIR}/devel/bugzilla44
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
.include "${.CURDIR}/../../devel/bugzilla44/Makefile.common"
|
|
|
|
USE_BZIP2= yes
|
|
|
|
LANGDIR= ${WWWDIR}/template/ja
|
|
|
|
do-install:
|
|
@-${MKDIR} ${STAGEDIR}${LANGDIR}/default
|
|
@cd ${WRKDIR}/default; ${COPYTREE_SHARE} . ${STAGEDIR}${LANGDIR}/default
|
|
|
|
# Maintainer
|
|
plist: patch
|
|
@( cd ${WRKDIR}/ && ${FIND} default -type f | ${AWK} '{print "%%WWWDIR%%/template/ja/"$$1}' | ${SORT} > ${PLIST}.new )
|
|
@( cd ${WRKDIR}/ && ${FIND} default -type d | ${AWK} '{print "@dirrmtry %%WWWDIR%%/template/ja/"$$1}' | ${SORT} -r >> ${PLIST}.new )
|
|
@${ECHO} "@dirrmtry %%WWWDIR%%/template/ja" >> ${PLIST}.new
|
|
@if ${DIFF} -u ${PLIST} ${PLIST}.new ; then \
|
|
${ECHO_MSG} no pkg-plist changes; \
|
|
${RM} ${PLIST}.new ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|