diff options
author | skv <skv@FreeBSD.org> | 2011-06-08 00:00:26 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2011-06-08 00:00:26 +0800 |
commit | 07c99d6bf706f2ff10ee971a1961f8fa0157201a (patch) | |
tree | e8ec68d3641eb1be70562128dae9dde9a24cf62b /devel | |
parent | 73fb03e13fa3c41d191a1c0b5504f1621d425792 (diff) | |
download | freebsd-ports-gnome-07c99d6bf706f2ff10ee971a1961f8fa0157201a.tar.gz freebsd-ports-gnome-07c99d6bf706f2ff10ee971a1961f8fa0157201a.tar.zst freebsd-ports-gnome-07c99d6bf706f2ff10ee971a1961f8fa0157201a.zip |
- Remove obsolete devel/bugzilla2
- Tune devel/bugzilla* : add PORTSCOUT, LATEST_LINK, CONFLICTS, LICENSE
Diffstat (limited to 'devel')
-rw-r--r-- | devel/bugzilla/Makefile | 4 | ||||
-rw-r--r-- | devel/bugzilla2/Makefile | 142 | ||||
-rw-r--r-- | devel/bugzilla2/distinfo | 3 | ||||
-rw-r--r-- | devel/bugzilla2/pkg-descr | 22 | ||||
-rw-r--r-- | devel/bugzilla2/pkg-message | 24 | ||||
-rw-r--r-- | devel/bugzilla2/pkg-plist | 626 | ||||
-rw-r--r-- | devel/bugzilla3/Makefile | 6 |
7 files changed, 10 insertions, 817 deletions
diff --git a/devel/bugzilla/Makefile b/devel/bugzilla/Makefile index bf30b3b8428f..c4cafdb6b572 100644 --- a/devel/bugzilla/Makefile +++ b/devel/bugzilla/Makefile @@ -27,6 +27,10 @@ RUN_DEPENDS= \ p5-Email-Send>=2.00:${PORTSDIR}/mail/p5-Email-Send \ p5-Email-MIME>=1.904:${PORTSDIR}/mail/p5-Email-MIME +CONFLICTS= bugzilla-2.* bugzilla-3.* +LICENSE= MPL +PORTSCOUT= limitw:1,even + USE_PERL5= yes BINMODE= 700 diff --git a/devel/bugzilla2/Makefile b/devel/bugzilla2/Makefile deleted file mode 100644 index 265dbe8ee7ef..000000000000 --- a/devel/bugzilla2/Makefile +++ /dev/null @@ -1,142 +0,0 @@ -# New ports collection makefile for: bugzilla -# Date created: 28 September 2001 -# Whom: Alexey Zelkin <phantom@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= bugzilla -PORTVERSION= 2.22.7 -PORTREVISION= 3 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= webtools webtools/archived - -MAINTAINER= skv@FreeBSD.org -COMMENT= Bug-tracking system developed by Mozilla Project - -LATEST_LINK= bugzilla2 - -OPTIONS= MYSQL "MySQL database support" on \ - PGSQL "PostgreSQL database support" off \ - CHARTING_MODULES "Bug charting support" on \ - GRAPHVIZ "Use GraphViz" off \ - EXPORT_IMPORT "Import/export bugs (via XML)" off \ - CONTRIB "Install user-contributed scripts" off \ - LDAP "Enable LDAP support" off - -RUN_DEPENDS+= \ - ${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig \ - ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ - ${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \ - ${SITE_PERL}/Text/Wrap.pm:${PORTSDIR}/textproc/p5-Text-Tabs+Wrap \ - ${SITE_PERL}/MIME/Parser.pm:${PORTSDIR}/mail/p5-MIME-Tools \ - ${SITE_PERL}/Mail/Mailer.pm:${PORTSDIR}/mail/p5-Mail-Tools \ - ${SITE_PERL}/PatchReader.pm:${PORTSDIR}/devel/p5-PatchReader - -PORTSCOUT= limitw:1,even - -USE_PERL5= yes - -BINMODE= 700 -PKGMESSAGE= ${WRKDIR}/pkg-message - -.ifndef BUGZILLADIR -.ifdef APACHE_DATADIR -BUGZILLADIR= ${APACHE_DATADIR}/data/bugzilla -.else -BUGZILLADIR= ${PREFIX}/www/data/bugzilla -.endif -.endif - -PLIST_SUB+= BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!} - -CONTRIB_DOCS= README README.Mailif bugmail_help.html bugzilla.procmailrc -DATA_DIRS_LIST= images js skins/standard skins/standard/global \ - skins/standard/index - -.include <bsd.port.pre.mk> - -.ifdef WITH_MYSQL -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql -USE_MYSQL= yes -IGNORE_WITH_MYSQL= 323 -.endif - -.ifdef WITH_PGSQL -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg -USE_PGSQL= yes -.endif - -.ifdef WITH_CHARTING_MODULES -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ - ${SITE_PERL}/Chart/Base.pm:${PORTSDIR}/graphics/p5-chart \ - ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph \ - ${SITE_PERL}/GD/Text/Align.pm:${PORTSDIR}/graphics/p5-GD-TextUtil -.endif - -.ifdef WITH_GRAPHVIZ -RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz -.endif - -.ifdef WITH_EXPORT_IMPORT -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ - ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig -.endif - -.ifdef WITH_CONTRIB -PLIST_SUB+= CONTRIB="" -.else -PLIST_SUB+= CONTRIB="@comment " -.endif - -.ifdef WITH_LDAP -RUN_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap -.endif - -post-patch: - @${PERL} -pi -e "s!(?<=webservergroup_default = ')apache!www!" \ - ${WRKSRC}/checksetup.pl - @${FIND} ${WRKSRC} \( -name "CVS" -or -name ".cvsignore" -or -name "*.orig" \ - -or -name "README.docs" \) | ${XARGS} ${RM} -rf - @${FIND} ${WRKSRC} -name "*.p[ml]" | \ - ${XARGS} ${REINPLACE_CMD} -i '' -e 's!/usr/lib/sendmail!/usr/sbin/sendmail!' - @${FIND} ${WRKSRC}/docs -type f | \ - ${XARGS} ${REINPLACE_CMD} -i '' -e "s!/var/www/html/bugzilla!${BUGZILLADIR}!" - -do-build: - @${SED} -e "s:%%BUGZILLADIR%%:${BUGZILLADIR}:g; s:%%DOCSDIR%%:${DOCSDIR}:g" \ - ${MASTERDIR}/pkg-message >${PKGMESSAGE} - -do-install: - ${MKDIR} ${BUGZILLADIR} - ${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name "UPGRADING*" -exec \ - ${INSTALL_SCRIPT} {} ${BUGZILLADIR} \; - @${MKDIR} ${DATA_DIRS_LIST:S!^!${BUGZILLADIR}/!} -.for D in ${DATA_DIRS_LIST} - ${INSTALL_DATA} ${WRKSRC}/${D}/*.* ${BUGZILLADIR}/${D} -.endfor - ${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${BUGZILLADIR} -xf - -.ifndef NOPORTDOCS -.for D in html images/callouts images pdf txt xml "" - ${MKDIR} ${DOCSDIR}/${D} - ${INSTALL_DATA} ${WRKSRC}/docs/${D}/*.* ${DOCSDIR}/${D}/ -.endfor -.endif -.ifdef WITH_CONTRIB - ${MKDIR} ${BUGZILLADIR}/contrib - @cd ${WRKSRC}/contrib && \ - ${FIND} . -type d -exec ${MKDIR} "${BUGZILLADIR}/contrib/{}" \; && \ - ${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${BUGZILLADIR}/contrib/{}" \; -.ifndef NOPORTDOCS - ${MKDIR} ${DOCSDIR}/contrib - ${INSTALL_DATA} ${CONTRIB_DOCS:S!^!${WRKSRC}/contrib/!} ${DOCSDIR}/contrib -.endif -.endif -.if !defined(BATCH) - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.endif - -.include <bsd.port.post.mk> diff --git a/devel/bugzilla2/distinfo b/devel/bugzilla2/distinfo deleted file mode 100644 index caa00cba8ec1..000000000000 --- a/devel/bugzilla2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (bugzilla-2.22.7.tar.gz) = 7dd55d96a65b7574b16a6d6dffcd2953 -SHA256 (bugzilla-2.22.7.tar.gz) = efb2fc9cfc16b64d1c050b6f0b2a8248f36d86cff5213f9c97891146f4ee68d9 -SIZE (bugzilla-2.22.7.tar.gz) = 2113576 diff --git a/devel/bugzilla2/pkg-descr b/devel/bugzilla2/pkg-descr deleted file mode 100644 index eab95354d1eb..000000000000 --- a/devel/bugzilla2/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bugzilla is one example of a class of programs called "Defect Tracking -Systems", or, more commonly, "Bug-Tracking Systems". Defect Tracking -Systems allow individual or groups of developers to keep track of -outstanding bugs in their product effectively. - -Bugzilla has matured immensely, and now boasts many advanced features. -These include: - - * integrated, product-based granular security schema - * inter-bug dependencies and dependency graphing - * advanced reporting capabilities - * a robust, stable RDBMS back-end - * extensive configurability - * a very well-understood and well-thought-out natural bug resolution - protocol - * email, XML, console, and HTTP APIs - * available integration with automated software configuration - management systems, including Perforce and CVS (through the - Bugzilla email interface and checkin/checkout scripts) - * too many more features to list - -WWW: http://www.bugzilla.org/ diff --git a/devel/bugzilla2/pkg-message b/devel/bugzilla2/pkg-message deleted file mode 100644 index bc3951aebbe1..000000000000 --- a/devel/bugzilla2/pkg-message +++ /dev/null @@ -1,24 +0,0 @@ -========================================================================== - Bugzilla has now been installed. To quick setup you have to: - - 1. Create database user who has rights on bugs database manipulation - by following mysql commands (for MySQL 4.0 or later): - - GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES, - CREATE TEMPORARY TABLES, DROP, REFERENCES - ON <database>.* TO <dbuser>@<host> - IDENTIFIED BY '<password>'; - FLUSH PRIVILEGES; - - where <database> is a bugs database name; <dbuser> is a bugs database - owner; <host> is a host there bugzilla is being setup; - <password> is a database owner's password; - - 2. Change working directory to %%BUGZILLADIR%% - 3. Run "./checksetup.pl" script as root user - 4. Read output carefully and follow all instructions - - For more complete database setup and post-installation instructions - and security tips/notes please read "Bugzilla Guide" in - %%DOCSDIR%%/html/ (chapter 2: "Installing Bugzilla") -========================================================================== diff --git a/devel/bugzilla2/pkg-plist b/devel/bugzilla2/pkg-plist deleted file mode 100644 index e6706ca938dc..000000000000 --- a/devel/bugzilla2/pkg-plist +++ /dev/null @@ -1,626 +0,0 @@ -%%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README -%%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README.Mailif -%%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugmail_help.html -%%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugzilla.procmailrc -%%PORTDOCS%%%%DOCSDIR%%/html/Bugzilla-Guide.html -%%PORTDOCS%%%%DOCSDIR%%/html/about.html -%%PORTDOCS%%%%DOCSDIR%%/html/administration.html -%%PORTDOCS%%%%DOCSDIR%%/html/attachments.html -%%PORTDOCS%%%%DOCSDIR%%/html/bug_page.html -%%PORTDOCS%%%%DOCSDIR%%/html/bugreports.html -%%PORTDOCS%%%%DOCSDIR%%/html/classifications.html -%%PORTDOCS%%%%DOCSDIR%%/html/cmdline-bugmail.html -%%PORTDOCS%%%%DOCSDIR%%/html/cmdline.html -%%PORTDOCS%%%%DOCSDIR%%/html/components.html -%%PORTDOCS%%%%DOCSDIR%%/html/configuration.html -%%PORTDOCS%%%%DOCSDIR%%/html/conventions.html -%%PORTDOCS%%%%DOCSDIR%%/html/copyright.html -%%PORTDOCS%%%%DOCSDIR%%/html/credits.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-change-permissions.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-hooks.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-templates.html -%%PORTDOCS%%%%DOCSDIR%%/html/customization.html -%%PORTDOCS%%%%DOCSDIR%%/html/dbmodify.html -%%PORTDOCS%%%%DOCSDIR%%/html/disclaimer.html -%%PORTDOCS%%%%DOCSDIR%%/html/edit-values.html -%%PORTDOCS%%%%DOCSDIR%%/html/extraconfig.html -%%PORTDOCS%%%%DOCSDIR%%/html/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/flags-overview.html -%%PORTDOCS%%%%DOCSDIR%%/html/flags.html -%%PORTDOCS%%%%DOCSDIR%%/html/general-advice.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-0.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-1.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-10.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-2.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-3.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-4.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-5.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-6.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-7.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-8.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-9.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-howto.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl.html -%%PORTDOCS%%%%DOCSDIR%%/html/glossary.html -%%PORTDOCS%%%%DOCSDIR%%/html/groups.html -%%PORTDOCS%%%%DOCSDIR%%/html/hintsandtips.html -%%PORTDOCS%%%%DOCSDIR%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/install-perlmodules-manual.html -%%PORTDOCS%%%%DOCSDIR%%/html/installation.html -%%PORTDOCS%%%%DOCSDIR%%/html/installing-bugzilla.html -%%PORTDOCS%%%%DOCSDIR%%/html/integration.html -%%PORTDOCS%%%%DOCSDIR%%/html/keywords.html -%%PORTDOCS%%%%DOCSDIR%%/html/lifecycle.html -%%PORTDOCS%%%%DOCSDIR%%/html/milestones.html -%%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-download.html -%%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-instructions.html -%%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-optional.html -%%PORTDOCS%%%%DOCSDIR%%/html/myaccount.html -%%PORTDOCS%%%%DOCSDIR%%/html/newversions.html -%%PORTDOCS%%%%DOCSDIR%%/html/nonroot.html -%%PORTDOCS%%%%DOCSDIR%%/html/os-specific.html -%%PORTDOCS%%%%DOCSDIR%%/html/parameters.html -%%PORTDOCS%%%%DOCSDIR%%/html/paranoid-security.html -%%PORTDOCS%%%%DOCSDIR%%/html/patches.html -%%PORTDOCS%%%%DOCSDIR%%/html/products.html -%%PORTDOCS%%%%DOCSDIR%%/html/query.html -%%PORTDOCS%%%%DOCSDIR%%/html/quips.html -%%PORTDOCS%%%%DOCSDIR%%/html/reporting.html -%%PORTDOCS%%%%DOCSDIR%%/html/sanitycheck.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-bugzilla.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-mysql.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-os.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-webserver.html -%%PORTDOCS%%%%DOCSDIR%%/html/security.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-dbdsponge.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-index.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-passwd-encryption.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-perlmodule.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-everyone.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-some.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-testserver.html -%%PORTDOCS%%%%DOCSDIR%%/html/trouble-filetemp.html -%%PORTDOCS%%%%DOCSDIR%%/html/troubleshooting.html -%%PORTDOCS%%%%DOCSDIR%%/html/upgrading.html -%%PORTDOCS%%%%DOCSDIR%%/html/useradmin.html -%%PORTDOCS%%%%DOCSDIR%%/html/userpreferences.html -%%PORTDOCS%%%%DOCSDIR%%/html/using-intro.html -%%PORTDOCS%%%%DOCSDIR%%/html/using.html -%%PORTDOCS%%%%DOCSDIR%%/html/timetracking.html -%%PORTDOCS%%%%DOCSDIR%%/html/versions.html -%%PORTDOCS%%%%DOCSDIR%%/html/voting.html -%%PORTDOCS%%%%DOCSDIR%%/html/whining.html -%%PORTDOCS%%%%DOCSDIR%%/html/x759.html -%%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.png -%%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.xml -%%PORTDOCS%%%%DOCSDIR%%/images/callouts/1.gif -%%PORTDOCS%%%%DOCSDIR%%/images/callouts/2.gif -%%PORTDOCS%%%%DOCSDIR%%/images/callouts/3.gif -%%PORTDOCS%%%%DOCSDIR%%/images/caution.gif -%%PORTDOCS%%%%DOCSDIR%%/images/note.gif -%%PORTDOCS%%%%DOCSDIR%%/images/tip.gif -%%PORTDOCS%%%%DOCSDIR%%/images/warning.gif -%%PORTDOCS%%%%DOCSDIR%%/makedocs.pl -%%PORTDOCS%%%%DOCSDIR%%/pdf/Bugzilla-Guide.pdf -%%PORTDOCS%%%%DOCSDIR%%/rel_notes.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/Bugzilla-Guide.txt -%%PORTDOCS%%%%DOCSDIR%%/xml/Bugzilla-Guide.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/about.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/administration.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/conventions.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/customization.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/dbschema.mysql -%%PORTDOCS%%%%DOCSDIR%%/xml/faq.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/filetemp.patch -%%PORTDOCS%%%%DOCSDIR%%/xml/gfdl.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/glossary.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/index.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/installation.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/integration.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/introduction.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/modules.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/patches.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/requiredsoftware.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/security.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml -%%BUGZILLADIR%%/Bugzilla/Attachment.pm -%%BUGZILLADIR%%/Bugzilla/Auth.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/Env.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm -%%BUGZILLADIR%%/Bugzilla/Auth/README -%%BUGZILLADIR%%/Bugzilla/Auth/Verify/DB.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Verify/LDAP.pm -%%BUGZILLADIR%%/Bugzilla/Bug.pm -%%BUGZILLADIR%%/Bugzilla/BugMail.pm -%%BUGZILLADIR%%/Bugzilla/CGI.pm -%%BUGZILLADIR%%/Bugzilla/Chart.pm -%%BUGZILLADIR%%/Bugzilla/Classification.pm -%%BUGZILLADIR%%/Bugzilla/Component.pm -%%BUGZILLADIR%%/Bugzilla/Config.pm -%%BUGZILLADIR%%/Bugzilla/Config/Admin.pm -%%BUGZILLADIR%%/Bugzilla/Config/Attachment.pm -%%BUGZILLADIR%%/Bugzilla/Config/Auth.pm -%%BUGZILLADIR%%/Bugzilla/Config/BugChange.pm -%%BUGZILLADIR%%/Bugzilla/Config/BugFields.pm -%%BUGZILLADIR%%/Bugzilla/Config/BugMove.pm -%%BUGZILLADIR%%/Bugzilla/Config/Common.pm -%%BUGZILLADIR%%/Bugzilla/Config/Core.pm -%%BUGZILLADIR%%/Bugzilla/Config/DependencyGraph.pm -%%BUGZILLADIR%%/Bugzilla/Config/GroupSecurity.pm -%%BUGZILLADIR%%/Bugzilla/Config/L10n.pm -%%BUGZILLADIR%%/Bugzilla/Config/LDAP.pm -%%BUGZILLADIR%%/Bugzilla/Config/MTA.pm -%%BUGZILLADIR%%/Bugzilla/Config/PatchViewer.pm -%%BUGZILLADIR%%/Bugzilla/Config/Query.pm -%%BUGZILLADIR%%/Bugzilla/Config/ShadowDB.pm -%%BUGZILLADIR%%/Bugzilla/Config/UserMatch.pm -%%BUGZILLADIR%%/Bugzilla/Constants.pm -%%BUGZILLADIR%%/Bugzilla/DB.pm -%%BUGZILLADIR%%/Bugzilla/DB/Mysql.pm -%%BUGZILLADIR%%/Bugzilla/DB/Pg.pm -%%BUGZILLADIR%%/Bugzilla/DB/Schema.pm -%%BUGZILLADIR%%/Bugzilla/DB/Schema/Mysql.pm -%%BUGZILLADIR%%/Bugzilla/DB/Schema/Pg.pm -%%BUGZILLADIR%%/Bugzilla/Error.pm -%%BUGZILLADIR%%/Bugzilla/Field.pm -%%BUGZILLADIR%%/Bugzilla/Flag.pm -%%BUGZILLADIR%%/Bugzilla/FlagType.pm -%%BUGZILLADIR%%/Bugzilla/Group.pm -%%BUGZILLADIR%%/Bugzilla/Milestone.pm -%%BUGZILLADIR%%/Bugzilla/Product.pm -%%BUGZILLADIR%%/Bugzilla/Search.pm -%%BUGZILLADIR%%/Bugzilla/Search/Quicksearch.pm -%%BUGZILLADIR%%/Bugzilla/Series.pm -%%BUGZILLADIR%%/Bugzilla/Template.pm -%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm -%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm -%%BUGZILLADIR%%/Bugzilla/Template/Plugin/User.pm -%%BUGZILLADIR%%/Bugzilla/Token.pm -%%BUGZILLADIR%%/Bugzilla/User.pm -%%BUGZILLADIR%%/Bugzilla/User/Setting.pm -%%BUGZILLADIR%%/Bugzilla/Util.pm -%%BUGZILLADIR%%/Bugzilla/Version.pm -%%BUGZILLADIR%%/Bugzilla.pm -%%BUGZILLADIR%%/QUICKSTART -%%BUGZILLADIR%%/README -%%BUGZILLADIR%%/attachment.cgi -%%BUGZILLADIR%%/buglist.cgi -%%BUGZILLADIR%%/bugzilla.dtd -%%BUGZILLADIR%%/chart.cgi -%%BUGZILLADIR%%/checksetup.pl -%%BUGZILLADIR%%/colchange.cgi -%%BUGZILLADIR%%/collectstats.pl -%%BUGZILLADIR%%/config.cgi -%%BUGZILLADIR%%/js/duplicates.js -%%BUGZILLADIR%%/js/productform.js -%%BUGZILLADIR%%/js/TUI.js -%%BUGZILLADIR%%/skins/standard/admin.css -%%BUGZILLADIR%%/skins/standard/buglist.css -%%BUGZILLADIR%%/skins/standard/duplicates.css -%%BUGZILLADIR%%/skins/standard/editusers.css -%%BUGZILLADIR%%/skins/standard/global.css -%%BUGZILLADIR%%/skins/standard/index.css -%%BUGZILLADIR%%/skins/standard/panel.css -%%BUGZILLADIR%%/skins/standard/params.css -%%BUGZILLADIR%%/skins/standard/show_multiple.css -%%BUGZILLADIR%%/skins/standard/summarize-time.css -%%BUGZILLADIR%%/skins/standard/voting.css -%%BUGZILLADIR%%/skins/standard/global/body-back.gif -%%BUGZILLADIR%%/skins/standard/global/header.png -%%BUGZILLADIR%%/skins/standard/index/front.png -%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm -%%CONTRIB%%%%BUGZILLADIR%%/contrib/README -%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bug_email.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugmail_help.html -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/README -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugdata.txt -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit.xml -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla.procmailrc -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_email_append.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_ldapsync.rb -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bzdbcopy.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugcount -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugids -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/buglist -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugs -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugslink -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/makequery -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/query.conf -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cvs-update.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnats2bz.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/README -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/gnatsparse.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/magic.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/specialuu.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/jb2bz.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/merge-users.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/mysqld-watcher.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/sendbugmail.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/sendunsentbugmail.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/syncLDAP.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/yp_nomail.sh -%%BUGZILLADIR%%/createaccount.cgi -%%BUGZILLADIR%%/describecomponents.cgi -%%BUGZILLADIR%%/describekeywords.cgi -%%BUGZILLADIR%%/duplicates.cgi -%%BUGZILLADIR%%/duplicates.xul -%%BUGZILLADIR%%/editclassifications.cgi -%%BUGZILLADIR%%/editcomponents.cgi -%%BUGZILLADIR%%/editflagtypes.cgi -%%BUGZILLADIR%%/editgroups.cgi -%%BUGZILLADIR%%/editkeywords.cgi -%%BUGZILLADIR%%/editmilestones.cgi -%%BUGZILLADIR%%/editparams.cgi -%%BUGZILLADIR%%/editproducts.cgi -%%BUGZILLADIR%%/editsettings.cgi -%%BUGZILLADIR%%/editusers.cgi -%%BUGZILLADIR%%/editvalues.cgi -%%BUGZILLADIR%%/editversions.cgi -%%BUGZILLADIR%%/editwhines.cgi -%%BUGZILLADIR%%/enter_bug.cgi -%%BUGZILLADIR%%/globals.pl -%%BUGZILLADIR%%/images/padlock.png -%%BUGZILLADIR%%/importxml.pl -%%BUGZILLADIR%%/index.cgi -%%BUGZILLADIR%%/long_list.cgi -%%BUGZILLADIR%%/page.cgi -%%BUGZILLADIR%%/post_bug.cgi -%%BUGZILLADIR%%/process_bug.cgi -%%BUGZILLADIR%%/productmenu.js -%%BUGZILLADIR%%/query.cgi -%%BUGZILLADIR%%/quips.cgi -%%BUGZILLADIR%%/relogin.cgi -%%BUGZILLADIR%%/report.cgi -%%BUGZILLADIR%%/reports.cgi -%%BUGZILLADIR%%/request.cgi -%%BUGZILLADIR%%/robots.txt -%%BUGZILLADIR%%/runtests.pl -%%BUGZILLADIR%%/sanitycheck.cgi -%%BUGZILLADIR%%/show_activity.cgi -%%BUGZILLADIR%%/show_bug.cgi -%%BUGZILLADIR%%/showattachment.cgi -%%BUGZILLADIR%%/showdependencygraph.cgi -%%BUGZILLADIR%%/showdependencytree.cgi -%%BUGZILLADIR%%/sidebar.cgi -%%BUGZILLADIR%%/summarize_time.cgi -%%BUGZILLADIR%%/template/en/default/account/auth/ldap-error.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/auth/login.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/auth/login-small.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/cancel-token.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/change-new.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/change-old.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/confirm.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/exists.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/password/forgotten-password.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/password/set-forgotten-password.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/account.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/email.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/permissions.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/prefs.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/saved-searches.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/settings.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/confirm-action.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/sudo.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/table.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/add.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/del.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/new.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/reclassify.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/select.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/update.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/select-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/select-field.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/flag-type/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/flag-type/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/flag-type/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/change.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/remove.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/rebuild-cache.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/select-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/admin.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/attachment.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/auth.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/bugchange.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/bugfields.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/bugmove.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/common.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/core.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/dependencygraph.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/editparams.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/groupsecurity.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/index.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/l10n.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/ldap.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/mta.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/patchviewer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/query.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/shadowdb.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/usermatch.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/edit-common.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/list-classifications.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/settings/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/settings/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/listselectvars.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/search.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/userdata.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/select-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/choose.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/content-types.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/diff-file.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/diff-footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/diff-header.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/show-multiple.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/activity/show.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/activity/table.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/choose.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/comments.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/comment-guided.txt.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/comment.txt.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/create-guided.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/make-template.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/user-message.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/dependency-graph.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/dependency-tree.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/knob.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/navigate.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/bugmail.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/header.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/midair.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/results.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/verify-new-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/show-multiple.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/show.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/show.xml.tmpl -%%BUGZILLADIR%%/template/en/default/bug/summarize-time.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/time.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/votes/delete-all.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/votes/list-for-bug.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/votes/list-for-user.html.tmpl -%%BUGZILLADIR%%/template/en/default/config.js.tmpl -%%BUGZILLADIR%%/template/en/default/config.rdf.tmpl -%%BUGZILLADIR%%/template/en/default/email/sudo.txt.tmpl -%%BUGZILLADIR%%/template/en/default/filterexceptions.pl -%%BUGZILLADIR%%/template/en/default/flag/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/banner.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/choose-classification.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/choose-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/code-error.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/confirm-user-match.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/field-descs.none.tmpl -%%BUGZILLADIR%%/template/en/default/global/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/header.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/help-header.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/help.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/hidden-fields.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/initialize.none.tmpl -%%BUGZILLADIR%%/template/en/default/global/message.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/messages.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/message.txt.tmpl -%%BUGZILLADIR%%/template/en/default/global/per-bug-queries.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/select-menu.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/setting-descs.none.tmpl -%%BUGZILLADIR%%/template/en/default/global/site-navigation.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/tabs.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/useful-links.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/user-error.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/userselect.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/variables.none.tmpl -%%BUGZILLADIR%%/template/en/default/index.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/change-columns.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/edit-multiple.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/list-simple.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.atom.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.csv.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.ics.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.js.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.rdf.tmpl -%%BUGZILLADIR%%/template/en/default/list/quips.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/server-push.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/table.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/bug-writing.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/fields.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/linked.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/linkify.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/quicksearch.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/quicksearchhack.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/sudo.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/voting.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/chart.csv.tmpl -%%BUGZILLADIR%%/template/en/default/reports/chart.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/chart.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/components.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/create-chart.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates-simple.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates-table.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates.rdf.tmpl -%%BUGZILLADIR%%/template/en/default/reports/edit-series.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/keywords.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/menu.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-bar.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-line.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-pie.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-simple.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-table.csv.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-table.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report.csv.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/series-common.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/series.html.tmpl -%%BUGZILLADIR%%/template/en/default/request/email.txt.tmpl -%%BUGZILLADIR%%/template/en/default/request/queue.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/boolean-charts.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/form.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/knob.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-advanced.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-create-series.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-help.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-report-graph.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-report-select.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-report-table.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-specific.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/tabs.html.tmpl -%%BUGZILLADIR%%/template/en/default/sidebar.xul.tmpl -%%BUGZILLADIR%%/template/en/default/whine/mail.html.tmpl -%%BUGZILLADIR%%/template/en/default/whine/mail.txt.tmpl -%%BUGZILLADIR%%/template/en/default/whine/multipart-mime.txt.tmpl -%%BUGZILLADIR%%/template/en/default/whine/schedule.html.tmpl -%%BUGZILLADIR%%/template/en/extension/filterexceptions.pl -%%BUGZILLADIR%%/testagent.cgi -%%BUGZILLADIR%%/testserver.pl -%%BUGZILLADIR%%/token.cgi -%%BUGZILLADIR%%/userprefs.cgi -%%BUGZILLADIR%%/votes.cgi -%%BUGZILLADIR%%/whine.pl -%%BUGZILLADIR%%/whineatnews.pl -%%BUGZILLADIR%%/xml.cgi -@dirrm %%BUGZILLADIR%%/template/en/extension -@dirrm %%BUGZILLADIR%%/template/en/default/whine -@dirrm %%BUGZILLADIR%%/template/en/default/search -@dirrm %%BUGZILLADIR%%/template/en/default/request -@dirrm %%BUGZILLADIR%%/template/en/default/reports -@dirrm %%BUGZILLADIR%%/template/en/default/pages -@dirrm %%BUGZILLADIR%%/template/en/default/list -@dirrm %%BUGZILLADIR%%/template/en/default/global -@dirrm %%BUGZILLADIR%%/template/en/default/flag -@dirrm %%BUGZILLADIR%%/template/en/default/email -@dirrm %%BUGZILLADIR%%/template/en/default/bug/votes -@dirrm %%BUGZILLADIR%%/template/en/default/bug/process -@dirrm %%BUGZILLADIR%%/template/en/default/bug/create -@dirrm %%BUGZILLADIR%%/template/en/default/bug/activity -@dirrm %%BUGZILLADIR%%/template/en/default/bug -@dirrm %%BUGZILLADIR%%/template/en/default/attachment -@dirrm %%BUGZILLADIR%%/template/en/default/admin/versions -@dirrm %%BUGZILLADIR%%/template/en/default/admin/users -@dirrm %%BUGZILLADIR%%/template/en/default/admin/settings -@dirrm %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol -@dirrm %%BUGZILLADIR%%/template/en/default/admin/products -@dirrm %%BUGZILLADIR%%/template/en/default/admin/params -@dirrm %%BUGZILLADIR%%/template/en/default/admin/milestones -@dirrm %%BUGZILLADIR%%/template/en/default/admin/keywords -@dirrm %%BUGZILLADIR%%/template/en/default/admin/groups -@dirrm %%BUGZILLADIR%%/template/en/default/admin/fieldvalues -@dirrm %%BUGZILLADIR%%/template/en/default/admin/flag-type -@dirrm %%BUGZILLADIR%%/template/en/default/admin/components -@dirrm %%BUGZILLADIR%%/template/en/default/admin/classifications -@dirrm %%BUGZILLADIR%%/template/en/default/admin -@dirrm %%BUGZILLADIR%%/template/en/default/account/prefs -@dirrm %%BUGZILLADIR%%/template/en/default/account/password -@dirrm %%BUGZILLADIR%%/template/en/default/account/email -@dirrm %%BUGZILLADIR%%/template/en/default/account/auth -@dirrm %%BUGZILLADIR%%/template/en/default/account -@dirrm %%BUGZILLADIR%%/template/en/default -@dirrm %%BUGZILLADIR%%/template/en -@dirrmtry %%BUGZILLADIR%%/template -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/gnatsparse -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib -@dirrm %%BUGZILLADIR%%/Bugzilla/User -@dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin -@dirrm %%BUGZILLADIR%%/Bugzilla/Template -@dirrm %%BUGZILLADIR%%/Bugzilla/Search -@dirrm %%BUGZILLADIR%%/Bugzilla/DB/Schema -@dirrm %%BUGZILLADIR%%/Bugzilla/DB -@dirrm %%BUGZILLADIR%%/Bugzilla/Config -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Verify -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth -@dirrmtry %%BUGZILLADIR%%/Bugzilla -@dirrmtry %%BUGZILLADIR%%/data -@dirrmtry %%BUGZILLADIR%%/graphs -@dirrm %%BUGZILLADIR%%/images -@dirrm %%BUGZILLADIR%%/js -@dirrm %%BUGZILLADIR%%/skins/standard/index -@dirrm %%BUGZILLADIR%%/skins/standard/global -@dirrm %%BUGZILLADIR%%/skins/standard -@dirrm %%BUGZILLADIR%%/skins -@dirrmtry %%BUGZILLADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/xml -%%PORTDOCS%%@dirrm %%DOCSDIR%%/txt -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%CONTRIB%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry www/data diff --git a/devel/bugzilla3/Makefile b/devel/bugzilla3/Makefile index 3d386123c986..98be03cb921a 100644 --- a/devel/bugzilla3/Makefile +++ b/devel/bugzilla3/Makefile @@ -25,6 +25,12 @@ RUN_DEPENDS= \ p5-Email-Send>=2.00:${PORTSDIR}/mail/p5-Email-Send \ p5-Email-MIME>=1.861:${PORTSDIR}/mail/p5-Email-MIME +CONFLICTS= bugzilla-2.* bugzilla-4.* +LICENSE= MPL +PORTSCOUT= limitw:1,even + +LATEST_LINK= bugzilla3 + USE_PERL5= yes BINMODE= 700 |